|
Last change
on this file since 14905 was 13399, checked in by Daniela Dorner, 14 years ago |
|
added (scripts and setup for MC processing)
|
-
Property svn:executable
set to
*
|
|
File size:
1.8 KB
|
| Line | |
|---|
| 1 | #!/bin/bash
|
|---|
| 2 | #
|
|---|
| 3 | # This script is launching the calibration of mc sequences.
|
|---|
| 4 | #
|
|---|
| 5 |
|
|---|
| 6 | source `dirname $0`/../Sourcefile.sh
|
|---|
| 7 | printprocesslog "INFO starting $0"
|
|---|
| 8 | program=callisto
|
|---|
| 9 | step=Callisto
|
|---|
| 10 |
|
|---|
| 11 | set -C
|
|---|
| 12 |
|
|---|
| 13 | # get sequence #
|
|---|
| 14 | numchanged=0
|
|---|
| 15 | while (( 0 < 21 ))
|
|---|
| 16 | do
|
|---|
| 17 | if ! [ $numchanged -eq 1 ]
|
|---|
| 18 | then
|
|---|
| 19 | if ! [ "$sequence" = "" ] && ! [ "$cereskey" = "" ]
|
|---|
| 20 | then
|
|---|
| 21 | printprocesslog "INFO $program for sequence $sequence cereskey $cereskey is already running => request new number "
|
|---|
| 22 | fi
|
|---|
| 23 | gettodo "1"
|
|---|
| 24 | sequence=${primaries[0]}
|
|---|
| 25 | cereskey=${primaries[1]}
|
|---|
| 26 | if [ "$sequence" = "" ] || [ "$cereskey" = "" ]
|
|---|
| 27 | then
|
|---|
| 28 | printprocesslog "INFO nothing to do for $program "
|
|---|
| 29 | fi
|
|---|
| 30 | else
|
|---|
| 31 | printprocesslog "INFO starting $program for sequence $sequence cereskey $cereskey"
|
|---|
| 32 | break
|
|---|
| 33 | fi
|
|---|
| 34 | setstatus "start"
|
|---|
| 35 | done
|
|---|
| 36 |
|
|---|
| 37 | cd $mars
|
|---|
| 38 |
|
|---|
| 39 | # run calibration for sequence
|
|---|
| 40 |
|
|---|
| 41 | # define files and paths
|
|---|
| 42 | sequfile="$mcsequpath/`printf %08d $sequence | cut -c 1-4`/sequence`printf %08d $sequence`.txt"
|
|---|
| 43 | outpath=$mcpath/$program/`printf %03d $cereskey`/`printf %08d $sequence | cut -c 1-4`/`printf %08d $sequence | cut -c 5-8`
|
|---|
| 44 | makedir $outpath
|
|---|
| 45 | log=$outpath/$program`printf %08d $sequence`
|
|---|
| 46 | callistorc=$setuppath/$program/`printf %03d $cereskey`/callisto.rc
|
|---|
| 47 | inpath=$mcpath/ceres/`printf %03d $cereskey`/`printf %08d $sequence | cut -c 1-4`/`printf %08d $sequence | cut -c 5-8`
|
|---|
| 48 |
|
|---|
| 49 | command="./callisto -b -q -v4 -f --out=$outpath --ind=$inpath --log=$log.log --html=$log.html --config=$callistorc $sequfile"
|
|---|
| 50 | printprocesslog "INFO executing "$command
|
|---|
| 51 | $command
|
|---|
| 52 | check1=$?
|
|---|
| 53 |
|
|---|
| 54 | case $check1 in
|
|---|
| 55 | 0) printprocesslog "INFO $program finished successfully for sequence $sequence cereskey $cereskey (return code $check1)"
|
|---|
| 56 | ;;
|
|---|
| 57 | *) printprocesslog "ERROR $program failed for sequence $sequence cereskey $cereskey (return code $check1)"
|
|---|
| 58 | check=$check1
|
|---|
| 59 | ;;
|
|---|
| 60 | esac
|
|---|
| 61 |
|
|---|
| 62 | setstatus "stop"
|
|---|
| 63 |
|
|---|
| 64 | finish
|
|---|
| 65 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.