Last change
on this file since 17900 was 17154, checked in by Daniela Dorner, 11 years ago |
adapted macro paths
|
-
Property svn:executable
set to
*
|
File size:
1.7 KB
|
Line | |
---|
1 | #!/bin/bash
|
---|
2 | #
|
---|
3 |
|
---|
4 | source `dirname $0`/../Sourcefile.sh
|
---|
5 | printprocesslog "INFO starting $0"
|
---|
6 |
|
---|
7 | seqfile=$1
|
---|
8 | seqnum=`basename $seqfile | sed -e 's/[.]seq//g'`
|
---|
9 | #inpath=`dirname $seqfile | sed -e "s/sequences/${1}\/callisto/"`
|
---|
10 | inpath=`dirname $seqfile | sed -e "s/sequences/callisto/"`
|
---|
11 | #outpath=`dirname $seqfile | sed -e "s/sequences/${1}\/star/"`
|
---|
12 | outpath=`dirname $seqfile | sed -e "s/sequences/star/"`
|
---|
13 | makedir $outpath
|
---|
14 | logfile=$outpath"/"$seqnum"-images.log"
|
---|
15 |
|
---|
16 | cd $mars
|
---|
17 |
|
---|
18 | # run star
|
---|
19 | printprocesslog "INFO starting star.C for sequence "$seqnum
|
---|
20 |
|
---|
21 | check1=`root -q -b fact/analysis/star.C\("\"$seqfile\""\,4.0\,2.5\,"\"$inpath\""\,"\"$outpath\""\) | tee $logfile | intgrep`
|
---|
22 |
|
---|
23 | case $check1 in
|
---|
24 | 0) printprocesslog "INFO star was successful for sequence "$seqnum" (check1=$check1)"
|
---|
25 | # run merpp
|
---|
26 | printprocesslog "INFO starting merpp.C for sequence "$seqnum
|
---|
27 | logfile=$outpath"/"$seqnum"-merpp.log"
|
---|
28 |
|
---|
29 | check1=`root -q -b fact/analysis/merpp.C\("\"$seqfile\""\,"\"$outpath\""\) | tee $logfile | intgrep`
|
---|
30 |
|
---|
31 | case $check1 in
|
---|
32 | 0) printprocesslog "INFO merpp was successful for sequence "$seqnum" (check1=$check1)"
|
---|
33 | ;;
|
---|
34 | *) printprocesslog "ERROR merpp3.C failed for sequence "$seqnum" (check1=$check1)"
|
---|
35 | # delete image file in this case to be sure that ganymed doesn't try to process it
|
---|
36 | imgfile=$outpath"/"$seqnum"_I.root"
|
---|
37 | if ls $imgfile >/dev/null 2>&1
|
---|
38 | then
|
---|
39 | rm -v $imagefile
|
---|
40 | fi
|
---|
41 | ;;
|
---|
42 | esac
|
---|
43 | ;;
|
---|
44 | *) printprocesslog "ERROR star.C failed for sequence "$seqnum" (check1=$check1)"
|
---|
45 | ;;
|
---|
46 | esac
|
---|
47 |
|
---|
48 | finish
|
---|
49 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.