1 | #!/bin/bash
|
---|
2 |
|
---|
3 | # option whether to fill all row or only those where information is missing
|
---|
4 | # $doupdate might be given as environment variable
|
---|
5 | if [ "$doupdate" = "" ]
|
---|
6 | then
|
---|
7 | doupdate="yes" # update all entries (needed when new fields have been added)
|
---|
8 | doupdate="no" # fill only entries which are not yet existing (default)
|
---|
9 | fi
|
---|
10 |
|
---|
11 | source `dirname $0`/../Sourcefile.sh
|
---|
12 | printprocesslog "INFO starting $0 with option doupdate="$doupdate
|
---|
13 |
|
---|
14 | logfile=$runlogpath"/FillAuxLidar-"$datetime".log"
|
---|
15 | date >> $logfile
|
---|
16 |
|
---|
17 | # setup to use ftools
|
---|
18 | source $HEADAS/headas-init.sh
|
---|
19 |
|
---|
20 | # check if software is available
|
---|
21 | if ! ls $factpath/fitsdump >/dev/null 2>&1
|
---|
22 | then
|
---|
23 | printprocesslog "ERROR "$factpath"/fitsdump is not available."
|
---|
24 | finish
|
---|
25 | fi
|
---|
26 |
|
---|
27 | # get dates
|
---|
28 | if [ "$certaindate" != "" ]
|
---|
29 | then
|
---|
30 | getdates $certaindate
|
---|
31 | else
|
---|
32 | # get all night
|
---|
33 | #getdates "all"
|
---|
34 | # get last 6 nights
|
---|
35 | getdates 6
|
---|
36 | fi
|
---|
37 |
|
---|
38 |
|
---|
39 |
|
---|
40 | printprocesslog "INFO processing the following night(s): "${dates[@]}
|
---|
41 | echo `date`": processing the following night(s): "${dates[@]} >> $logfile 2>&1
|
---|
42 |
|
---|
43 | cd $mars
|
---|
44 |
|
---|
45 | # do filling of aux data
|
---|
46 | for date in ${dates[@]}
|
---|
47 | do
|
---|
48 | auxdir=$auxdata/$date
|
---|
49 | runnumber=`echo $date | sed -e 's/\///g'`
|
---|
50 | if [ $runnumber -lt 20120328 ]
|
---|
51 | then
|
---|
52 | continue
|
---|
53 | fi
|
---|
54 |
|
---|
55 | # check if aux files are available from that night
|
---|
56 | if ! [ -d $auxdir ]
|
---|
57 | then
|
---|
58 | printprocesslog "INFO no data available in "$auxdir
|
---|
59 | continue
|
---|
60 | else
|
---|
61 | printprocesslog "INFO processing files in "$auxdir
|
---|
62 | fi
|
---|
63 |
|
---|
64 | # get file numbers from DB
|
---|
65 | # but only for not-corrupted files
|
---|
66 | query="SELECT fRunID from RunInfo WHERE fNight="$runnumber" AND fFitsFileErrors=0 "
|
---|
67 | if [ "$doupdate" = "no" ]
|
---|
68 | then
|
---|
69 | query=$query" AND ISNULL(fLidarTransmission3) "
|
---|
70 | fi
|
---|
71 | printprocesslog "DEBUG get filenumbers from DB: QUERY: "$query
|
---|
72 | filenumbers=( `sendquery $query` )
|
---|
73 | # proceed only if there are files available
|
---|
74 | if [ ${#filenumbers} -eq 0 ]
|
---|
75 | then
|
---|
76 | printprocesslog "INFO No files found in the DB for night "$date
|
---|
77 | continue
|
---|
78 | fi
|
---|
79 |
|
---|
80 | lidarfile=$auxdir/$runnumber.MAGIC_LIDAR_DATA.fits
|
---|
81 | #if ! [ -e $lidarfile ]
|
---|
82 | if ! check_file_avail $lidarfile
|
---|
83 | then
|
---|
84 | #printprocesslog "WARN "$lidarfile" not found."
|
---|
85 | continue
|
---|
86 | else
|
---|
87 | lidarnumerrors=`fverify $lidarfile 2>/dev/null | grep -o '[0-9][ ]error(s)' | grep -E -o '[0-9]'`
|
---|
88 | if [ $lidarnumerrors -gt 0 ]
|
---|
89 | then
|
---|
90 | printprocesslog "WARN for "$lidarfile" fverify returned "$lidarnumerrors" error(s)."
|
---|
91 | fi
|
---|
92 | fi
|
---|
93 |
|
---|
94 | # fill auxiliary information for files
|
---|
95 | for filenum in ${filenumbers[@]}
|
---|
96 | do
|
---|
97 | printprocesslog "INFO processing file number "$runnumber"_"`printf %03d $filenum`
|
---|
98 | echo `date`": processing file number "$runnumber"_"`printf %03d $filenum` >> $logfile 2>&1
|
---|
99 | # get information from rawfile
|
---|
100 | rawfile=$ziprawdata/$date/$runnumber"_"`printf %03d $filenum`.fits.fz
|
---|
101 | #if ! [ -e $rawfile ]
|
---|
102 | if ! check_file_avail $rawfile
|
---|
103 | then
|
---|
104 | #if [ $runnumber -lt $checknight ]
|
---|
105 | #then
|
---|
106 | # printprocesslog "WARN "$rawfile" not found."
|
---|
107 | #else
|
---|
108 | # printprocesslog "INFO "$rawfile" not found."
|
---|
109 | #fi
|
---|
110 | continue
|
---|
111 | fi
|
---|
112 | #checkfitsfile=`fverify $rawfile 2>/dev/null | grep '0 error(s)'`
|
---|
113 | #if [ "$checkfitsfile" == "" ]
|
---|
114 | #then
|
---|
115 | # numfitserrors=1
|
---|
116 | # printprocesslog "WARN: "$rawfile" probably corrupted."
|
---|
117 | # continue
|
---|
118 | #fi
|
---|
119 | runtype=`$factpath/fitsdump -h $rawfile 2>/dev/null | grep RUNTYPE | grep -E -o "['][a-z-]+[']" | sed -e "s/'//g"`
|
---|
120 | mjdrefraw=`$factpath/fitsdump -h $rawfile 2>/dev/null | grep 'MJDREF' | grep -E -o '[0-9]{5}'`
|
---|
121 | tstarti=`$factpath/fitsdump -h $rawfile 2>/dev/null | grep 'TSTARTI' | grep -E -o '[0-9]{5}'`
|
---|
122 | tstartf=`$factpath/fitsdump -h $rawfile 2>/dev/null | grep 'TSTARTF' | grep -E -o '[0-9][.][0-9]+([E][\-][0-9][0-9])?' | sed -e 's/[E]+*/\\*10\\^/'`
|
---|
123 | tstopi=`$factpath/fitsdump -h $rawfile 2>/dev/null | grep 'TSTOPI' | grep -E -o '[0-9]{5}'`
|
---|
124 | tstopf=`$factpath/fitsdump -h $rawfile 2>/dev/null | grep 'TSTOPF' | grep -E -o '[0-9][.][0-9]+([E][\-][0-9][0-9])?' | sed -e 's/[E]+*/\\*10\\^/'`
|
---|
125 | if [ "$tstarti" == "" ] || [ "$tstopi" == "" ] || [ "$tstartf" == "" ] || [ "$tstopf" == "" ]
|
---|
126 | then
|
---|
127 | printprocesslog "WARN: "$rawfile": one of the following keywords is empty or 0: TSTARTI TSTARTF TSTOPI TSTOPF "
|
---|
128 | continue
|
---|
129 | fi
|
---|
130 | # assuming that at least TSTARTI and TSTOPI are consistent
|
---|
131 | if [ $tstarti -gt 30000 ]
|
---|
132 | then
|
---|
133 | tstart=`echo " $tstarti + $tstartf - 40587 " | bc -l`
|
---|
134 | tstart2=`echo " $tstarti + $tstartf - 40587 - 0.00011574 " | bc -l` # 10 sec
|
---|
135 | #tstart2=`echo " $tstarti + $tstartf - 40587 - 0.000023148 " | bc -l` # 2 sec
|
---|
136 | tstop=`echo " $tstopi + $tstopf - 40587 " | bc -l`
|
---|
137 | else
|
---|
138 | tstart=`echo " $tstarti + $tstartf " | bc -l`
|
---|
139 | tstart2=`echo " $tstarti + $tstartf - 0.00011574 " | bc -l` # 10 sec
|
---|
140 | #tstart2=`echo " $tstarti + $tstartf - 0.000023148 " | bc -l` # 2 sec
|
---|
141 | tstop=`echo " $tstopi + $tstopf " | bc -l`
|
---|
142 | fi
|
---|
143 |
|
---|
144 | # build query to update runinfo in DB
|
---|
145 | query="UPDATE RunInfo SET "
|
---|
146 |
|
---|
147 | # get information from magic lidar file
|
---|
148 | if [ -e $lidarfile ] && [ $lidarnumerrors -eq 0 ]
|
---|
149 | then
|
---|
150 | lidar=( `root -q -b -l fact/processing/lidar.C\("\"$lidarfile\""\,$tstart\,$tstop\) | grep "result" | grep -E -o '[0-9]+[.]?[0-9]*'` )
|
---|
151 | if [ "${lidar[0]}" == "" ]
|
---|
152 | then
|
---|
153 | query=$query"fLidarTransmission3=NULL, "
|
---|
154 | query=$query"fLidarTransmission6=NULL, "
|
---|
155 | query=$query"fLidarTransmission9=NULL, "
|
---|
156 | query=$query"fLidarTransmission12=NULL"
|
---|
157 | else
|
---|
158 | query=$query"fLidarTransmission3="${lidar[0]}", "
|
---|
159 | query=$query"fLidarTransmission6="${lidar[1]}", "
|
---|
160 | query=$query"fLidarTransmission9="${lidar[2]}", "
|
---|
161 | query=$query"fLidarTransmission12="${lidar[3]}
|
---|
162 | fi
|
---|
163 | else
|
---|
164 | query=$query"fLidarTransmission3=NULL, "
|
---|
165 | query=$query"fLidarTransmission6=NULL, "
|
---|
166 | query=$query"fLidarTransmission9=NULL, "
|
---|
167 | query=$query"fLidarTransmission12=NULL"
|
---|
168 | fi
|
---|
169 | #fCameraTempMeanRms: mean of rms of single sensors
|
---|
170 |
|
---|
171 | # add where condition
|
---|
172 | query=$query" WHERE fNight="$runnumber" AND fRunID="$filenum
|
---|
173 |
|
---|
174 | # send query to DB
|
---|
175 | sendquery >/dev/null
|
---|
176 | done
|
---|
177 | done
|
---|
178 |
|
---|
179 | finish
|
---|
180 |
|
---|
181 |
|
---|