source: trunk/MagicSoft/Mars/datacenter/scripts/writesequencefiles@ 6971

Last change on this file since 6971 was 6971, checked in by Daniela Dorner, 19 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
29export ROOTSYS=/opt/root_v3.10.02
30export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$ROOTSYS/lib
31export PATH=$PATH:$ROOTSYS/bin
32
33set -C
34
35mars=/home/operator/Mars
36macrospath=$mars/datacenter/macros
37scriptspath=$mars/datacenter/scripts
38
39table=SequenceProcessStatus
40column=fSequenceFileWritten
41date=NULL
42datetime=`date +%F-%H-%M-%S`
43year=`date +%Y`
44
45todofile=/magic/datacenter/lists/ToDo-$table-$column.txt
46lockpath=/magic/datacenter/locks
47logpath=/magic/datacenter/autologs
48getstatuslogpath=$logpath/getstatus/writesequencefiles/$year
49getstatuslog=$getstatuslogpath/getstatus-writesequencefiles-$datetime.log
50
51scriptlogpath=$logpath/run/writesequencefiles/`date +%Y/%m/%d`
52if [ ! -d $scriptlogpath ]
53then
54 mkdir -pv $scriptlogpath
55 if [ ! -d $scriptlogpath ]
56 then
57 echo "could not make scriptlogpath "$scriptlogpath
58 exit
59 fi
60fi
61
62scriptlog=$scriptlogpath/runwritesequencefiles-$datetime.log
63
64date >> $scriptlog 2>&1
65
66
67if [ ! -d $getstatuslogpath ]
68then
69 mkdir -pv $getstatuslogpath >> $scriptlog 2>&1
70 if [ ! -d $getstatuslogpath ]
71 then
72 echo "could not make getstatuslogpath "$getstatuslogpath >> $scriptlog 2>&1
73 date >> $scriptlog 2>&1
74 exit
75 fi
76fi
77
78cd $mars
79
80date > $lockpath/lock-$table-$column.txt >> $scriptlog 2>&1
81checklock0=$?
82case $checklock0 in
83 0) echo "checklock0=$checklock0 -> continue " >> $scriptlog 2>&1;;
84 1) echo "checklock0=$checklock0 -> file exists " >> $scriptlog 2>&1
85 echo "-> writesequencefiles is running -> exit" >> $scriptlog 2>&1
86 date >> $scriptlog 2>&1
87 exit;;
88 *) echo "checklock0=$checklock0 -> something went completely wrong" >> $scriptlog 2>&1;;
89esac
90
91echo "getting list..." >> $scriptlog 2>&1
92check0=`root -q -b $macrospath/getdolist.C+\("\"$table\""\,"\"$column\""\,"\"$date\""\) | tee $getstatuslog | grep int | sed -e 's/(int)//'`
93
94case $check0 in
95 1) echo "check0=$check0 -> everthing ok -> run writesequencefiles" >> $scriptlog 2>&1;;
96 *) echo "check0=$check0 -> ERROR -> step has to be repeated" >> $scriptlog 2>&1;;
97esac
98
99sequences=(`cat $todofile`)
100
101if [ "$sequences" = "" ]
102then
103 echo "nothing to do -> exit" >> $scriptlog 2>&1
104 rm -v $todofile >> $scriptlog 2>&1
105 rm -v $lockpath/lock-$table-$column.txt >> $scriptlog 2>&1
106 date >> $scriptlog 2>&1
107 exit
108fi
109
110echo "sequences: "${sequences[@]} >> $scriptlog 2>&1
111
112for sequence in ${sequences[@]}
113do
114 no=`printf %08d $sequence | cut -c 4`
115
116 sequencepath=/magic/sequences/$no
117 if [ ! -d $sequencepath ]
118 then
119 mkdir -pv $sequencepath >> $scriptlog 2>&1
120 if [ ! -d $sequencepath ]
121 then
122 echo "could not make sequencepath $sequencepath -> continue " >> $scriptlog 2>&1
123 continue
124 fi
125 fi
126
127 writesequencefilelogpath=$logpath/writesequencefile/`printf %04d $no`
128 echo "writesequencefilelogpath: "$writesequencefilelogpath >> $scriptlog 2>&1
129 if [ ! -d $writesequencefilelogpath ]
130 then
131 mkdir -pv $writesequencefilelogpath >> $scriptlog 2>&1
132 if [ ! -d $writesequencefilelogpath ]
133 then
134 echo "could not make writesequencefilelogpath $writesequencefilelogpath -> continue " >> $scriptlog 2>&1
135 continue
136 fi
137 fi
138
139 echo "write sequencefile for sequence $sequence" >> $scriptlog 2>&1
140 check2=`root -q -b $macrospath/writesequencefile.C+\($sequence\) | tee $writesequencefilelogpath/writesequencefile-$sequence.log | grep int | sed -e 's/(int)//'`
141 case $check2 in
142 1) echo "check2=$check2 -> everthing ok " >> $scriptlog 2>&1
143 echo "-> inserting the status for writesequencefile for sequence $sequence into the db" >> $scriptlog 2>&1
144 setstatuslogpath=$logpath/setstatus/writesequencefile/`printf %04d $no`
145 if [ ! -d $setstatuslogpath ]
146 then
147 mkdir -pv $setstatuslogpath >> $scriptlog 2>&1
148 if [ ! -d $setstatuslogpath ]
149 then
150 echo "could not make setstatuslogpath "$setstatuslogpath >> $scriptlog 2>&1
151 continue
152 fi
153 fi
154 setstatuslog=$setstatuslogpath/setstatus-writesequencefile
155 check4=`root -q -b $macrospath/setstatus.C+\("\"$sequence\""\,"\"$table\""\,"\"$column\""\,"\"Now()\""\) | tee $setstatuslog-$sequence.log | grep int | sed -e 's/(int)//'`
156 case $check4 in
157 1) echo "check4=$check4 -> everthing ok, status has been set" >> $scriptlog 2>&1;;
158 *) echo "check4=$check4 -> ERROR -> step could not be set" >> $scriptlog 2>&1;;
159 esac
160 ;;
161 *) echo "check2=$check2 -> ERROR -> step has to be repeated" >> $scriptlog 2>&1;;
162 esac
163done
164
165rm -v $todofile >> $scriptlog 2>&1
166rm -v $lockpath/lock-$table-$column.txt >> $scriptlog 2>&1
167
168set +C
169
170date >> $scriptlog 2>&1
171
Note: See TracBrowser for help on using the repository browser.