source: trunk/MagicSoft/Mars/datacenter/scripts/checkstardone@ 7212

Last change on this file since 7212 was 7140, checked in by Daniela Dorner, 21 years ago
*** empty log message ***
  • Property svn:executable set to *
File size: 4.8 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
29source /home/operator/Mars/datacenter/scripts/sourcefile
30
31table=DataSetProcessStatus
32column=fStarFilesAvail
33date=NULL
34datetime=`date +%F-%H-%M-%S`
35year=`date +%Y`
36
37todofile=$listpath/ToDo-$table-$column.txt
38getstatuslogpath=$logpath/getstatus/checkstardone/$year
39getstatuslog=$getstatuslogpath/getstatus-$table-$column-$datetime.log
40
41scriptlogpath=$logpath/run/checkstardone/`date +%Y/%m/%d`
42if [ ! -d $scriptlogpath ]
43then
44 mkdir -pv $scriptlogpath
45 if [ ! -d $scriptlogpath ]
46 then
47 echo "could not make scriptlogpath "$scriptlogpath
48 exit
49 fi
50fi
51
52scriptlog=$scriptlogpath/checkstardone-$datetime.log
53
54date >> $scriptlog 2>&1
55
56if [ ! -d $getstatuslogpath ]
57then
58 mkdir -pv $getstatuslogpath >> $scriptlog 2>&1
59 if [ ! -d $getstatuslogpath ]
60 then
61 echo "could not make getstatuslogpath "$getstatuslogpath >> $scriptlog 2>&1
62 exit
63 fi
64fi
65
66cd $mars
67
68
69if [ -e $todofile ]
70then
71 echo "checkstardone is already running -> exit" >> $scriptlog 2>&1
72 exit
73fi
74
75echo "getting list..." >> $scriptlog 2>&1
76check0=`root -q -b $macrospath/getdolist.C+\("\"$table\""\,"\"$column\""\,"\"$date\""\) | tee $getstatuslog | grep int | sed -e 's/(int)//'`
77
78case $check0 in
79 1) echo "check0=$check0 -> everthing ok -> do step" >> $scriptlog 2>&1 ;;
80 *) echo "check0=$check0 -> ERROR -> step has to be repeated" >> $scriptlog 2>&1 ;;
81esac
82
83datasets=(`cat $todofile`)
84
85if [ "$datasets" = "" ]
86then
87 echo "nothing to do -> exit" >> $scriptlog 2>&1
88 rm -v $todofile >> $scriptlog 2>&1
89 rm -v $lockpath/lock-$table-$column.txt >> $scriptlog 2>&1
90 date >> $scriptlog 2>&1
91 exit
92fi
93
94echo "datasets: "${datasets[@]} #>> $scriptlog 2>&1
95
96for dataset in ${datasets[@]}
97do
98 no=`printf %08d $dataset | cut -c 0-5`
99 echo "checking files for dataset $dataset..." >> $scriptlog 2>&1
100 datasetfile=/magic/datasets/$no/dataset`printf %08d $dataset`.txt
101 sequences=(`cat $datasetfile | grep Sequences | sed -e 's/SequencesOn://g' | sed -e 's/SequencesOff://g'`)
102
103 if [ "$sequences" = "" ]
104 then
105 echo "no sequences found" >> $scriptlog 2>&1
106 echo "continue with next dataset" >> $scriptlog 2>&1
107 continue
108 fi
109
110 echo "sequences: "${sequences[@]} >> $scriptlog 2>&1
111
112 outpath=$logpath/checkstardone/$no
113 echo "outpath: "$outpath >> $scriptlog 2>&1
114 if [ ! -d $outpath ]
115 then
116 mkdir -pv $outpath >> $scriptlog 2>&1
117 if [ ! -d $outpath ]
118 then
119 echo "could not make outpath $outpath -> continue " >> $scriptlog 2>&1
120 continue
121 fi
122 fi
123
124 for sequence in ${sequences[@]}
125 do
126 check1=`root -q -b $macrospath/checkstardone.C+\(\""$sequence\""\) | tee $outpath/checkstardone-$sequence.log | grep int | sed -e 's/(int)//'`
127
128 case $check1 in
129 1) echo "check1=$check1 -> everthing ok -> continue with next sequence..." >> $scriptlog 2>&1 ;;
130 *) echo "check1=$check1 -> ERROR " >> $scriptlog 2>&1
131 echo "starfiles not available for sequence -> continue" >> $scriptlog 2>&1
132 continue 2
133 ;;
134 esac
135 done
136
137 setstatuslogpath=$logpath/setstatus/checkstardone/$no
138 if [ ! -d $setstatuslogpath ]
139 then
140 mkdir -pv $setstatuslogpath >> $scriptlog 2>&1
141 if [ ! -d $setstatuslogpath ]
142 then
143 echo "could not make setstatuslogpath "$setstatuslogpath >> $scriptlog 2>&1
144 continue
145 fi
146 fi
147 check2=`root -q -b $macrospath/setstatus.C+\("\"$dataset\""\,"\"$table\""\,"\"$column\""\,"\"Now()\""\) | tee $setstatuslogpath/setstatus-checkstardone-$dataset.log | grep int | sed -e 's/(int)//'`
148 case $check2 in
149 1) echo "check2=$check2 -> everthing ok, status has been set" >> $scriptlog 2>&1 ;;
150 *) echo "check2=$check2 -> ERROR -> step could not be set" >> $scriptlog 2>&1 ;;
151 esac
152done
153
154rm -v $todofile >> $scriptlog 2>&1
155rm -v $lockpath/lock-$table-$column.txt >> $scriptlog 2>&1
156
157date >> $scriptlog 2>&1
158
Note: See TracBrowser for help on using the repository browser.