| 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 |  | 
|---|
| 30 | source `dirname $0`/sourcefile | 
|---|
| 31 | printprocesslog "INFO starting $0" | 
|---|
| 32 | program=camera | 
|---|
| 33 | column=fCameraFileAvail | 
|---|
| 34 | detectordir=/home/msmeyer/MC/MagicSoft/Simulation/Detector | 
|---|
| 35 |  | 
|---|
| 36 | set -C | 
|---|
| 37 |  | 
|---|
| 38 | # printing input card to stdout | 
|---|
| 39 | function 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 |  | 
|---|
| 66 | scriptlog=$runlogpath/run$program-$datetime.log | 
|---|
| 67 | date >> $scriptlog 2>&1 | 
|---|
| 68 |  | 
|---|
| 69 | # get sequence # | 
|---|
| 70 | gettodo >> $scriptlog 2>&1 | 
|---|
| 71 | run=$process | 
|---|
| 72 |  | 
|---|
| 73 | # lock sequ | 
|---|
| 74 | lockfile=$lockpath/lock-$table-$column-$sequence.txt | 
|---|
| 75 | checklock >> $scriptlog 2>&1 | 
|---|
| 76 |  | 
|---|
| 77 | echo "run $program for run $run..." >> $scriptlog 2>&1 | 
|---|
| 78 | printprocesslog "INFO starting $program for run $run" | 
|---|
| 79 |  | 
|---|
| 80 | primvar=$run | 
|---|
| 81 | setstatus "start" >> $scriptlog 2>&1 | 
|---|
| 82 |  | 
|---|
| 83 | echo "run $program for run $run " | 
|---|
| 84 | echo "create input card... " | 
|---|
| 85 |  | 
|---|
| 86 | # get values for inputcard | 
|---|
| 87 | query="SELECT fMCRunNumber FROM MCRunData where fMCRunNumber="$run | 
|---|
| 88 | reflectorrunno=`sendquery` | 
|---|
| 89 | query="SELECT DATE_FORMAT(fRunStart, '%Y/%m/%d') FROM MCReflectorRunData where fReflectorRunNumber="$reflectorrunno | 
|---|
| 90 | date=`sendquery` | 
|---|
| 91 | query="SELECT fParticleTypeName FROM MCCorsikaRunData " | 
|---|
| 92 | query=$query" LEFT JOIN ParticleType ON MCCorsikaRunData.fParticleTypeKEY=ParticleType.fParticleTypeKEY " | 
|---|
| 93 | query=$query" LEFT JOIN MCRunData ON MCCorsikaRunData.fCorsikaRunNumber=MCRunData.fCorsikaRunNumber " | 
|---|
| 94 | query=$query" WHERE fMCRunNumber="$run | 
|---|
| 95 | particle=`sendquery` | 
|---|
| 96 | outpath=$mcpath"/"$program"/"$date | 
|---|
| 97 | date2=`echo $date | sed -e 's/\///g'` | 
|---|
| 98 | outfile=$date2"_"`printf %06d $reflectorrunno`"_"$particle".rfl" | 
|---|
| 99 | query="SELECT fAdditionalSpotSize FROM MCRunData where fMCRunNumber="$run | 
|---|
| 100 | spotsize=`sendquery` | 
|---|
| 101 | query="SELECT fCameraSeed, fCameraSeed+1 FROM MCRunData where fMCRunNumber="$run | 
|---|
| 102 | seeds=`sendquery` | 
|---|
| 103 |  | 
|---|
| 104 | echo "" >> $scriptlog 2>&1 | 
|---|
| 105 | echo "INPUTCARD:" >> $scriptlog 2>&1 | 
|---|
| 106 | echo "----------" >> $scriptlog 2>&1 | 
|---|
| 107 | echo "" >> $scriptlog 2>&1 | 
|---|
| 108 | echo "" >> $scriptlog 2>&1 | 
|---|
| 109 | printinputcard >> $scriptlog 2>&1 | 
|---|
| 110 |  | 
|---|
| 111 | logfile=$outpath/$program"-"`printf %06d $run`".log" | 
|---|
| 112 | makedir $outpath >> $scriptlog 2>&1 | 
|---|
| 113 |  | 
|---|
| 114 | cd $detectordir/Camera | 
|---|
| 115 |  | 
|---|
| 116 | echo "INPUTCARD:" >> $logfile 2>&1 | 
|---|
| 117 | printinputcard >> $logfile 2>&1 | 
|---|
| 118 | echo "" >> $logfile 2>&1 | 
|---|
| 119 | echo "" >> $logfile 2>&1 | 
|---|
| 120 | printinputcard | ./camera | 
|---|
| 121 |  | 
|---|
| 122 | check1=$? | 
|---|
| 123 |  | 
|---|
| 124 | case $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 | ;; | 
|---|
| 133 | esac | 
|---|
| 134 |  | 
|---|
| 135 | setstatus "stop" >> $scriptlog 2>&1 | 
|---|
| 136 |  | 
|---|
| 137 | finish >> $scriptlog 2>&1 | 
|---|
| 138 |  | 
|---|