source: trunk/MagicSoft/Mars/datacenter/scripts/doexclusions@ 7323

Last change on this file since 7323 was 7265, checked in by Daniela Dorner, 19 years ago
*** empty log message ***
  • Property svn:executable set to *
File size: 3.9 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
34cd $mars
35
36table=SequenceBuildStatus
37column=fExclusionsDone
38date=NULL
39datetime=`date +%F-%H-%M-%S`
40year=`date +%Y`
41
42todofile=$listpath/ToDo-$table-$column.txt
43getstatuslogpath=$logpath/getstatus/doexclusions/$year
44getstatuslog=$getstatuslogpath/getstatus-doexclusions-$datetime.log
45
46scriptlogpath=$logpath/run/doexclusions/`date +%Y/%m`
47makedir $scriptlogpath
48
49scriptlog=$scriptlogpath/doexclusions-$datetime.log
50
51date >> $scriptlog 2>&1
52
53makedir $getstatuslogpath >> $scriptlog 2>&1
54
55date > $lockpath/lock-doexclusions.txt >> $scriptlog 2>&1
56checklock0=$?
57case $checklock0 in
58 0) echo "checklock0=$checklock0 -> continue " >> $scriptlog 2>&1;;
59 1) echo "checklock0=$checklock0 -> file exists " >> $scriptlog 2>&1
60 echo "-> getting list for doexclusions is running -> exit" >> $scriptlog 2>&1
61 date >> $scriptlog 2>&1
62 exit;;
63 *) echo "checklock0=$checklock0 -> something went completely wrong" >> $scriptlog 2>&1;;
64esac
65
66
67echo "getting list..." >> $scriptlog 2>&1
68check0=`root -q -b $macrospath/getdolist.C+\("\"$table\""\,"\"$column\""\,"\"$date\""\,"\"$listpath\""\) | tee $getstatuslog | grep int | sed -e 's/(int)//'`
69
70case $check0 in
71 1) echo "check0=$check0 -> everything ok -> do step" >> $scriptlog 2>&1;;
72 *) echo "check0=$check0 -> ERROR -> step has to be repeated" >> $scriptlog 2>&1;;
73esac
74
75dates=(`cat $todofile`)
76
77if [ "$dates" = "" ]
78then
79 echo "nothing to do -> exit" >> $scriptlog 2>&1
80 rm -v $todofile >> $scriptlog 2>&1
81 rm -v $lockpath/lock-doexclusions.txt >> $scriptlog 2>&1
82 date >> $scriptlog 2>&1
83 exit
84fi
85
86echo "dates: "${dates[@]} >> $scriptlog 2>&1
87
88for date in ${dates[@]}
89do
90 echo "do exclusions for date "$date >> $scriptlog 2>&1
91 year2=`echo $date | cut -c 1-4`
92 doexclusionspath=$logpath/doexclusions/$year2
93 makedir $doexclusionspath >> $scriptlog 2>&1
94
95 check1=`root -q -b $macrospath/doexclusions.C+\("\"$date\""\) | tee $doexclusionspath/doexclusions-$date.log | grep int | sed -e 's/(int)//'`
96
97 case $check1 in
98 1) echo "check1=$check1 -> everything ok -> setting status..." >> $scriptlog 2>&1
99 setstatuslogpath=$logpath/setstatus/doexclusions/$year2
100 makedir $setstatuslogpath >> $scriptlog 2>&1
101
102 check2=`root -q -b $macrospath/setstatus.C+\("\"$date\""\,"\"$table\""\,"\"$column\""\,"\"Now()\""\) | tee $setstatuslogpath/setstatus-doexclusions-$date.log | grep int | sed -e 's/(int)//'`
103
104 case $check2 in
105 1) echo "check2=$check2 -> everything ok, status has been set" >> $scriptlog 2>&1 ;;
106 *) echo "check2=$check2 -> ERROR -> step could not be set" >> $scriptlog 2>&1 ;;
107 esac
108 ;;
109 *) echo "check1=$check1 -> ERROR -> step has to be repeated" >> $scriptlog 2>&1 ;;
110 esac
111done
112
113rm -v $todofile >> $scriptlog 2>&1
114rm -v $lockpath/lock-doexclusions.txt >> $scriptlog 2>&1
115
116set +C
117
118date >> $scriptlog 2>&1
119
Note: See TracBrowser for help on using the repository browser.