source: trunk/MagicSoft/Mars/datacenter/scripts/fillstar@ 7213

Last change on this file since 7213 was 7213, checked in by Daniela Dorner, 19 years ago
*** empty log message ***
  • Property svn:executable set to *
File size: 5.0 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=SequenceProcessStatus
35column=fFillStar
36date=NULL
37datetime=`date +%F-%H-%M-%S`
38year=`date +%Y`
39
40todofile=$listpath/ToDo-$table-$column.txt
41getstatuslogpath=$logpath/getstatus/fillstar/$year
42getstatuslog=$getstatuslogpath/getstatus-fillstar-$datetime.log
43
44scriptlogpath=$logpath/run/fillstar/`date +%Y/%m/%d`
45if [ ! -d $scriptlogpath ]
46then
47 mkdir -pv $scriptlogpath
48 if [ ! -d $scriptlogpath ]
49 then
50 echo "could not make scriptlogpath "$scriptlogpath
51 exit
52 fi
53fi
54
55scriptlog=$scriptlogpath/runfillstar-$datetime.log
56
57date >> $scriptlog 2>&1
58
59
60if [ ! -d $getstatuslogpath ]
61then
62 mkdir -pv $getstatuslogpath >> $scriptlog 2>&1
63 if [ ! -d $getstatuslogpath ]
64 then
65 echo "could not make getstatuslogpath "$getstatuslogpath >> $scriptlog 2>&1
66 date >> $scriptlog 2>&1
67 exit
68 fi
69fi
70
71cd $mars
72
73date > $lockpath/lock-$table-$column.txt >> $scriptlog 2>&1
74checklock0=$?
75case $checklock0 in
76 0) echo "checklock0=$checklock0 -> continue " >> $scriptlog 2>&1;;
77 1) echo "checklock0=$checklock0 -> file exists " >> $scriptlog 2>&1
78 echo "-> fillstar is running -> exit" >> $scriptlog 2>&1
79 date >> $scriptlog 2>&1
80 exit;;
81 *) echo "checklock0=$checklock0 -> something went completely wrong" >> $scriptlog 2>&1;;
82esac
83
84echo "getting list..." >> $scriptlog 2>&1
85check0=`root -q -b $macrospath/getdolist.C+\("\"$table\""\,"\"$column\""\,"\"$date\""\) | tee $getstatuslog | grep int | sed -e 's/(int)//'`
86
87case $check0 in
88 1) echo "check0=$check0 -> everthing ok -> run fillstar" >> $scriptlog 2>&1;;
89 *) echo "check0=$check0 -> ERROR -> step has to be repeated" >> $scriptlog 2>&1;;
90esac
91
92sequences=(`cat $todofile`)
93
94if [ "$sequences" = "" ]
95then
96 echo "nothing to do -> exit" >> $scriptlog 2>&1
97 rm -v $todofile >> $scriptlog 2>&1
98 rm -v $lockpath/lock-$table-$column.txt >> $scriptlog 2>&1
99 date >> $scriptlog 2>&1
100 exit
101fi
102
103echo "sequences: "${sequences[@]} >> $scriptlog 2>&1
104
105for sequence in ${sequences[@]}
106do
107 no=`printf %08d $sequence | cut -c 0-4`
108 no2=`printf %08d $sequence`
109 path="$datapath/star/$no/$no2"
110 starfile=$path/star$no2.root
111 fillstarlogpath=$logpath/fillstar/$no
112 echo "fillstarlogpath: "$fillstarlogpath >> $scriptlog 2>&1
113 if [ ! -d $fillstarlogpath ]
114 then
115 mkdir -pv $fillstarlogpath >> $scriptlog 2>&1
116 if [ ! -d $fillstarlogpath ]
117 then
118 echo "could not make fillstarlogpath $fillstarlogpath -> continue " >> $scriptlog 2>&1
119 continue
120 fi
121 fi
122 fillstarlog=$fillstarlogpath/fillstar-$sequence.log
123
124 echo "run fillstar for sequence $sequence" >> $scriptlog 2>&1
125 check2=`root -q -b $macrospath/fillstar.C+\("\"$starfile\""\,kFALSE\) | tee $fillstarlog | grep int | sed -e 's/(int)//'`
126 case $check2 in
127 1) echo "check2=$check2 -> everthing ok " >> $scriptlog 2>&1
128 echo "-> inserting the status for fillstar for sequence $sequence into the db" >> $scriptlog 2>&1
129 setstatuslogpath=$logpath/setstatus/fillstar/$no
130 if [ ! -d $setstatuslogpath ]
131 then
132 mkdir -pv $setstatuslogpath >> $scriptlog 2>&1
133 if [ ! -d $setstatuslogpath ]
134 then
135 echo "could not make setstatuslogpath "$setstatuslogpath >> $scriptlog 2>&1
136 continue
137 fi
138 fi
139 setstatuslog=$setstatuslogpath/setstatus-fillstar-$no2.log
140 check4=`root -q -b $macrospath/setstatus.C+\("\"$sequence\""\,"\"$table\""\,"\"$column\""\,"\"Now()\""\) | tee $setstatuslog | grep int | sed -e 's/(int)//'`
141 case $check4 in
142 1) echo "check4=$check4 -> everthing ok, status has been set" >> $scriptlog 2>&1;;
143 *) echo "check4=$check4 -> ERROR -> step could not be set" >> $scriptlog 2>&1;;
144 esac
145 ;;
146 *) echo "check2=$check2 -> ERROR -> step has to be repeated" >> $scriptlog 2>&1;;
147 esac
148done
149
150rm -v $todofile >> $scriptlog 2>&1
151rm -v $lockpath/lock-$table-$column.txt >> $scriptlog 2>&1
152
153set +C
154
155date >> $scriptlog 2>&1
156
Note: See TracBrowser for help on using the repository browser.