source: trunk/MagicSoft/Mars/datacenter/scripts/fillcallisto@ 7219

Last change on this file since 7219 was 7213, checked in by Daniela Dorner, 20 years ago
*** empty log message ***
  • Property svn:executable set to *
File size: 5.6 KB
Line 
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-2004
23#
24#
25# ========================================================================
26#
27#
28
29user=`whoami`
30source /home/$user/Mars/datacenter/scripts/sourcefile
31
32set -C
33
34table=SequenceProcessStatus
35column=fFillCallisto
36date=NULL
37datetime=`date +%F-%H-%M-%S`
38year=`date +%Y`
39
40todofile=$listpath/ToDo-$table-$column.txt
41getstatuslogpath=$logpath/getstatus/fillcallisto/$year
42getstatuslog=$getstatuslogpath/getstatus-fillcallisto-$datetime.log
43
44scriptlogpath=$logpath/run/fillcallisto/`date +%Y/%m/%d`
45if [ ! -d $scriptlogpath ]
46then
47 mkdir -pv $scriptlogpath
48 if [ ! -d $scriptlogpath ]
49 then
50 echo "could not make scriptlogpath "$scriptlogpath
51 exit
52 fi
53fi
54
55scriptlog=$scriptlogpath/runfillcallisto-$datetime.log
56
57date >> $scriptlog 2>&1
58
59
60if [ ! -d $getstatuslogpath ]
61then
62 mkdir -pv $getstatuslogpath >> $scriptlog 2>&1
63 if [ ! -d $getstatuslogpath ]
64 then
65 echo "could not make getstatuslogpath "$getstatuslogpath >> $scriptlog 2>&1
66 date >> $scriptlog 2>&1
67 exit
68 fi
69fi
70
71cd $mars
72
73date > $lockpath/lock-$table-$column.txt >> $scriptlog 2>&1
74checklock0=$?
75case $checklock0 in
76 0) echo "checklock0=$checklock0 -> continue " >> $scriptlog 2>&1;;
77 1) echo "checklock0=$checklock0 -> file exists " >> $scriptlog 2>&1
78 echo "-> fillcallisto is running -> exit" >> $scriptlog 2>&1
79 date >> $scriptlog 2>&1
80 exit;;
81 *) echo "checklock0=$checklock0 -> something went completely wrong" >> $scriptlog 2>&1;;
82esac
83
84echo "getting list..." >> $scriptlog 2>&1
85check0=`root -q -b $macrospath/getdolist.C+\("\"$table\""\,"\"$column\""\,"\"$date\""\) | tee $getstatuslog | grep int | sed -e 's/(int)//'`
86
87case $check0 in
88 1) echo "check0=$check0 -> everthing ok -> run fillcallisto" >> $scriptlog 2>&1;;
89 *) echo "check0=$check0 -> ERROR -> step has to be repeated" >> $scriptlog 2>&1;;
90esac
91
92sequences=(`cat $todofile`)
93
94if [ "$sequences" = "" ]
95then
96 echo "nothing to do -> exit" >> $scriptlog 2>&1
97 rm -v $todofile >> $scriptlog 2>&1
98 rm -v $lockpath/lock-$table-$column.txt >> $scriptlog 2>&1
99 date >> $scriptlog 2>&1
100 exit
101fi
102
103echo "sequences: "${sequences[@]} >> $scriptlog 2>&1
104
105for sequence in ${sequences[@]}
106do
107 no=`printf %08d $sequence | cut -c 0-4`
108 no2=`printf %08d $sequence`
109 path="$datapath/callisto/$no/$no2"
110 signalfile=$path/signal$no2.root
111 calibfile=$path/calib$no2.root
112 fillcallistologpath=$logpath/fillcallisto/$no
113 echo "fillcallistologpath: "$fillcallistologpath >> $scriptlog 2>&1
114 if [ ! -d $fillcallistologpath ]
115 then
116 mkdir -pv $fillcallistologpath >> $scriptlog 2>&1
117 if [ ! -d $fillcallistologpath ]
118 then
119 echo "could not make fillcallistologpath $fillcallistologpath -> continue " >> $scriptlog 2>&1
120 continue
121 fi
122 fi
123 fillcaliblog=$fillcallistologpath/fillcalib-$sequence.log
124 fillsignallog=$fillcallistologpath/fillsignal-$sequence.log
125
126 echo "run fillcallisto for sequence $sequence" >> $scriptlog 2>&1
127 echo "run fillcalib..." >> $scriptlog 2>&1
128 check1=`root -q -b $macrospath/fillcalib.C+\("\"$calibfile\""\,kFALSE\) | tee $fillcaliblog | grep int | sed -e 's/(int)//'`
129
130 case $check1 in
131 1) echo "check1=$check1 -> everthing ok -> run fillsignal " >> $scriptlog 2>&1;;
132 *) echo "check1=$check1 -> ERROR -> step has to be repeated" >> $scriptlog 2>&1
133 continue;;
134 esac
135
136 check2=`root -q -b $macrospath/fillsignal.C+\("\"$signalfile\""\,kFALSE\) | tee $fillsignallog | grep int | sed -e 's/(int)//'`
137 case $check2 in
138 1) echo "check2=$check2 -> everthing ok " >> $scriptlog 2>&1
139 echo "-> inserting the status for fillcallisto for sequence $sequence into the db" >> $scriptlog 2>&1
140 setstatuslogpath=$logpath/setstatus/fillcallisto/$no
141 if [ ! -d $setstatuslogpath ]
142 then
143 mkdir -pv $setstatuslogpath >> $scriptlog 2>&1
144 if [ ! -d $setstatuslogpath ]
145 then
146 echo "could not make setstatuslogpath "$setstatuslogpath >> $scriptlog 2>&1
147 continue
148 fi
149 fi
150 setstatuslog=$setstatuslogpath/setstatus-fillcallisto
151 check4=`root -q -b $macrospath/setstatus.C+\("\"$sequence\""\,"\"$table\""\,"\"$column\""\,"\"Now()\""\) | tee $setstatuslog-$sequence.log | grep int | sed -e 's/(int)//'`
152 case $check4 in
153 1) echo "check4=$check4 -> everthing ok, status has been set" >> $scriptlog 2>&1;;
154 *) echo "check4=$check4 -> ERROR -> step could not be set" >> $scriptlog 2>&1;;
155 esac
156 ;;
157 *) echo "check2=$check2 -> ERROR -> step has to be repeated" >> $scriptlog 2>&1;;
158 esac
159done
160
161rm -v $todofile >> $scriptlog 2>&1
162rm -v $lockpath/lock-$table-$column.txt >> $scriptlog 2>&1
163
164set +C
165
166date >> $scriptlog 2>&1
167
Note: See TracBrowser for help on using the repository browser.