source: trunk/MagicSoft/Mars/datacenter/scripts/fillganymed@ 7413

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