source: trunk/MagicSoft/Mars/datacenter/scripts/correcttime@ 7914

Last change on this file since 7914 was 7911, checked in by Daniela Dorner, 19 years ago
*** empty log message ***
  • Property svn:executable set to *
File size: 2.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-2006
23#
24#
25# ========================================================================
26#
27# This script runs the timing correction for all run, that need the timing
28# correction
29#
30# After checking if the script is already running the todolist is written.
31# Then for each run the timing correction is done
32# If this was successful, the status is inserted into the database using
33# the macro setstatus.C
34#
35# This script was needed for the data between 06/2004 and 02/2005 (including
36# this months).
37#
38
39program=correct_raw_time
40source `dirname $0`/sourcefile
41
42column=fTimingCorrection
43
44lockfile=$lockpath/lock-$program.txt
45
46if [ -e $todofile ]
47then
48 echo "$program is already running -> exit"
49 exit
50fi
51
52# get todo list
53gettodo >> $scriptlog 2>&1
54
55# retrieving runs from todo file
56runs=(`cat $listpath/ToDo-$table-$column.txt`)
57if [ "$runs" = "" ]
58then
59 echo "nothing to do -> exit"
60 finish >> $scriptlog 2>&1
61fi
62
63cd $mars
64
65echo "runs: "${runs[@]}
66for run in ${runs[@]}
67do
68 no=`printf %08d $run | cut -c 1-5`
69 var1=$no
70 var2=$run
71 echo "getting path for run $run ... "
72 infile=`find $datapath/rawfiles-wrong-timing/ -name *${run}_[D,C,P,S]_*`
73 echo "infile:"$infile
74 outfile=`echo $infile | sed -e 's/-wrong-timing//g'`
75 echo "outfile:"$outfile
76 outpath=`dirname $outfile`
77 echo "outpath:"$outpath
78 makedir $outpath
79
80 timecorrpath=$outpath"/timecorrlogs"
81 echo "timecorrpath: "$timecorrpath
82 makedir $timecorrpath
83
84 check1=0
85 echo "run $program..." >> $scriptlog 2>&1
86 setstatus "start" >> $scriptlog 2>&1
87
88 /home/tape/MagicReadout/correct_raw_time $infile $outfile > $timecorrpath/$program-$run.log
89 check1=$?
90
91 case $check1 in
92 1) echo "check1=$check1 -> everything ok -> setting status..." >> $scriptlog 2>&1 ;;
93 *) echo "check1=$check1 -> ERROR -> step has to be repeated" >> $scriptlog 2>&1
94 com=$Ftimecorr
95 check=$check1
96 ;;
97 esac
98 echo "inserting the status for $program for run $run into the db" >> $scriptlog 2>&1
99 setstatus "stop" >> $scriptlog 2>&1
100done
101
102finish >> $scriptlog 2>&1
103
Note: See TracBrowser for help on using the repository browser.