source: trunk/MagicSoft/Mars/datacenter/scripts/makecallistolinks@ 9312

Last change on this file since 9312 was 9107, checked in by snruegam, 16 years ago
*** empty log message ***
  • Property svn:executable set to *
File size: 3.3 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-2007
23#
24#
25# ========================================================================
26#
27# This script links a special callisto.rc for data, for which the
28# calibration with the standard callisto.rc failes.
29#
30# The sequences with failing calibration are searched by searching for the
31# reason of failure in the callisto.log Then the special callisto.rc is
32# linked to the directory of the sequence.
33#
34
35source `dirname $0`/sourcefile
36printprocesslog "INFO starting $0"
37program=makecallistolinks
38column=fCallisto
39table=SequenceProcessStatus
40
41set -C
42
43scriptlog=$runlogpath/$program`date +%F`.log
44date >> $scriptlog 2>&1
45
46# check if script is already running
47lockfile=$lockpath/lock-$program.txt
48checklock >> $scriptlog 2>&1
49
50callistorcseq=callisto.rc
51callistorcnew=callisto_Dec04Jan05.rc
52
53# query failed callistos (returncode 13) from DB
54query="SELECT fSequenceFirst, fTelescopeNumber from SequenceProcessStatus where fReturnCode=13 and fProgramId=14 and fSequenceFirst<200000"
55primaries=( `sendquery` )
56if [ ${#primaries[@]} -eq 0 ]
57then
58 echo "nothing to do -> exit" >> $scriptlog 2>&1
59 finish >> $scriptlog 2>&1
60fi
61num=`expr ${#primaries[@]} / 2 `
62
63cd $mars
64
65printprocesslog "INFO linking callisto.rc files"
66for (( s=0 ; s < $num ; s++ ))
67do
68 sequence=${primaries[$s+$s]}
69 telnum=${primaries[$s+$s+1]}
70 callistorc=$datapath/callisto/`printf %08d $sequence | cut -c 0-4`/`printf %08d $sequence`/$callistorcseq
71 if ! ls -l $callistorc 2>/dev/null | grep $callistorcnew >> $scriptlog 2>&1
72 then
73 printprocesslog "INFO linking $callistorcnew to $callistorc for sequ $sequence"
74 # resetting the calibration
75 echo "resetting the callisto for sequence $sequence" >> $scriptlog 2>&1
76
77 query="UPDATE SequenceProcessStatus set fStartTime=NULL, fFailedTime=NULL, fProgramId=NULL, fReturnCode=NULL where fSequenceFirst=$sequence and fTelescopeNumber=$telnum"
78 if ! sendquery >> $scriptlog 2>&1
79 then
80 printprocesslog "ERROR resetting calibration failed for sequence $sequence"
81 continue
82 else
83 printprocesslog "INFO resetted calibration successfully for sequence $sequence"
84 fi
85
86 #linking callisto.rc
87 if ln -vfs $setuppath/callisto/$callistorcnew $callistorc >> $scriptlog 2>&1
88 then
89 printprocesslog "INFO link callisto.rc successfully for sequence $sequence"
90 else
91 printprocesslog "ERROR linking callisto.rc failed for sequence $sequence"
92 fi
93
94 fi
95done
96
97finish >> $scriptlog 2>&1
98
Note: See TracBrowser for help on using the repository browser.