source: trunk/Mars/datacenter/scripts/runcamera@ 10625

Last change on this file since 10625 was 9355, checked in by Daniela Dorner, 16 years ago
*** empty log message ***
  • Property svn:executable set to *
File size: 3.6 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-2008
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"/"$infile
45 echo "data_file $outpath/"`echo $infile | sed -e 's/rfl/dat/'`
46 echo "root_file $outpath/"`echo $infile | 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
65# get sequence #
66gettodo
67run=$process
68
69# lock sequ
70lockfile=$lockpath/lock-$table-$column-$sequence.txt
71checklock
72
73printprocesslog "INFO starting $program for run $run"
74
75setstatus "start"
76
77printprocesslog "INFO create input card... "
78
79# get values for inputcard
80query="SELECT fMCRunNumber FROM MCRunData where fMCRunNumber="$run
81reflectorrunno=`sendquery`
82query="SELECT DATE_FORMAT(fRunStart, '%Y/%m/%d') FROM MCReflectorRunData where fReflectorRunNumber="$reflectorrunno
83date=`sendquery`
84query="SELECT fParticleTypeName FROM MCCorsikaRunData "
85query=$query" LEFT JOIN ParticleType ON MCCorsikaRunData.fParticleTypeKEY=ParticleType.fParticleTypeKEY "
86query=$query" LEFT JOIN MCRunData ON MCCorsikaRunData.fCorsikaRunNumber=MCRunData.fCorsikaRunNumber "
87query=$query" WHERE fMCRunNumber="$run
88particle=`sendquery`
89outpath=$mcpath"/"$program"/"$date
90date2=`echo $date | sed -e 's/\///g'`
91infile=$date2"_"`printf %06d $reflectorrunno`"_"$particle".rfl"
92query="SELECT fAdditionalSpotSize FROM MCRunData where fMCRunNumber="$run
93spotsize=`sendquery`
94query="SELECT fCameraSeed, fCameraSeed+1 FROM MCRunData where fMCRunNumber="$run
95seeds=`sendquery`
96
97logfile=$outpath/$program"-"`printf %06d $run`".log"
98makedir $outpath
99
100cd $detectordir/Camera
101
102echo "INPUTCARD:" >| $logfile 2>&1
103printinputcard >> $logfile 2>&1
104echo "" >> $logfile 2>&1
105echo "" >> $logfile 2>&1
106printinputcard | ./camera >> $logfile 2>&1
107
108check1=$?
109
110case $check1 in
111 0) printprocesslog "INFO $program finished successfully for sequence $sequence (check1=$check1)"
112 ;;
113 *) printprocesslog "ERROR $program failed for sequence $sequence (check1=$check1)"
114 com=$Fcamera
115 check=$check1
116 ;;
117esac
118
119setstatus "stop"
120
121finish
122
Note: See TracBrowser for help on using the repository browser.