1 | #!/bin/sh
|
---|
2 | #
|
---|
3 | # ========================================================================
|
---|
4 | #
|
---|
5 | # *
|
---|
6 | # * This file is part of MARS, the MAGIC Analysis and Reconstruction
|
---|
7 | # * Software. It is distributed to you in the hope that it can be a useful
|
---|
8 | # * and timesaving tool in analysing Data of imaging Cerenkov telescopes.
|
---|
9 | # * It is distributed WITHOUT ANY WARRANTY.
|
---|
10 | # *
|
---|
11 | # * Permission to use, copy, modify and distribute this software and its
|
---|
12 | # * documentation for any purpose is hereby granted without fee,
|
---|
13 | # * provided that the above copyright notice appear in all copies and
|
---|
14 | # * that both that copyright notice and this permission notice appear
|
---|
15 | # * in supporting documentation. It is provided "as is" without express
|
---|
16 | # * or implied warranty.
|
---|
17 | # *
|
---|
18 | #
|
---|
19 | #
|
---|
20 | # Author(s): Daniela Dorner 08/2004 <mailto:dorner@astro.uni-wuerzburg.de>
|
---|
21 | #
|
---|
22 | # Copyright: MAGIC Software Development, 2000-2007
|
---|
23 | #
|
---|
24 | #
|
---|
25 | # ========================================================================
|
---|
26 | #
|
---|
27 | # This script launches the checking of the availability of the files for
|
---|
28 | # the datasets.
|
---|
29 | #
|
---|
30 | # After checking if the script is already running the todolist is written.
|
---|
31 | # Then for each dataset the sequences are extracted from the datasetfile
|
---|
32 | # and for each sequence the availability of the star files checked by using
|
---|
33 | # the macro checkstardone.C
|
---|
34 | # If this was successful, the status is inserted into the database using
|
---|
35 | # the function setstatus.
|
---|
36 | #
|
---|
37 |
|
---|
38 | source `dirname $0`/sourcefile
|
---|
39 | printprocesslog "INFO starting $0"
|
---|
40 | program=checkstardone
|
---|
41 | column=fStarFilesAvail
|
---|
42 |
|
---|
43 | scriptlog=$runlogpath/$program-$datetime.log
|
---|
44 | date >> $scriptlog 2>&1
|
---|
45 |
|
---|
46 | # check if script is already running
|
---|
47 | lockfile=$lockpath/lock-$program.txt
|
---|
48 | checklock >> $scriptlog 2>&1
|
---|
49 |
|
---|
50 | # get todo list
|
---|
51 | getdolist >> $scriptlog 2>&1
|
---|
52 |
|
---|
53 | datasets=(`cat $todofile`)
|
---|
54 | if [ "$datasets" = "" ]
|
---|
55 | then
|
---|
56 | echo "nothing to do -> exit" >> $scriptlog 2>&1
|
---|
57 | finish >> $scriptlog 2>&1
|
---|
58 | fi
|
---|
59 | echo "datasets: "${datasets[@]} >> $scriptlog 2>&1
|
---|
60 | rm -v $todofile >> $scriptlog 2>&1
|
---|
61 |
|
---|
62 | cd $mars
|
---|
63 |
|
---|
64 | for dataset in ${datasets[@]}
|
---|
65 | do
|
---|
66 | echo "checking files for dataset $dataset..." >> $scriptlog 2>&1
|
---|
67 | printprocesslog "INFO checking files for dataset $dataset"
|
---|
68 | no=`printf %08d $dataset | cut -c 0-5`
|
---|
69 | no2=`printf %08d $dataset`
|
---|
70 | datasetfile=$datasetpath/$no/dataset`printf %08d $dataset`.txt
|
---|
71 |
|
---|
72 | sequences=(`cat $datasetfile | grep Sequences | sed -e 's/SequencesOn://g' | sed -e 's/SequencesOff://g'`)
|
---|
73 | if [ "$sequences" = "" ]
|
---|
74 | then
|
---|
75 | echo "no sequences found" >> $scriptlog 2>&1
|
---|
76 | echo "continue with next dataset" >> $scriptlog 2>&1
|
---|
77 | continue
|
---|
78 | fi
|
---|
79 | echo "sequences: "${sequences[@]} >> $scriptlog 2>&1
|
---|
80 |
|
---|
81 | outpath=$logpath/$program/$no/$no2
|
---|
82 | makedir $outpath >> $scriptlog 2>&1
|
---|
83 |
|
---|
84 | primvar=$dataset
|
---|
85 | setstatus "start" >> $scriptlog 2>&1
|
---|
86 |
|
---|
87 | for sequence in ${sequences[@]}
|
---|
88 | do
|
---|
89 | echo "run $program for sequence $sequence..." >> $scriptlog 2>&1
|
---|
90 | printprocesslog "INFO check availability for sequence $sequence"
|
---|
91 |
|
---|
92 | check1=`root -q -b $macrospath/checkstardone.C+\(\""$sequence\""\) | tee $outpath/checkstardone-$sequence.log | intgrep`
|
---|
93 |
|
---|
94 | case $check1 in
|
---|
95 | 1) echo " check1=$check1 -> everything ok -> continue with next sequence..." >> $scriptlog 2>&1 ;;
|
---|
96 | 2) echo " check1=$check1 -> files for sequence $sequence not yet available -> continue..." >> $scriptlog 2>&1
|
---|
97 | printprocesslog "INFO files not yet available for sequence $sequence"
|
---|
98 | check="no"
|
---|
99 | break
|
---|
100 | ;;
|
---|
101 | 0) echo " check1=$check1 -> no connection to db -> continue..." >> $scriptlog 2>&1
|
---|
102 | printprocesslog "WARN connection to DB failed"
|
---|
103 | check="no"
|
---|
104 | break
|
---|
105 | ;;
|
---|
106 | *) echo " check1=$check1 -> ERROR " >> $scriptlog 2>&1
|
---|
107 | printprocesslog "ERROR $program.C failed"
|
---|
108 | com=$Fstardone
|
---|
109 | comadd=$sequence
|
---|
110 | check=$check1
|
---|
111 | break
|
---|
112 | ;;
|
---|
113 | esac
|
---|
114 | done
|
---|
115 |
|
---|
116 | setstatus "stop" >> $scriptlog 2>&1
|
---|
117 | done
|
---|
118 |
|
---|
119 | finish >> $scriptlog 2>&1
|
---|
120 |
|
---|