Changeset 17081 for trunk/DataCheck
- Timestamp:
- 09/05/13 14:38:06 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/DataCheck/Processing/FillAuxTemp.sh
r14836 r17081 1 1 #!/bin/bash 2 2 3 # option 4 doupdate="yes" # update all entries (needed when new fields have been added) 5 #doupdate="no" # fill only entries which are not yet existing (default) 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 6 10 7 11 source `dirname $0`/../Sourcefile.sh 8 12 printprocesslog "INFO starting $0 with option doupdate="$doupdate 9 13 10 logfile=$runlogpath"/Fill Temp-"$datetime".log"14 logfile=$runlogpath"/FillAuxTemp-"$datetime".log" 11 15 date >> $logfile 12 16 … … 21 25 fi 22 26 23 24 # get last 3, 6 or 9 nights 25 dates=( `date +%Y/%m/%d --date="-12hour"` `date +%Y/%m/%d --date="-36hour"` `date +%Y/%m/%d --date="-60hour"` \ 26 # `date +%Y/%m/%d --date="-84hour"` `date +%Y/%m/%d --date="-108hour"` `date +%Y/%m/%d --date="-132hour"` \ 27 # `date +%Y/%m/%d --date="-156hour"` `date +%Y/%m/%d --date="-180hour"` `date +%Y/%m/%d --date="-204hour"` \ 28 ) 29 dates=( `find -L $ziprawdata -mindepth 3 -type d | sort | sed "s/\${ziprawdata_for_sed}//g" | sed -e 's/^\///'` ) #all available dates in /loc_data/zipraw 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 30 38 printprocesslog "INFO processing the following night(s): "${dates[@]} 31 39 echo `date`": processing the following night(s): "${dates[@]} >> $logfile 2>&1 32 33 echo ${dates[@]}34 40 35 41 cd $mars … … 151 157 if [ -e $fsctempfile ] && [ $tempnumerrors -eq 0 ] 152 158 then 153 fsctemps=( `root -q -b -l fact/camtemp.C\("\"$fsctempfile\""\,$tstart\,$tstop\) | grep "result" | grep -E -o '[0-9]+[.]?[0-9]*'` ) 154 echo ${fsctemps[@]} 159 fsctemps=( `root -q -b -l fact/processing/camtemp.C\("\"$fsctempfile\""\,$tstart\,$tstop\) | grep "result" | grep -E -o '[0-9]+[.]?[0-9]*'` ) 155 160 if [ "${fsctemps[0]}" == "" ] 156 161 then … … 181 186 if [ -e $magicweatherfile ] && [ $weathernumerrors -eq 0 ] 182 187 then 183 mtemps=( `root -q -b -l fact/ magictemp.C\("\"$magicweatherfile\""\,$tstart\,$tstop\) | grep "result" | grep -E -o '[0-9]+[.]?[0-9]*'` )188 mtemps=( `root -q -b -l fact/processing/magictemp.C\("\"$magicweatherfile\""\,$tstart\,$tstop\) | grep "result" | grep -E -o '[0-9]+[.]?[0-9]*'` ) 184 189 if [ "${mtemps[0]}" == "" ] 185 190 then … … 202 207 query=$query" WHERE fNight="$runnumber" AND fRunID="$filenum 203 208 204 echo $query205 209 # send query to DB 206 210 sendquery >/dev/null
Note:
See TracChangeset
for help on using the changeset viewer.