Last change
on this file since 13151 was 13049, checked in by Daniela Dorner, 13 years ago |
added (scripts for callisto and star)
|
-
Property svn:executable
set to
*
|
File size:
1.2 KB
|
Line | |
---|
1 | #!/bin/bash
|
---|
2 | #
|
---|
3 |
|
---|
4 | source `dirname $0`/../Sourcefile.sh
|
---|
5 | printprocesslog "INFO starting $0"
|
---|
6 | program=RunCallisto
|
---|
7 | step=Callisto
|
---|
8 |
|
---|
9 | set -C
|
---|
10 |
|
---|
11 | for (( i=0; i<100; i++ ))
|
---|
12 | do
|
---|
13 | # get todo list
|
---|
14 | gettodo "1"
|
---|
15 |
|
---|
16 | # get all needed variables
|
---|
17 | night=${primaries[0]}
|
---|
18 | seqid=${primaries[1]}
|
---|
19 | nightpath=`echo $night | cut -c 1-4`"/"`echo $night | cut -c 5-6`"/"`echo $night | cut -c 7-8`
|
---|
20 | seqnum=$night"_"`printf %03d $seqid`
|
---|
21 |
|
---|
22 | # check if script is already running
|
---|
23 | lockfile=$lockpath"/lock-"$program"-"$seqnum".txt"
|
---|
24 | checklock continue
|
---|
25 | printprocesslog "INFO got todo with try #"$i
|
---|
26 | break
|
---|
27 | done
|
---|
28 |
|
---|
29 | # get all needed paths and files
|
---|
30 | seqfile=$seqpath"/"$nightpath"/"$seqnum".seq"
|
---|
31 | outpath=$datapath"/callisto/"$nightpath
|
---|
32 | makedir $outpath
|
---|
33 | logfile=$outpath"/"$seqnum"-calibration.log"
|
---|
34 |
|
---|
35 | cd $mars
|
---|
36 |
|
---|
37 | # run callisto
|
---|
38 | printprocesslog "INFO starting callisto5.C for sequence "$seqnum
|
---|
39 | setstatus "start"
|
---|
40 |
|
---|
41 | check1=`root -q -b fact/callisto5.C\("\"$seqfile\""\,"\"$outpath\""\) | tee $logfile | intgrep`
|
---|
42 |
|
---|
43 | case $check1 in
|
---|
44 | 0) printprocesslog "INFO callisto was successful for sequence "$seqnum" (check1=$check1)"
|
---|
45 | ;;
|
---|
46 | *) printprocesslog "ERROR callisto5.C failed for sequence "$seqnum" (check1=$check1)"
|
---|
47 | check=$check1
|
---|
48 | ;;
|
---|
49 | esac
|
---|
50 |
|
---|
51 | setstatus "stop"
|
---|
52 |
|
---|
53 | finish
|
---|
54 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.