Changeset 17596
- Timestamp:
- 03/02/14 12:50:49 (11 years ago)
- Location:
- trunk/DataCheck/Processing
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/DataCheck/Processing/FillAuxCurrents.sh
r17581 r17596 51 51 # continue 52 52 #fi 53 53 54 54 # check if aux files are available from that night 55 55 if ! [ -d $auxdir ] … … 60 60 printprocesslog "INFO processing files in "$auxdir 61 61 fi 62 62 63 rawdir=$rawdata/$date 64 # check if raw files are available from that night 65 if ! [ -d $rawdir ] 66 then 67 logtext="INFO" 68 else 69 logtext="WARN" 70 fi 71 63 72 biasvoltagefile=$auxdir/$runnumber.BIAS_CONTROL_VOLTAGE.fits 64 73 if ! [ -e $biasvoltagefile ] 65 74 then 66 printprocesslog "WARN"$biasvoltagefile" not found."75 printprocesslog $logtext" "$biasvoltagefile" not found." 67 76 continue 68 77 else … … 77 86 if ! [ -e $biascurrentfile ] 78 87 then 79 printprocesslog "WARN"$biascurrentfile" not found."88 printprocesslog $logtext" "$biascurrentfile" not found." 80 89 continue 81 90 else … … 91 100 if ! [ -e $feedbackcalfile ] 92 101 then 93 printprocesslog "WARN"$feedbackcalfile" not found."102 printprocesslog $logtext" "$feedbackcalfile" not found." 94 103 continue 95 104 else … … 118 127 if ! [ -e $calcurrentsfile ] 119 128 then 120 printprocesslog "WARN"$calcurrentsfile" not found."129 printprocesslog $logtext" "$calcurrentsfile" not found." 121 130 continue 122 131 else -
trunk/DataCheck/Processing/FillAuxThresholds.sh
r17585 r17596 59 59 fi 60 60 61 rawdir=$rawdata/$date 62 # check if raw files are available from that night 63 if ! [ -d $rawdir ] 64 then 65 logtext="INFO" 66 else 67 logtext="WARN" 68 fi 69 61 70 thresholdfile=$auxdir/$runnumber.RATE_CONTROL_THRESHOLD.fits 62 71 printprocesslog "INFO processing "$thresholdfile … … 64 73 if ! [ -e $thresholdfile ] 65 74 then 66 printprocesslog "WARN"$thresholdfile" not found."75 printprocesslog $logtext" "$thresholdfile" not found." 67 76 continue 68 77 else … … 78 87 if ! [ -e $thresholdfile2 ] 79 88 then 80 printprocesslog "WARN"$thresholdfile2" not found."89 printprocesslog $logtext" "$thresholdfile2" not found." 81 90 continue 82 91 else -
trunk/DataCheck/Processing/FillEffectiveOn.sh
r17584 r17596 47 47 auxdir=$auxdata/$date 48 48 runnumber=`echo $date | sed -e 's/\///g'` 49 50 # if [ $runnumber -lt 20130301 ]51 # then52 # continue53 # fi54 49 # echo $auxdir" @ "`date` 55 50 … … 63 58 fi 64 59 60 rawdir=$rawdata/$date 61 # check if raw files are available from that night 62 if ! [ -d $rawdir ] 63 then 64 logtext="INFO" 65 else 66 logtext="WARN" 67 fi 68 65 69 ftmcontrolfile=$auxdir/$runnumber.FTM_CONTROL_TRIGGER_RATES.fits 66 70 if ! [ -e $ftmcontrolfile ] 67 71 then 68 printprocesslog "WARN"$ftmcontrolfile" not found."72 printprocesslog $logtext" "$ftmcontrolfile" not found." 69 73 continue 70 74 else -
trunk/DataCheck/Processing/FillRatescans.sh
r17093 r17596 44 44 fi 45 45 46 rawdir=$rawdata/$date 47 # check if raw files are available from that night 48 if ! [ -d $rawdir ] 49 then 50 logtext="INFO" 51 else 52 logtext="WARN" 53 fi 54 46 55 ratescanfile=$auxdir/$runnumber.RATE_SCAN_DATA.fits 47 56 printprocesslog "INFO processing "$ratescanfile … … 49 58 if ! [ -e $ratescanfile ] 50 59 then 51 printprocesslog "WARN"$ratescanfile" not found."60 printprocesslog $logtext" "$ratescanfile" not found." 52 61 continue 53 62 else
Note:
See TracChangeset
for help on using the changeset viewer.