source: trunk/MagicSoft/Mars/datacenter/scripts/runganymed@ 7256

Last change on this file since 7256 was 7256, checked in by Daniela Dorner, 20 years ago
*** empty log message ***
  • Property svn:executable set to *
File size: 5.6 KB
Line 
1#!/bin/sh
2#
3# ========================================================================
4#
5# *
6# * This file is part of MARS, the MAGIC Analysis and Reconstruction
7# * Software. It is distributed to you in the hope that it can be a useful
8# * and timesaving tool in analysing Data of imaging Cerenkov telescopes.
9# * It is distributed WITHOUT ANY WARRANTY.
10# *
11# * Permission to use, copy, modify and distribute this software and its
12# * documentation for any purpose is hereby granted without fee,
13# * provided that the above copyright notice appear in all copies and
14# * that both that copyright notice and this permission notice appear
15# * in supporting documentation. It is provided "as is" without express
16# * or implied warranty.
17# *
18#
19#
20# Author(s): Daniela Dorner 08/2004 <mailto:dorner@astro.uni-wuerzburg.de>
21#
22# Copyright: MAGIC Software Development, 2000-2004
23#
24#
25# ========================================================================
26#
27#
28
29user=`whoami`
30source /home/$user/Mars/datacenter/scripts/sourcefile
31
32set -C
33
34table=DataSetProcessStatus
35column=fGanymed
36date=NULL
37datetime=`date +%F-%H-%M-%S`
38year=`date +%Y`
39#pno=24 # number of processes, i.e. number of todo-files
40
41todofile=$listpath/ToDo-$table-$column
42getstatuslogpath=$logpath/getstatus/ganymed/$year
43getstatuslog=$getstatuslogpath/getstatus-ganymed-$datetime.log
44
45scriptlogpath=$logpath/run/ganymed/`date +%Y/%m/%d`
46makedir $scriptlogpath
47
48scriptlog=$scriptlogpath/runganymed-$datetime.log
49
50date >> $scriptlog 2>&1
51
52makedir $getstatuslogpath >> $scriptlog 2>&1
53
54cd $mars
55
56date > $lockpath/lock-getting-ganymed-list.txt >> $scriptlog 2>&1
57checklock0=$?
58case $checklock0 in
59 0) echo "checklock0=$checklock0 -> continue " >> $scriptlog 2>&1;;
60 1) echo "checklock0=$checklock0 -> file exists " >> $scriptlog 2>&1
61 echo "-> getting list for ganymed is running -> exit" >> $scriptlog 2>&1
62 date >> $scriptlog 2>&1
63 exit;;
64 *) echo "checklock0=$checklock0 -> something went completely wrong" >> $scriptlog 2>&1;;
65esac
66
67echo "checking if other todo-files are there" >> $scriptlog 2>&1
68if ls $todofile-[1-9]*.txt >> $scriptlog 2>&1
69then
70 echo "other file(s) on disk " >> $scriptlog 2>&1
71 echo " -> choose one file and run ganymed" >> $scriptlog 2>&1
72else
73 echo "getting list..." >> $scriptlog 2>&1
74 check0=`root -q -b $macrospath/getdolist.C+\("\"$table\""\,"\"$column\""\,"\"$date\""\,"\"$listpath\""\) | tee $getstatuslog | grep int | sed -e 's/(int)//'`
75
76 case $check0 in
77 1) echo "check0=$check0 -> everthing ok -> run ganymed" >> $scriptlog 2>&1;;
78 *) echo "check0=$check0 -> ERROR -> step has to be repeated" >> $scriptlog 2>&1;;
79 esac
80fi
81
82rm -v $lockpath/lock-getting-ganymed-list.txt >> $scriptlog 2>&1
83
84nr=bla
85echo "finding the right todo-file" >> $scriptlog 2>&1
86for todofile in ${todofiles[@]}
87do
88 if ! ls $todofile >> $scriptlog 2>&1
89 then
90 echo "file is not on disk -> continue" >> $scriptlog 2>&1
91 continue
92 fi
93 lockfile=`echo $todofile | sed -e 's/lists/locks/' -e 's/ToDo/lock/'`
94 date > $lockfile >> $scriptlog 2>&1
95 checklock=$?
96 case $checklock in
97 0) echo "checklock=$checklock -> setting number" >> $scriptlog 2>&1
98 nr=${i}
99 break;;
100 1) echo "checklock=$checklock -> file exists -> continue" >> $scriptlog 2>&1;;
101 *) echo "checklock=$checklock -> something went completely wrong" >> $scriptlog 2>&1;;
102 esac
103done
104
105case $nr in
106 bla) echo "everything is beeing processed -> exit" >> $scriptlog 2>&1
107 date >> $scriptlog 2>&1
108 exit;;
109 12345678) echo "process nr: "$nr >> $scriptlog 2>&1;;
110esac
111
112
113datasets=(`cat $todofile`)
114
115if [ "$datasets" = "" ]
116then
117 echo "nothing to do -> exit" >> $scriptlog 2>&1
118 rm -v $todofile >> $scriptlog 2>&1
119 rm -v $lockfile >> $scriptlog 2>&1
120 date >> $scriptlog 2>&1
121 exit
122fi
123
124echo "datasets: "${datasets[@]} >> $scriptlog 2>&1
125
126for dataset in ${datasets[@]}
127do
128 no=`printf %08d $dataset | cut -c 0-5`
129 no2=`printf %08d $dataset`
130 outpath="$datapath/ganymed/$no/$no2"
131 echo "outpath: "$outpath >> $scriptlog 2>&1
132 makedir $outpath >> $scriptlog 2>&1
133
134 datasetfile="$datasetpath/$no/dataset$no2.txt"
135 echo "datasetfile: "$datasetfile >> $scriptlog 2>&1
136 wobble=`grep 'WobbleMode:' $datasetfile` >> $scriptlog 2>&1
137 wobble2=`echo $wobble | grep ^\#` >> $scriptlog 2>&1
138 if [ "$wobble2" = "" ]
139 then
140 mode="wobble" >> $scriptlog 2>&1
141 else
142 mode="onoff" >> $scriptlog 2>&1
143 fi
144 ganymedrc=$setuppath/ganymed/ganymed_$mode.rc
145
146 echo "run ganymed..." >> $scriptlog 2>&1
147 ./ganymed -b -q -v4 -f --sum --config=$ganymedrc --log=$outpath/ganymed$no2.log --html=$outpath/ganymed$no2.html --out=$outpath $datasetfile 2>> $scriptlog> /dev/null
148 check1=$?
149
150 case $check1 in
151 0) echo "check1=$check1 -> everthing ok " >> $scriptlog 2>&1
152 echo "-> inserting the status for ganymed for dataset $dataset into the db" >> $scriptlog 2>&1
153 setstatuslogpath=$logpath/setstatus/ganymed/$no
154 makedir $setstatuslogpath >> $scriptlog 2>&1
155 setstatuslog=$setstatuslogpath/setstatus-ganymed-$no2.log
156
157 check4=`root -q -b $macrospath/setstatus.C+\("\"$dataset\""\,"\"$table\""\,"\"$column\""\,"\"Now()\""\) | tee $setstatuslog | grep int | sed -e 's/(int)//'`
158 case $check4 in
159 1) echo "check4=$check4 -> everthing ok, status has been set" >> $scriptlog 2>&1;;
160 *) echo "check4=$check4 -> ERROR -> step could not be set" >> $scriptlog 2>&1;;
161 esac
162 ;;
163 *) echo "check1=$check1 -> ERROR -> step has to be repeated" >> $scriptlog 2>&1;;
164 esac
165done
166
167rm -v $todofile >> $scriptlog 2>&1
168rm -v $lockfile >> $scriptlog 2>&1
169
170set +C
171
172date >> $scriptlog 2>&1
173
Note: See TracBrowser for help on using the repository browser.