| 1 | #!/bin/bash
|
|---|
| 2 | #
|
|---|
| 3 |
|
|---|
| 4 | # remarks:
|
|---|
| 5 | # rsync-server still used
|
|---|
| 6 | # move fileerror check to main-loop?
|
|---|
| 7 |
|
|---|
| 8 | source `dirname $0`/../Sourcefile.sh
|
|---|
| 9 | printprocesslog "INFO starting $0"
|
|---|
| 10 |
|
|---|
| 11 | # get date (before 18h there is no new data to be processed)
|
|---|
| 12 | if [ "$certaindate" != "" ]
|
|---|
| 13 | then
|
|---|
| 14 | checkstring=`echo $certaindate | grep -E -o '^20[0-9][0-9]\/[01][0-9]\/[0-3][0-9]$'`
|
|---|
| 15 | if [ "$checkstring" = "" ]
|
|---|
| 16 | then
|
|---|
| 17 | echo "Please give the variable certaindate in the correct format (YYYY/MM/DD)"
|
|---|
| 18 | finish
|
|---|
| 19 | fi
|
|---|
| 20 | datepath=$certaindate
|
|---|
| 21 | else
|
|---|
| 22 | datepath=`date --date="-19HOUR" +%Y/%m/%d`
|
|---|
| 23 | fi
|
|---|
| 24 | date=`echo $datepath | sed -e 's/\///g'`
|
|---|
| 25 | printprocesslog "INFO processing "$datepath
|
|---|
| 26 |
|
|---|
| 27 | auxpathnewdaq=/newdaq/aux/$datepath
|
|---|
| 28 | # create aux directory on daq, if not yet there
|
|---|
| 29 | auxpath=/loc_data/aux/$datepath
|
|---|
| 30 | makedir $auxpath
|
|---|
| 31 | # create path for info files needed for analysis
|
|---|
| 32 | infopath=$anapath/info/$datepath
|
|---|
| 33 | makedir $infopath
|
|---|
| 34 | echo "" > $infopath/runrow.txt
|
|---|
| 35 | # create path for callisto output
|
|---|
| 36 | calpath=$anapath/callisto/$datepath
|
|---|
| 37 | makedir $calpath
|
|---|
| 38 | rawpathnewdaq=/newdaq/raw/$datepath
|
|---|
| 39 | rawpath=/loc_data/raw/$datepath
|
|---|
| 40 |
|
|---|
| 41 | # needed auxiliary files:
|
|---|
| 42 | # drive file with information about current source position
|
|---|
| 43 | drivefile=$auxpath/${date}.DRIVE_CONTROL_SOURCE_POSITION.fits
|
|---|
| 44 | drivefilenewdaq=$auxpathnewdaq/${date}.DRIVE_CONTROL_SOURCE_POSITION.fits
|
|---|
| 45 | # drive file with information about tracking position
|
|---|
| 46 | drivefile2=$auxpath/${date}.DRIVE_CONTROL_TRACKING_POSITION.fits
|
|---|
| 47 | drivefilenewdaq2=$auxpathnewdaq/${date}.DRIVE_CONTROL_TRACKING_POSITION.fits
|
|---|
| 48 | # file with magic weather information
|
|---|
| 49 | mweatherfile=$auxpath/${date}.MAGIC_WEATHER_DATA.fits
|
|---|
| 50 | mweatherfilenewdaq=$auxpathnewdaq/${date}.MAGIC_WEATHER_DATA.fits
|
|---|
| 51 | # file with trigger rates
|
|---|
| 52 | ratesfile=$auxpath/${date}.FTM_CONTROL_TRIGGER_RATES.fits
|
|---|
| 53 | ratesfilenewdaq=$auxpathnewdaq/${date}.FTM_CONTROL_TRIGGER_RATES.fits
|
|---|
| 54 | # file with trigger rates
|
|---|
| 55 | tempfile=$auxpath/${date}.FSC_CONTROL_TEMPERATURE.fits
|
|---|
| 56 | tempfilenewdaq=$auxpathnewdaq/${date}.FSC_CONTROL_TEMPERATURE.fits
|
|---|
| 57 | # file with trigger rates
|
|---|
| 58 | humfile=$auxpath/${date}.FSC_CONTROL_HUMIDITY.fits
|
|---|
| 59 | humfilenewdaq=$auxpathnewdaq/${date}.FSC_CONTROL_HUMIDITY.fits
|
|---|
| 60 |
|
|---|
| 61 | function rsync_aux_file()
|
|---|
| 62 | {
|
|---|
| 63 | if ls $1 >/dev/null 2>&1
|
|---|
| 64 | then
|
|---|
| 65 | printprocesslog "INFO rsync "$1
|
|---|
| 66 | # rsync
|
|---|
| 67 | # from newdaq (/newdaq = /fact on newdaq), rsync server newdaq::newdaq/
|
|---|
| 68 | # to daq (/daq = /loc_data on daq)
|
|---|
| 69 | rsyncservernewdaq=`echo $1 | sed -e 's/^\//172.16.100.100::/'`
|
|---|
| 70 | # old
|
|---|
| 71 | #if ! rsync -a -T $rsynctempdir $1 $2
|
|---|
| 72 | # new (workaround for problems on daq)
|
|---|
| 73 | if ! rsync -a -T $rsynctempdir $rsyncservernewdaq $2
|
|---|
| 74 | then
|
|---|
| 75 | printprocesslog "WARN rsync of "$1" failed."
|
|---|
| 76 | fi
|
|---|
| 77 | else
|
|---|
| 78 | printprocesslog "WARN "$1" missing."
|
|---|
| 79 | fi
|
|---|
| 80 | }
|
|---|
| 81 |
|
|---|
| 82 | function check_daq()
|
|---|
| 83 | {
|
|---|
| 84 | diskusage=( `df -P /raid10 | grep raid10 ` )
|
|---|
| 85 | # check if more than 700 GB are left on /loc_data
|
|---|
| 86 | if [ ${diskusage[3]} -lt $disklimitdaq ]
|
|---|
| 87 | then
|
|---|
| 88 | echo "WARN less than 700 left on /raid10 on node "$HOSTNAME
|
|---|
| 89 | printprocesslog "WARN less than 700 left on /raid10 on node "$HOSTNAME
|
|---|
| 90 | df -h /raid10
|
|---|
| 91 | finish
|
|---|
| 92 | fi
|
|---|
| 93 | }
|
|---|
| 94 |
|
|---|
| 95 | check_daq
|
|---|
| 96 |
|
|---|
| 97 | printprocesslog "INFO get lists of raw files on newdaq and daq"
|
|---|
| 98 | files=( `find $rawpathnewdaq -type f -regex '.*[.]fits[.]?[g]?[f]?[z]?' 2>/dev/null | sort` )
|
|---|
| 99 | # to treat links use:
|
|---|
| 100 | #files=( `find -L $rawpathnewdaq -regex '.*[.]fits[.]?[g]?[f]?[z]?' 2>/dev/null | sort` )
|
|---|
| 101 |
|
|---|
| 102 | if [ ${#files[@]} -eq 0 ]
|
|---|
| 103 | then
|
|---|
| 104 | printprocesslog "INFO no raw files available yet for "$datepath
|
|---|
| 105 | finish
|
|---|
| 106 | fi
|
|---|
| 107 | fileslocal=( `find $rawpath -type f -regex '.*[.]fits[.]?[g]?[f]?[z]?' | sort` )
|
|---|
| 108 | callistofiles=( `find $calpath -type f -name $date*-calibration.log | sort` )
|
|---|
| 109 | # get number of dataruns from DB
|
|---|
| 110 | query="SELECT Count(*) FROM RunInfo WHERE fNight="$date" AND fRunTypeKey=1"
|
|---|
| 111 | numdataruns=`sendquery`
|
|---|
| 112 | query="SELECT Count(*) FROM RunInfo WHERE fNight="$date" AND fRunTypeKey=6"
|
|---|
| 113 | numlpruns=`sendquery`
|
|---|
| 114 | query="SELECT Count(*) FROM RunInfo WHERE fNight="$date" AND fRunTypeKey=2 AND fHasDrsFile=1 AND fROI=300"
|
|---|
| 115 | numpedruns=`sendquery`
|
|---|
| 116 | query="SELECT Count(*) FROM RunInfo WHERE fNight="$date" AND fRunTypeKey=5"
|
|---|
| 117 | numdrstime=`sendquery`
|
|---|
| 118 | numpedruns=0
|
|---|
| 119 | #numcalibrated=`echo " $numdataruns + $numlpruns + $numpedruns + $numdrstime " | bc -l`
|
|---|
| 120 | numcalibrated=`echo " $numdataruns + $numdrstime " | bc -l`
|
|---|
| 121 |
|
|---|
| 122 | # create raw directory on daq, if not yet there
|
|---|
| 123 | makedir $rawpath
|
|---|
| 124 |
|
|---|
| 125 | echo "INFO #files-daq:"${#fileslocal[@]}" #files-newdaq:"${#files[@]}" #callisto-logs:"${#callistofiles[@]}" #runs:"$numcalibrated
|
|---|
| 126 | printprocesslog "INFO #files-daq:"${#fileslocal[@]}" #files-newdaq:"${#files[@]}" #callisto-logs:"${#callistofiles[@]}" #runs:"$numcalibrated
|
|---|
| 127 |
|
|---|
| 128 | while [ ${#fileslocal[@]} -ne ${#files[@]} ] || [ $numcalibrated -ne ${#callistofiles[@]} ] # || [ $numcalibrated -ne 0 ] # FIXME: Logik ueberdenken u ueberarb
|
|---|
| 129 | do
|
|---|
| 130 | # only continue with script
|
|---|
| 131 | # when there is more than 10% space on daq
|
|---|
| 132 | source `dirname $0`/../Sourcefile.sh
|
|---|
| 133 | check_daq
|
|---|
| 134 |
|
|---|
| 135 | numcalibrated=0
|
|---|
| 136 | echo "INFO #files-daq:"${#fileslocal[@]}" #files-newdaq:"${#files[@]}" #callisto-logs:"${#callistofiles[@]}" #runs:"$numcalibrated
|
|---|
| 137 | printprocesslog "INFO status beginning of while-loop #files-daq:"${#fileslocal[@]}" #files-newdaq:"${#files[@]}" #callisto-logs:"${#callistofiles[@]}" #runs:"$numcalibrated
|
|---|
| 138 |
|
|---|
| 139 | rsync_aux_file $drivefilenewdaq $drivefile
|
|---|
| 140 |
|
|---|
| 141 | # files on newdaq
|
|---|
| 142 | for file in ${files[@]}
|
|---|
| 143 | do
|
|---|
| 144 | printprocesslog "processing "$file
|
|---|
| 145 | #echo "processing "$file
|
|---|
| 146 | localfile=`echo $file | sed -e 's/newdaq/loc_data/'`
|
|---|
| 147 |
|
|---|
| 148 | source `dirname $0`/../Sourcefile.sh
|
|---|
| 149 | # check if file is already transferred
|
|---|
| 150 | if ! ls $localfile >/dev/null 2>&1
|
|---|
| 151 | then
|
|---|
| 152 | # check if it is drs-file
|
|---|
| 153 | # get stop time from raw-file
|
|---|
| 154 | if [ "`echo $file | grep -o drs`" == "drs" ]
|
|---|
| 155 | then
|
|---|
| 156 | nondrs=`basename $file | sed -e 's/[.]drs//g'`
|
|---|
| 157 | nondrsfile=`find $rawpath -name $nondrs.*z`
|
|---|
| 158 | tstop=`$factpath/fitsdump -h $nondrsfile 2>/dev/null | grep TSTOPI | grep -E -o '[0-9]+'`
|
|---|
| 159 | else
|
|---|
| 160 | tstop=`$factpath/fitsdump -h $file 2>/dev/null | grep TSTOPI | grep -E -o '[0-9]+'`
|
|---|
| 161 | fi
|
|---|
| 162 | # when stop time is 0, file is not closed
|
|---|
| 163 | # when an error is returned the tstop is empty
|
|---|
| 164 | if [ "$tstop" == "0" ] || [ "$tstop" == "" ]
|
|---|
| 165 | then
|
|---|
| 166 | printprocesslog "WARN "$file" not yet closed."
|
|---|
| 167 | # if a file is not closed and not touched for 30 minutes,
|
|---|
| 168 | # it is assumed corrupted and still transferred
|
|---|
| 169 | fileaccessed=`find $file -amin -30`
|
|---|
| 170 | if ! [ "$fileaccessed" == "" ]
|
|---|
| 171 | then
|
|---|
| 172 | printprocesslog "INFO "$file" was accessed in the last 30 minutes => continue"
|
|---|
| 173 | continue
|
|---|
| 174 | else
|
|---|
| 175 | printprocesslog "WARN: "$file" has empty TSTOP but was not touched for 30 minutes"
|
|---|
| 176 | fileerror="yes"
|
|---|
| 177 | fi
|
|---|
| 178 | fi
|
|---|
| 179 |
|
|---|
| 180 | # rsync
|
|---|
| 181 | # from newdaq (/newdaq = /fact on newdaq), rsync server newdaq::newdaq/
|
|---|
| 182 | # to daq (/daq = /loc_data on daq)
|
|---|
| 183 | # to access rsync server via the dedicated network between
|
|---|
| 184 | # daq and newdaq, use 172.16.100.100::newdaq
|
|---|
| 185 | filersyncserver=`echo $file | sed -e 's/^\//172.16.100.100::/'`
|
|---|
| 186 | # old
|
|---|
| 187 | ##if ! rsync -av --stats --progress --bwlimit=$bwlimit $file $localfile
|
|---|
| 188 | #if ! rsync -a -T $rsynctempdir --bwlimit=$bwlimit $file $localfile
|
|---|
| 189 | # new
|
|---|
| 190 | if ! rsync -a -W -T $rsynctempdir --bwlimit=$bwlimit $filersyncserver $localfile
|
|---|
| 191 | then
|
|---|
| 192 | printprocesslog "ERROR something went wrong with rsync of "$file
|
|---|
| 193 | rm $localfile
|
|---|
| 194 | continue
|
|---|
| 195 | fi
|
|---|
| 196 | printprocesslog "INFO "$file" rsynced successfully."
|
|---|
| 197 | fi
|
|---|
| 198 |
|
|---|
| 199 | # for .drs.fits files no further treatment needed
|
|---|
| 200 | if [ "`echo $localfile | grep -o drs`" == "drs" ]
|
|---|
| 201 | then
|
|---|
| 202 | continue
|
|---|
| 203 | fi
|
|---|
| 204 |
|
|---|
| 205 | # treat other files (.fits.fz)
|
|---|
| 206 | runtype=`$factpath/fitsdump -h $localfile 2>/dev/null | grep RUNTYPE | grep -E -o "['][a-z0-9._-]+[']" | sed -e "s/'//g" -e "s/_/-/g" -e "s/[.]//g"`
|
|---|
| 207 | if [ "$runtype" != "data" ]
|
|---|
| 208 | then
|
|---|
| 209 | # skip a non-data run when it has not 1000 evts
|
|---|
| 210 | # as this means probably an fad-loss
|
|---|
| 211 | # and these runs are repeated in that case
|
|---|
| 212 | numevts=`$factpath/fitsdump -h $file 2>/dev/null | grep Events | grep -E -o '[0-9]+'`
|
|---|
| 213 | if [ $numevts -ne 1000 ]
|
|---|
| 214 | then
|
|---|
| 215 | printprocesslog "INFO file "$file" is a non-data file ("$runtype") and has not 1000 events ("$numevts")"
|
|---|
| 216 | continue
|
|---|
| 217 | fi
|
|---|
| 218 | fi
|
|---|
| 219 |
|
|---|
| 220 | # get run number
|
|---|
| 221 | runnum=`echo $localfile | cut -d_ -f3 | cut -d. -f1`
|
|---|
| 222 |
|
|---|
| 223 | # what is needed to process the different runs?
|
|---|
| 224 | # P: run#(P), run#(drs-file)
|
|---|
| 225 | # C: run#(C), run#(drs-file), run#(drs-time)
|
|---|
| 226 | # D: run#(D), run#(drs-file), run#(drs-time), ?
|
|---|
| 227 | # what is drs-file? pedestal, roi300, has drs.fits
|
|---|
| 228 | callistolog=$calpath"/"$date"_"$runnum"-calibration.log"
|
|---|
| 229 | case $runtype in
|
|---|
| 230 | data) # treat D-runs
|
|---|
| 231 | if [ "$fileerror" = "yes" ]
|
|---|
| 232 | then
|
|---|
| 233 | printprocesslog "INFO do not further process corrupted file "$localfile
|
|---|
| 234 | fileerror=
|
|---|
| 235 | continue
|
|---|
| 236 | fi
|
|---|
| 237 |
|
|---|
| 238 | # some accounting
|
|---|
| 239 | printprocesslog "DEBUG counting callisto logs and set data files +1."
|
|---|
| 240 | # get number of callisto logs
|
|---|
| 241 | runcallistocount=`ps aux | grep RunCallisto | grep -E -o '20[12][0-9][01][0-9][0-3][0-9]_[0-9][0-9][0-9]' | sort | uniq | wc -l`
|
|---|
| 242 | # count runs to be calibrated
|
|---|
| 243 | numcalibrated=`echo " $numcalibrated + 1 " | bc -l`
|
|---|
| 244 | printprocesslog "DEBUG running callistos: "$runcallistocount" #runs: "$numcalibrated" #callisto-logs: "${#callistofiles[@]}
|
|---|
| 245 |
|
|---|
| 246 | # do not overload system in case of a lot of files to be processed
|
|---|
| 247 | # numruncallistos is set in setup.fact.lp.data
|
|---|
| 248 | if [ $runcallistocount -ge $numruncallistos ]
|
|---|
| 249 | then
|
|---|
| 250 | printprocesslog "INFO "$runcallistocount" RunCallisto.sh are running -> continue"
|
|---|
| 251 | continue
|
|---|
| 252 | fi
|
|---|
| 253 |
|
|---|
| 254 | # starting calibration
|
|---|
| 255 | if ! [ -e $callistolog ]
|
|---|
| 256 | then
|
|---|
| 257 | rsync_aux_file $drivefilenewdaq2 $drivefile2
|
|---|
| 258 | rsync_aux_file $mweatherfilenewdaq $mweatherfile
|
|---|
| 259 | rsync_aux_file $ratesfilenewdaq $ratesfile
|
|---|
| 260 | rsync_aux_file $tempfilenewdaq $tempfile
|
|---|
| 261 | rsync_aux_file $humfilenewdaq $humfile
|
|---|
| 262 | if [ -e $drstime ]
|
|---|
| 263 | then
|
|---|
| 264 | calfile=$calpath"/"$date"_"$runnum"_C.root"
|
|---|
| 265 | printprocesslog "INFO starting RunCallisto.sh for drun "$localfile" logfile "$callistolog" drs-calib "$drscalib" drs-time "$drstime" outpath "$outpath" calfile "$calfile
|
|---|
| 266 | echo "INFO starting RunCallisto.sh for drun "$localfile" logfile "$callistolog" drs-calib "$drscalib" drs-time "$drstime" outpath "$outpath" calfile "$calfile
|
|---|
| 267 | `dirname $0`/RunCallisto.sh "drun" $callistolog $localfile $drscalib $drstime $calpath $calfile &
|
|---|
| 268 | fi
|
|---|
| 269 | fi
|
|---|
| 270 | continue
|
|---|
| 271 | ;;
|
|---|
| 272 | pedestal) # treat P-runs
|
|---|
| 273 | roi=`$factpath/fitsdump -h $localfile 2>/dev/null | grep ROI | grep -v ROITM | grep -E -o "[0-9][0-9][0-9][0-9]?" | sed -e "s/'//g" -e "s/_/-/g" -e "s/[.]//g"`
|
|---|
| 274 | if [ $roi -eq 300 ]
|
|---|
| 275 | then
|
|---|
| 276 | # check drs-file
|
|---|
| 277 | drsfile=`echo $localfile | sed -e 's/[.]fits[.]fz/.drs.fits/g'`
|
|---|
| 278 | if [ -e $drsfile ]
|
|---|
| 279 | then
|
|---|
| 280 | # set name of drs-file
|
|---|
| 281 | drscalib=$drsfile
|
|---|
| 282 | continue
|
|---|
| 283 | #else
|
|---|
| 284 | # not needed for QLA
|
|---|
| 285 | #if ! [ -e $callistolog ]
|
|---|
| 286 | #then
|
|---|
| 287 | # pedfile=$calpath"/"$date"_"$runnum"-pedestal.root"
|
|---|
| 288 | # # count runs to be calibrated
|
|---|
| 289 | # numcalibrated=`echo " $numcalibrated + 1 " | bc -l`
|
|---|
| 290 | # printprocesslog "INFO starting RunCallisto.sh for prun "$localfile" logfile "$callistolog" drs-calib "$drscalib" pedfile "$pedfile
|
|---|
| 291 | # echo "INFO starting RunCallisto.sh for prun "$localfile" logfile "$callistolog" drs-calib "$drscalib" pedfile "$pedfile
|
|---|
| 292 | # `dirname $0`/RunCallisto.sh "prun" $callistolog $localfile $drscalib $pedfile &
|
|---|
| 293 | #fi
|
|---|
| 294 | fi
|
|---|
| 295 | fi
|
|---|
| 296 | ;;
|
|---|
| 297 | light-pulser-ext) # treat C-runs
|
|---|
| 298 | # do lp-treatment -> not needed for QLA
|
|---|
| 299 | #lpfile=$calpath"/"$date"_"$runnum"-lightpulser.root"
|
|---|
| 300 | #if ! [ -e $callistolog ]
|
|---|
| 301 | #then
|
|---|
| 302 | # if [ -e $drstime ]
|
|---|
| 303 | # then
|
|---|
| 304 | # # count runs to be calibrated
|
|---|
| 305 | # numcalibrated=`echo " $numcalibrated + 1 " | bc -l`
|
|---|
| 306 | # printprocesslog "INFO starting RunCallisto.sh for crun "$localfile" logfile "$callistolog" drs-calib "$drscalib" drs-time "$drstime" lpfile "$lpfile
|
|---|
| 307 | # echo "INFO starting RunCallisto.sh for crun "$localfile" logfile "$callistolog" drs-calib "$drscalib" drs-time "$drstime" lpfile "$lpfile
|
|---|
| 308 | # `dirname $0`/RunCallistoNew.sh "crun" $callistolog $localfile $drscalib $drstime $lpfile &
|
|---|
| 309 | # fi
|
|---|
| 310 | #fi
|
|---|
| 311 | ;;
|
|---|
| 312 | drs-time) # treat C-runs
|
|---|
| 313 | # do drs-timing calibration
|
|---|
| 314 | drstime=$calpath"/"$date"_"$runnum"-drstime.root"
|
|---|
| 315 | # starting calibration
|
|---|
| 316 | if ! [ -e $callistolog ]
|
|---|
| 317 | then
|
|---|
| 318 | # count runs to be calibrated
|
|---|
| 319 | numcalibrated=`echo " $numcalibrated + 1 " | bc -l`
|
|---|
| 320 | printprocesslog "INFO starting RunCallisto.sh for time "$localfile" logfile "$callistolog" drs-ped "$drsped" drstime "$drstime
|
|---|
| 321 | echo "INFO starting RunCallisto.sh for time "$localfile" logfile "$callistolog" drs-ped "$drsped" drstime "$drstime
|
|---|
| 322 | `dirname $0`/RunCallisto.sh "time" $callistolog $localfile $drsped $drstime &
|
|---|
| 323 | fi
|
|---|
| 324 | ;;
|
|---|
| 325 | drs-pedestal) # get drs-pedestal
|
|---|
| 326 | roi=`$factpath/fitsdump -h $localfile 2>/dev/null | grep ROI | grep -v ROITM | grep -E -o "[0-9][0-9][0-9][0-9]?" | sed -e "s/'//g" -e "s/_/-/g" -e "s/[.]//g"`
|
|---|
| 327 | drs=`$factpath/fitsdump -h $localfile 2>/dev/null | grep DRSCALIB | grep -E -o " T " `
|
|---|
| 328 | if [ $roi -eq 1024 ] && [ "$drs" == " T " ]
|
|---|
| 329 | then
|
|---|
| 330 | drsped=`echo $localfile | sed -e 's/[.]fits[.]fz/.drs.fits/g'`
|
|---|
| 331 | fi
|
|---|
| 332 | ;;
|
|---|
| 333 | *) # other runs
|
|---|
| 334 | printprocesslog "INFO file "$file" has runtype "$runtype" -> continue "
|
|---|
| 335 | continue
|
|---|
| 336 | ;;
|
|---|
| 337 | esac
|
|---|
| 338 | done
|
|---|
| 339 | printprocesslog "INFO status after loop: "$runcallistocount" callistos running, "$numcalibrated" data runs to process in total, "${#callistofiles[@]}" have already a callisto-logfile "
|
|---|
| 340 |
|
|---|
| 341 | # get new file lists
|
|---|
| 342 | printprocesslog "INFO get new file lists for "$datepath
|
|---|
| 343 | files=( `find $rawpathnewdaq -type f -regex '.*[.]fits[.]?[g]?[f]?[z]?' | sort` )
|
|---|
| 344 | fileslocal=( `find $rawpath -type f -regex '.*[.]fits[.]?[g]?[f]?[z]?' | sort` )
|
|---|
| 345 | callistofiles=( `find $calpath -type f -name $date*-calibration.log | sort` )
|
|---|
| 346 | echo "INFO #files-daq:"${#fileslocal[@]}" #files-newdaq:"${#files[@]}" #callisto-logs:"${#callistofiles[@]}" #runs:"$numcalibrated
|
|---|
| 347 | printprocesslog "INFO status after for-loop #files-daq:"${#fileslocal[@]}" #files-newdaq:"${#files[@]}" #callisto-logs:"${#callistofiles[@]}" #runs:"$numcalibrated
|
|---|
| 348 |
|
|---|
| 349 | # wait and get new file lists
|
|---|
| 350 | update=
|
|---|
| 351 | if [ ${#fileslocal[@]} -eq ${#files[@]} ]
|
|---|
| 352 | then
|
|---|
| 353 | printprocesslog "INFO wait 60 seconds."
|
|---|
| 354 | sleep 60
|
|---|
| 355 | printprocesslog "INFO get new file lists for "$datepath
|
|---|
| 356 | files=( `find $rawpathnewdaq -type f -regex '.*[.]fits[.]?[g]?[f]?[z]?' | sort` )
|
|---|
| 357 | fileslocal=( `find $rawpath -type f -regex '.*[.]fits[.]?[g]?[f]?[z]?' | sort` )
|
|---|
| 358 | callistofiles=( `find $calpath -type f -name $date*-calibration.log | sort` )
|
|---|
| 359 | fi
|
|---|
| 360 | echo "INFO #files-daq:"${#fileslocal[@]}" #files-newdaq:"${#files[@]}" #callisto-logs:"${#callistofiles[@]}" #runs:"$numcalibrated
|
|---|
| 361 | printprocesslog "INFO status after wait end of while-loop #files-daq:"${#fileslocal[@]}" #files-newdaq:"${#files[@]}" #callisto-logs:"${#callistofiles[@]}" #runs:"$numcalibrated
|
|---|
| 362 | done
|
|---|
| 363 |
|
|---|
| 364 |
|
|---|
| 365 |
|
|---|