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

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