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

Last change on this file since 7835 was 7835, checked in by Daniela Dorner, 18 years ago
*** empty log message ***
  • Property svn:executable set to *
File size: 4.0 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-2006
23#
24#
25# ========================================================================
26#
27# This script launches the checking of the availability of the files for
28# the datasets.
29#
30# After checking, if the script is already running, the todolist is
31# written by using the macro getdolist.C
32# Then for each dataset the sequences are extracted from the datasetfile
33# and for each sequence the availability of the star files checked by using
34# the macro checkstardone.C
35# If this was successful, the status is inserted into the database using
36# the macro setstatus.C
37#
38
39program=checkstardone
40source /home/`whoami`/Mars/datacenter/scripts/sourcefile
41
42table=DataSetProcessStatus
43column=fStarFilesAvail
44
45todofile=$listpath/ToDo-$table-$column.txt
46lockfile=$lockpath/lock-$program.txt
47
48scriptlogpath=$logpath/run/$program/`date +%Y/%m/%d`
49makedir $scriptlogpath
50scriptlog=$scriptlogpath/$program-$datetime.log
51
52date >> $scriptlog 2>&1
53
54cd $mars
55
56# check if script is already running
57checklock >> $scriptlog 2>&1
58
59# get todo list
60getdolist >> $scriptlog 2>&1
61
62datasets=(`cat $todofile`)
63if [ "$datasets" = "" ]
64then
65 echo "nothing to do -> exit" >> $scriptlog 2>&1
66 finish >> $scriptlog 2>&1
67fi
68
69echo "datasets: "${datasets[@]} #>> $scriptlog 2>&1
70for dataset in ${datasets[@]}
71do
72 no=`printf %08d $dataset | cut -c 0-5`
73 var1=$no
74 var2=$dataset
75 echo "checking files for dataset $dataset..." >> $scriptlog 2>&1
76 datasetfile=$datasetpath/$no/dataset`printf %08d $dataset`.txt
77 sequences=(`cat $datasetfile | grep Sequences | sed -e 's/SequencesOn://g' | sed -e 's/SequencesOff://g'`)
78
79 if [ "$sequences" = "" ]
80 then
81 echo "no sequences found" >> $scriptlog 2>&1
82 echo "continue with next dataset" >> $scriptlog 2>&1
83 continue
84 fi
85
86 echo "sequences: "${sequences[@]} >> $scriptlog 2>&1
87
88 outpath=$logpath/$program/$no
89 echo "outpath: "$outpath >> $scriptlog 2>&1
90 makedir $outpath >> $scriptlog 2>&1
91
92 echo "run $program..." >> $scriptlog 2>&1
93 setstatus "start" >> $scriptlog 2>&1
94
95 for sequence in ${sequences[@]}
96 do
97
98 check1=`root -q -b $macrospath/checkstardone.C+\(\""$sequence\""\) | tee $outpath/checkstardone-$sequence.log | grep int | sed -e 's/(int)//'`
99
100 case $check1 in
101 1) echo "check1=$check1 -> everything ok -> continue with next sequence..." >> $scriptlog 2>&1 ;;
102 2) echo "check1=$check1 -> files for sequence $sequence not yet available -> continue..." >> $scriptlog 2>&1
103 check="no"
104 break
105 ;;
106 0) echo "check1=$check1 -> no connection to db -> continue..." >> $scriptlog 2>&1
107 check="no"
108 break
109 ;;
110 *) echo "check1=$check1 -> ERROR " >> $scriptlog 2>&1
111 echo "starfiles not available for sequence -> continue" >> $scriptlog 2>&1
112 com=$Fstardone
113 comadd=$sequence
114 check=$check1
115 break
116 ;;
117 esac
118 done
119
120 echo "inserting the status for $program for dataset $dataset into the db" >> $scriptlog 2>&1
121 setstatus "stop" >> $scriptlog 2>&1
122done
123
124finish >> $scriptlog 2>&1
125
Note: See TracBrowser for help on using the repository browser.