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 filling of the results from the calibration for
|
---|
28 | # all sequences of which the results are not yet in the database.
|
---|
29 | #
|
---|
30 | # After checking if the script is already running the todolist is written.
|
---|
31 | # Then for each sequence in the todo list the calibration results are
|
---|
32 | # filled into the table Calibration in the database using the macros
|
---|
33 | # fillcalib.C and fillsignal.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=fillcallisto
|
---|
41 | column=fFillCallisto
|
---|
42 |
|
---|
43 | set -C
|
---|
44 |
|
---|
45 | # check if the script is already running
|
---|
46 | lockfile=$lockpath/lock-$program.txt
|
---|
47 | checklock
|
---|
48 |
|
---|
49 | # get todo file
|
---|
50 | gettodo
|
---|
51 |
|
---|
52 | cd $mars
|
---|
53 |
|
---|
54 | # fill information into the database for all sequences in the todo file
|
---|
55 | for (( s=0 ; s < $num ; s++ ))
|
---|
56 | do
|
---|
57 | sequence=${primaries[$s+$s]}
|
---|
58 | telnum=${primaries[$s+$s+1]}
|
---|
59 | printprocesslog "INFO starting $program for sequence $sequence"
|
---|
60 | no=`printf %08d $sequence | cut -c 0-4`
|
---|
61 | no2=`printf %08d $sequence`
|
---|
62 | path="$datapath/callisto/$no/$no2"
|
---|
63 | signalfile=$path/signal$no2.root
|
---|
64 | calibfile=$path/calib$no2.root
|
---|
65 | fillcallistologpath=$logpath/$program/$no
|
---|
66 | makedir $fillcallistologpath
|
---|
67 | fillcaliblog=$fillcallistologpath/fillcalib-$sequence.log
|
---|
68 | fillsignallog=$fillcallistologpath/fillsignal-$sequence.log
|
---|
69 |
|
---|
70 | printprocesslog "INFO run $program for sequence $sequence"
|
---|
71 | setstatus "start"
|
---|
72 | printprocesslog "INFO starting fillcalib for sequence $sequence"
|
---|
73 |
|
---|
74 | check1=`root -q -b $macrospath/fillcalib.C+\("\"$calibfile\""\,kFALSE\) | tee $fillcaliblog | intgrep`
|
---|
75 |
|
---|
76 | case $check1 in
|
---|
77 | 1) printprocesslog "INFO done fillcalib successfully for sequence $sequence (check1=$check1)"
|
---|
78 | ;;
|
---|
79 | 0) printprocesslog "WARN connection to DB failed (check1=$check1)"
|
---|
80 | check="no"
|
---|
81 | setstatus "stop"
|
---|
82 | continue ;;
|
---|
83 | *) printprocesslog "ERROR fillcalib failed for sequence $sequence (check1=$check1)"
|
---|
84 | com=$Ffillcalib
|
---|
85 | check=$check1
|
---|
86 | setstatus "stop"
|
---|
87 | continue ;;
|
---|
88 | esac
|
---|
89 |
|
---|
90 | printprocesslog "INFO starting fillsignal for sequence $sequence"
|
---|
91 | check2=`root -q -b $macrospath/fillsignal.C+\("\"$signalfile\""\,kFALSE\) | tee $fillsignallog | intgrep`
|
---|
92 | case $check2 in
|
---|
93 | 1) printprocesslog "INFO done fillsignal successfully for sequence $sequence (check2=$check2)"
|
---|
94 | ;;
|
---|
95 | 0) printprocesslog "WARN connection to DB failed (check2=$check2)"
|
---|
96 | check="no"
|
---|
97 | ;;
|
---|
98 | *) printprocesslog "ERROR fillsignal failed for sequence $sequence (check2=$check2)"
|
---|
99 | com=$Ffillsignal
|
---|
100 | check=$check2
|
---|
101 | ;;
|
---|
102 | esac
|
---|
103 |
|
---|
104 | setstatus "stop"
|
---|
105 | done
|
---|
106 |
|
---|
107 | finish
|
---|
108 |
|
---|