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

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