source: trunk/MagicSoft/Mars/datacenter/scripts/runcamera@ 9137

Last change on this file since 9137 was 9129, checked in by Daniela Dorner, 16 years ago
*** empty log message ***
  • Property svn:executable set to *
File size: 4.1 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 05/2007 <mailto:dorner@astro.uni-wuerzburg.de>
21#
22# Copyright: MAGIC Software Development, 2000-2007
23#
24#
25# ========================================================================
26#
27# This script runs the reflector.
28#
29
30source `dirname $0`/sourcefile
31printprocesslog "INFO starting $0"
32program=camera
33column=fCameraFileAvail
34
35set -C
36
37# printing input card to stdout
38function printinputcard()
39{
40 echo $cameraversion
41 echo "ct_num 1"
42 echo "ct_geom 1"
43 echo "qe_file 0 $detectordir/Data/qe-emi-coat.RFL.dat"
44 echo "input_file 0 "$mcpath"/reflector/"$date"/"$outfile
45 echo "data_file $outpath/"`echo $outfile | sed -e 's/rfl/dat/'`
46 echo "root_file $outpath/"`echo $outfile | sed -e 's/rfl/root/'`
47 echo "trigger_prop 3.0 0.25 1.0 2.0"
48 echo "trigger_single 0 4 4 2"
49 echo "nsb_on"
50 echo "nsb_mean 0.178 50"
51 echo "fadc_noise 1.3 2.4 1."
52 echo "sigma_xy_cm_spot "$spotsize
53 echo "mirror_fraction 0 0.73"
54 echo "seeds "$seeds
55 echo "nsb_directory $detectordir/StarLight/inner/"
56 echo "nsb_dir_outer $detectordir/StarLight/outer/"
57 echo "fadc_prop 1 7.8 5.0"
58 echo "fadc_outer 1 3.2 5.0"
59 echo "write_McTrig"
60 echo "write_McFadc"
61 echo "end_file"
62}
63
64
65scriptlog=$runlogpath/run$program-$datetime.log
66date >> $scriptlog 2>&1
67
68# get sequence #
69gettodo >> $scriptlog 2>&1
70run=$process
71
72# lock sequ
73lockfile=$lockpath/lock-$table-$column-$sequence.txt
74checklock >> $scriptlog 2>&1
75
76echo "run $program for run $run..." >> $scriptlog 2>&1
77printprocesslog "INFO starting $program for run $run"
78
79setstatus "start" >> $scriptlog 2>&1
80
81echo "run $program for run $run "
82echo "create input card... "
83
84# get values for inputcard
85query="SELECT fMCRunNumber FROM MCRunData where fMCRunNumber="$run
86reflectorrunno=`sendquery`
87query="SELECT DATE_FORMAT(fRunStart, '%Y/%m/%d') FROM MCReflectorRunData where fReflectorRunNumber="$reflectorrunno
88date=`sendquery`
89query="SELECT fParticleTypeName FROM MCCorsikaRunData "
90query=$query" LEFT JOIN ParticleType ON MCCorsikaRunData.fParticleTypeKEY=ParticleType.fParticleTypeKEY "
91query=$query" LEFT JOIN MCRunData ON MCCorsikaRunData.fCorsikaRunNumber=MCRunData.fCorsikaRunNumber "
92query=$query" WHERE fMCRunNumber="$run
93particle=`sendquery`
94outpath=$mcpath"/"$program"/"$date
95date2=`echo $date | sed -e 's/\///g'`
96outfile=$date2"_"`printf %06d $reflectorrunno`"_"$particle".rfl"
97query="SELECT fAdditionalSpotSize FROM MCRunData where fMCRunNumber="$run
98spotsize=`sendquery`
99query="SELECT fCameraSeed, fCameraSeed+1 FROM MCRunData where fMCRunNumber="$run
100seeds=`sendquery`
101
102echo "" >> $scriptlog 2>&1
103echo "INPUTCARD:" >> $scriptlog 2>&1
104echo "----------" >> $scriptlog 2>&1
105echo "" >> $scriptlog 2>&1
106echo "" >> $scriptlog 2>&1
107printinputcard >> $scriptlog 2>&1
108
109logfile=$outpath/$program"-"`printf %06d $run`".log"
110makedir $outpath >> $scriptlog 2>&1
111
112cd $detectordir/Camera
113
114echo "INPUTCARD:" >> $logfile 2>&1
115printinputcard >> $logfile 2>&1
116echo "" >> $logfile 2>&1
117echo "" >> $logfile 2>&1
118printinputcard | ./camera
119
120check1=$?
121
122case $check1 in
123 0) echo " check1=$check1 -> everything ok " >> $scriptlog 2>&1
124 printprocesslog "INFO $program finished successfully for sequence $sequence"
125 ;;
126 *) echo " check1=$check1 -> ERROR -> step has to be repeated" >> $scriptlog 2>&1
127 printprocesslog "ERROR $program failed for sequence $sequence"
128 com=$Freflector
129 check=$check1
130 ;;
131esac
132
133setstatus "stop" >> $scriptlog 2>&1
134
135finish >> $scriptlog 2>&1
136
Note: See TracBrowser for help on using the repository browser.