Changeset 7467 for trunk/MagicSoft/Mars/datacenter/scripts/runcallisto
- Timestamp:
- 01/31/06 14:53:08 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/datacenter/scripts/runcallisto
r7465 r7467 170 170 fi 171 171 172 echo "run callisto..." >> $scriptlog 2>&1 172 echo "run $program..." >> $scriptlog 2>&1 173 setstatus "start" 174 173 175 ./callisto -b -q -v4 -f -raw --log=$outpath/$program$no2.log --html=$outpath/$program$no2.html --out=$outpath --config=$callistorcseq $sequfile 2>> $scriptlog > /dev/null 174 176 check1=$? … … 206 208 then 207 209 echo "no ccfile found for run "$runno >> $scriptlog 2>&1 208 break 2 210 com="no ccfile for run $runno" 211 check=0 212 break 209 213 fi 210 214 echo "cacofile: "$cacofile >> $scriptlog 2>&1 … … 229 233 fi 230 234 done 235 echo "no cacofile found" >> $scriptlog 2>&1 236 com="no cacofile for run $runno" 237 check=0 238 break 231 239 fi 232 240 ./merpp -u --log=$merpplogpath/merppccupdate$runno.log --html=$merpplogpath/merppccupdate$runno.html --auto-time-stop --runfile=$runno $ccfile $calfile 2>> $scriptlog> /dev/null … … 235 243 0) echo "check2=$check2 -> everything ok, merppccupdate worked -> continue" >> $scriptlog 2>&1;; 236 244 *) echo "check2=$check2 -> ERROR -> merppccupdate failed" >> $scriptlog 2>&1 237 continue 2 ;; 245 com="merppccupdate failed for run $runno" 246 check=$check2 247 break ;; 238 248 esac 239 249 ./merpp -u --log=$merpplogpath/merppcacoupdate$runno.log --html=$merpplogpath/merppcacoupdate$runno.html --auto-time $cacofile $calfile 2>> $scriptlog> /dev/null … … 242 252 0) echo "check3=$check3 -> everything ok, merppcacoupdate worked -> continue" >> $scriptlog 2>&1;; 243 253 *) echo "check3=$check3 -> ERROR -> merppcacoupdate failed" >> $scriptlog 2>&1 244 continue 2 ;; 254 com="merppcacoupdate failed for run $runno" 255 check=$check3 256 break ;; 245 257 esac 246 258 done 247 248 # set status for calibration if merpp updates are also done249 echo "inserting the status for $program for sequence $sequence into the db" >> $scriptlog 2>&1250 statustime="Now()"251 failed="NULL"252 starttime="NULL"253 failedtime="NULL"254 var1=$no255 var2=$no2256 setstatus257 259 ;; 258 *) echo "check1=$check1 -> ERROR -> step has to be repeated" >> $scriptlog 2>&1;; 260 *) echo "check1=$check1 -> ERROR -> step has to be repeated" >> $scriptlog 2>&1 261 com="calibration failed" 262 check=$check1 263 ;; 259 264 esac 265 # set status 266 echo "inserting the status for $program for sequence $sequence into the db" >> $scriptlog 2>&1 267 setstatus "stop" 260 268 done 261 269
Note:
See TracChangeset
for help on using the changeset viewer.