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

Last change on this file since 9312 was 9301, checked in by tbretz, 16 years ago
*** empty log message ***
  • Property svn:executable set to *
File size: 6.5 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 corsika.
28#
29
30source `dirname $0`/sourcefile
31printprocesslog "INFO starting $0"
32program=corsika
33column=fCorsikaFileAvail
34
35set -C
36
37export FLUPRO=$corsikapath'/fluka2008_3'
38
39# printing input card to stdout
40function printinputcard()
41{
42 # Run number
43 echo "RUNNR "$corsikarunno
44 # Starting event number
45 echo "EVTNR 1"
46 # Number of simulated events
47 echo "NSHOW "$numevts
48 # Seed values for simulation
49 echo "SEED "$seed1" 0 0 "
50 echo "SEED "$seed2" 0 0 "
51 echo "SEED "$seed3" 0 0 "
52 # Primary particle
53 echo "PRMPAR "$primparticle
54 echo "ERANGE "$erange
55 echo "ESLOPE "$slope
56 # Simulation range (theta, phi, view cone, starting altitude)
57 echo "THETAP "$zdrange
58 echo "PHIP "$azrange
59 echo "VIEWCONE 0. "$viewconemax
60 echo "FIXCHI "$startalt
61 # Observation level, magnetic field, atmosphere
62 echo "OBSLEV 2200.E2"
63 # From www.noaa.gov/geomagmodels roughly for January 2009. (was 29.5 and 23.0)
64 # MAGNET BX BZ (BX is the horizontal component (muT) to the x-direction of
65 # the detector, BZ is the vertical component (muT) downwards)
66 echo "MAGNET 30.3 24.1"
67 # Atmosphere
68 echo "ATMOSPHERE 11 T"
69 # Other parameters
70 echo "RADNKG 200.E2"
71 echo "ECUTS 0.3 0.3 0.02 0.02"
72 echo "ECTMAP 1.E4"
73 echo "STEPFC 0.1"
74 # Don't add muon particle data to output
75 echo "MUADDI F"
76 # Enable muon multiple scattering
77 echo "MUMULT T"
78 # Cherenkov telescope options
79 echo "CWAVLG 290. 600."
80 echo "CSCAT "$reuse" 0. "$impactmax
81 echo "CERSIZ 1."
82 echo "CERFIL T"
83 echo "CERTEL 1"
84 echo " 0. 0. 0. 0. 0. "$diameter" 1700."
85 # How the longitudinal shower development is sampled
86 # echo "LONGI T 10. T F"
87 echo "LONGI F 20 0 F F"
88 # Maximum number of detailed particles to print
89 echo "MAXPRT 0"
90 # Suppress file with partciles reaching ground (DATnnnnnn)
91 echo "PAROUT F F"
92 # Don't write a database file
93 echo "DATBAS F"
94 # Switch off all debugging output
95 echo "DEBUG F 6 F 1000000"
96 # Output path
97 echo "DIRECT "$outpath
98 # User and host (for convinience)
99 echo "USER "`whoami`
100 echo "HOST "`hostname`
101 # End of input card
102 echo "EXIT"
103}
104
105
106scriptlog=$runlogpath/run$program-$datetime.log
107date >> $scriptlog 2>&1
108
109# get sequence #
110gettodo "1" >> $scriptlog 2>&1
111run=${primaries[0]}
112# get corsika runno
113query="SELECT fCorsikaRunNumber FROM MCRunData where fMCRunNumber="$run
114# to be changed later again, when additional tables are available
115#corsikarunno=`sendquery`
116corsikarunno=$run
117
118# lock sequ
119lockfile=$lockpath/lock-$table-$column-$corsikarunno.txt
120checklock >> $scriptlog 2>&1
121
122echo "run $program for run $run..." >> $scriptlog 2>&1
123printprocesslog "INFO starting $program for run $run"
124
125setstatus "start" >> $scriptlog 2>&1
126
127echo "run $program for run $run " >> $scriptlog 2>&1
128echo "create input card... " >> $scriptlog 2>&1
129
130# get values for inputcard
131query="SELECT fParticleTypeKEY FROM MCCorsikaRunData where fCorsikaRunNumber="$corsikarunno
132primparticle=`sendquery`
133query="SELECT fEnergyMin, fEnergyMax FROM MCCorsikaRunData where fCorsikaRunNumber="$corsikarunno
134erange=`sendquery`
135query="SELECT fNumEvents FROM MCCorsikaRunData where fCorsikaRunNumber="$corsikarunno
136numevts=`sendquery`
137query="SELECT fEnergySlope FROM MCCorsikaRunData where fCorsikaRunNumber="$corsikarunno
138slope=`sendquery`
139query="SELECT fZenithDistanceMin, fZenithDistanceMax FROM MCCorsikaRunData where fCorsikaRunNumber="$corsikarunno
140zdrange=`sendquery`
141# Change from the MARS definition (Az=90 -> East) to Corsika (Az=90 -> West)
142query="SELECT 180-fAzimuthMin, 180-fAzimuthMax FROM MCCorsikaRunData where fCorsikaRunNumber="$corsikarunno
143azrange=`sendquery`
144query="SELECT DATE_FORMAT(fRunStart, '%Y/%m/%d') FROM MCCorsikaRunData where fCorsikaRunNumber="$corsikarunno
145date=`sendquery`
146outpath=$mcpath"/"$program"/"$date
147query="SELECT fCorsikaSeed FROM MCCorsikaRunData where fCorsikaRunNumber="$corsikarunno
148seed1=`sendquery`
149query="SELECT fCorsikaSeed+1 FROM MCCorsikaRunData where fCorsikaRunNumber="$corsikarunno
150seed2=`sendquery`
151query="SELECT fCorsikaSeed+2 FROM MCCorsikaRunData where fCorsikaRunNumber="$corsikarunno
152seed3=`sendquery`
153query="SELECT fImpactMax FROM MCCorsikaRunData where fCorsikaRunNumber="$corsikarunno
154impactmax=`sendquery`
155query="SELECT fViewConeMax FROM MCCorsikaRunData where fCorsikaRunNumber="$corsikarunno
156viewconemax=`sendquery`
157query="SELECT fNumReUseShower FROM MCCorsikaRunData where fCorsikaRunNumber="$corsikarunno
158reuse=`sendquery`
159query="SELECT fStartingAltitude FROM MCCorsikaRunData where fCorsikaRunNumber="$corsikarunno
160startalt=`sendquery`
161query="SELECT fMirrorDiameter FROM MCCorsikaRunData where fCorsikaRunNumber="$corsikarunno
162diameter=`sendquery`
163
164echo "" >> $scriptlog 2>&1
165echo "INPUTCARD:" >> $scriptlog 2>&1
166echo "----------" >> $scriptlog 2>&1
167echo "" >> $scriptlog 2>&1
168echo "" >> $scriptlog 2>&1
169printinputcard >> $scriptlog 2>&1
170
171logfile=$outpath/$program"-"`printf %06d $corsikarunno`".log"
172makedir $outpath >> $scriptlog 2>&1
173
174cd $corsikapath
175
176echo "INPUTCARD:" >| $logfile 2>&1
177printinputcard >> $logfile 2>&1
178echo "" >> $logfile 2>&1
179echo "" >> $logfile 2>&1
180printinputcard | ./cc6501p-linux >> $logfile 2>&1
181
182check1=$?
183
184case $check1 in
185 0) echo " check1=$check1 -> everything ok " >> $scriptlog 2>&1
186 printprocesslog "INFO $program finished successfully for corsika run number $corsikarunno"
187 ;;
188 *) echo " check1=$check1 -> ERROR -> step has to be repeated" >> $scriptlog 2>&1
189 printprocesslog "ERROR $program failed for corsika run number $corsikarunno"
190 com=$Fcorsika
191 check=$check1
192 ;;
193esac
194
195setstatus "stop" >> $scriptlog 2>&1
196
197finish >> $scriptlog 2>&1
198
Note: See TracBrowser for help on using the repository browser.