IAP GITLAB

Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • AirShowerPhysics/corsika-data
1 result
Show changes
Commits on Source (6)
* CORSIKA inputs file template for CTA prod-3b simulations at 20 deg zenith angle.
* Includes alternatives for different primaries (selected by pre-processor),
* for PRMPAR, ERANGE, VIEWCONE, CSCAT parameters.
* Includes site definitions for Aar and Armazones-2K (selected by pre-processor),
* for OBSLEV, ATMOSPHERE, and MAGNET parameters.
* Showers can come from North (default), South, East, or West.
* Number of showers to be simulated needs to be adapted to run duration for each primary type.
* SEEDs need to be re-generated for each simulation run separately!!!
*
* =============== Corsika INPUTS =======================
*
* [ Job parameters ]
*
RUNNR 1 // Number of run, to be auto-numbered by job submission
EVTNR 1 // Number of first shower event (usually 1)
* NSHOW 10 // for test only
* CSCAT 1 400e2 0. // for test only
* ERANGE 0.3E3 3E3 // for test only
ESLOPE -2.0 // Slope of primary energy spectrum (-2.0 is equal CPU time per decade)
*
* [ Random number generator: 4 sequences used in IACT mode ]
*
SEED 385928125 401 0 // Seed for 1st random number sequence, to be re-generated
SEED 827619802 859 0 // Seed for 2nd random number sequence, to be re-generated
SEED 195989238 390 0 // Seed for 3rd random number sequence, to be re-generated
SEED 539053819 323 0 // Seed for 4th random number sequence, to be re-generated
*
* [ Primary particle options ]
*
#ifdef PRIMARY_GAMMA
PRMPAR 1 // Particle type of prim. particle (1: gamma; 3: elec, 14: proton, 402: helium)
ERANGE 3.0 330E3 // Energy range of primary particle (in GeV): gammas & electrons
NSHOW 10000 // number of showers to generate
#endif
#ifdef PRIMARY_GAMMA_DIFFUSE
PRMPAR 1 // Particle type of prim. particle (1: gamma; 3: elec, 14: proton, 402: helium)
ERANGE 3.0 330E3 // Energy range of primary particle (in GeV): gammas & electrons
NSHOW 10000 // number of showers to generate
#define DIFFUSE 1
#endif
#ifdef PRIMARY_ELECTRON
PRMPAR 3 // Particle type of prim. particle (3: electron)
ERANGE 3.0 330E3 // Energy range of primary particle (in GeV): gammas & electrons
NSHOW 10000 // number of showers to generate
#define DIFFUSE 1
#endif
#ifdef PRIMARY_PROTON
PRMPAR 14 // Particle type of prim. particle (14: proton)
ERANGE 4.0 600E3 // Energy range of primary particle (in GeV): protons
NSHOW 25000 // number of showers to generate
#define DIFFUSE 1
#endif
#ifdef PRIMARY_HELIUM
PRMPAR 402 // Particle type of prim. particle (402: helium)
ERANGE 0.01E3 1200E3 // Energy range of primary particle (in GeV): helium
NSHOW 15000 // number of showers to generate
#define DIFFUSE 1
#endif
#ifdef PRIMARY_NITROGEN
PRMPAR 1407 // Particle type of prim. particle (1407: nitrogen)
ERANGE 0.04E3 4000E3 // Energy range of primary particle (in GeV): nitrogen
NSHOW 3000 // number of showers to generate
#define DIFFUSE 1
#endif
#ifdef PRIMARY_SILICON
PRMPAR 2814 // Particle type of prim. particle (2814: silicon)
ERANGE 0.05E3 5000E3 // Energy range of primary particle (in GeV): silicon
NSHOW 2500 // number of showers to generate
#define DIFFUSE 1
#endif
#ifdef PRIMARY_IRON
PRMPAR 5626 // Particle type of prim. particle (5626: iron)
ERANGE 0.06E3 6000E3 // Energy range of primary particle (in GeV): iron
NSHOW 2000 // number of showers to generate
#define DIFFUSE 1
#endif
*
#ifdef THETA
THETAP $(THETA) $(THETA) // Range of zenith angles (degree)
#else
THETAP 20. 20. // Range of zenith angles (degree)
#endif
#ifdef FROM_SOUTH
PHIP 0. 0. // Range of azimuth angles (degree): primaries coming from South
#else
# ifdef FROM_EAST
PHIP 90. 90. // Range of azimuth angles (degree): primaries coming from East
# else
# ifdef FROM_WEST
PHIP 270. 270. // Range of azimuth angles (degree): primaries coming from West
# else
PHIP 180. 180. // Range of azimuth angles (degree): primaries coming from North
# endif
# endif
#endif
#ifndef DIFFUSE
VIEWCONE 0. 0. // Can be a cone around fixed THETAP/PHIP (gamma point source)
#else
VIEWCONE 0. 10. // Diffuse components (gammas, electrons, protons & nuclei)
#endif
*
* Optionally override prepared demo run settings
*
#ifdef NSHOW
NSHOW $(NSHOW) // Requires NSHOW environment variable.
#endif
#ifdef EMIN
# ifdef EMAX
ERANGE $(EMIN) $(EMAX) // Requires EMIN and EMAX in units of GeV.
# endif
#endif
#ifdef ESLOPE
ESLOPE $(ESLOPE) // Requires spectral slope ESLOPE (<0)
#endif
*
* [ Site specific options ]
*
* The selected CTA South site is now near the ESO Paranal observatory:
* 24.6272 deg South, 70.4042 deg West, altitude: 2150 m a.s.l.
* Atmosphere 26 at altitude 2150.0 m:
* Atmospheric depth at ground level: 798.805 g/cm^2
* Density at ground level: 0.00095108 g/cm^3
* Refractivity at ground level: 0.00021986
* Maximum Cherenkov angle at ground level: 1.2014 deg.
OBSLEV 2150.E2 // Observation level (in cm) for CTA near Paranal
ATMOSPHERE 26 Y // Should be slightly better for Paranal than profiles 1 (tropical) or 10 (HESS)
#ifdef MAGNET_BX
MAGNET $(MAGNET_BX) $(MAGNET_BZ)
#else
MAGNET 21.325 -8.926 // Magnetic field at assumed site [H, Z] (muT) (about the same as for Armazones site)
#endif
*
ARRANG 0. // Rotation of array to north [D] (degree); use zero here for any site for now
*
* [ Core range ]
*
#ifndef DIFFUSE
CSCAT 10 2000e2 0. // Use shower several times (gammas, point source only)
#else
CSCAT 20 2500e2 0. // Use shower several times (protons+electrons+..., larger area for diffuse origin)
#endif
#ifdef NSCAT
# ifdef CSCAT2
CSCAT $(NSCAT) $(CSCAT)E2 $(CSCAT2)E2 // Requires NSCAT (10/20) and CSCAT and CSCAT2 (in units of meters).
#else
CSCAT $(NSCAT) $(CSCAT)E2 0. // Requires NSCAT (10/20) and CSCAT (in units of meters).
# endif
#endif
*
* [ Telescope positions, for IACT option ]
*
* (Note: distance to center of array (rc) is calculated after undoing the 1.12^{+-0.5} N-S/E-W stretching/compression.)
*
* 4 LSTs: 1-4
*
TELESCOPE -20E2 65E2 16.0E2 12.0E2 # Telescope 1 (LST) rc=71.34 [3HB9]
TELESCOPE -20E2 -65E2 16.0E2 12.0E2 # Telescope 2 (LST) rc=71.34 [3HB9]
TELESCOPE 80E2 0.000E2 16.0E2 12.0E2 # Telescope 3 (LST) rc=75.59 [3HB9]
TELESCOPE -120E2 0E2 16.0E2 12.0E2 # Telescope 4 (LST) rc=113.39 [3HB9]
*
* 25 MSTs: 5-29
*
TELESCOPE 0.000E2 0.000E2 10.0E2 7.0E2 # Telescope 5 (MST) rc=0.00 [3HB89] [3HB9]
TELESCOPE 0.000E2 151.200E2 10.0E2 7.0E2 # Telescope 6 (MST) rc=160.01 [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE 0.000E2 -151.200E2 10.0E2 7.0E2 # Telescope 7 (MST) rc=160.01 [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE 146.656E2 75.600E2 10.0E2 7.0E2 # Telescope 8 (MST) rc=160.01 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE 146.656E2 -75.600E2 10.0E2 7.0E2 # Telescope 9 (MST) rc=160.01 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE -146.656E2 85.600E2 10.0E2 7.0E2 # Telescope 10 (MST) rc=165.56 [3HB9]
TELESCOPE -146.656E2 -85.600E2 10.0E2 7.0E2 # Telescope 11 (MST) rc=165.56 [3HB9]
TELESCOPE 154.205E2 238.474E2 10.0E2 7.0E2 # Telescope 12 (MST) rc=291.42 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE 154.205E2 -238.474E2 10.0E2 7.0E2 # Telescope 13 (MST) rc=291.42 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE 308.410E2 0.000E2 10.0E2 7.0E2 # Telescope 14 (MST) rc=291.42 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE -154.205E2 238.474E2 10.0E2 7.0E2 # Telescope 15 (MST) rc=291.42 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE -154.205E2 -238.474E2 10.0E2 7.0E2 # Telescope 16 (MST) rc=291.42 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE -308.410E2 0.000E2 10.0E2 7.0E2 # Telescope 17 (MST) rc=291.42 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE 0.000E2 325.242E2 10.0E2 7.0E2 # Telescope 18 (MST) rc=344.20 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE 0.000E2 -325.242E2 10.0E2 7.0E2 # Telescope 19 (MST) rc=344.20 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE 315.468E2 162.621E2 10.0E2 7.0E2 # Telescope 20 (MST) rc=344.20 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE 315.468E2 -162.621E2 10.0E2 7.0E2 # Telescope 21 (MST) rc=344.20 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE -315.468E2 162.621E2 10.0E2 7.0E2 # Telescope 22 (MST) rc=344.20 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE -315.468E2 -162.621E2 10.0E2 7.0E2 # Telescope 23 (MST) rc=344.20 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE 291.085E2 450.155E2 10.0E2 7.0E2 # Telescope 24 (MST) rc=550.10 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE 291.085E2 -450.155E2 10.0E2 7.0E2 # Telescope 25 (MST) rc=550.10 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE 582.170E2 0.000E2 10.0E2 7.0E2 # Telescope 26 (MST) rc=550.10 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE -291.085E2 450.155E2 10.0E2 7.0E2 # Telescope 27 (MST) rc=550.10 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE -291.085E2 -450.155E2 10.0E2 7.0E2 # Telescope 28 (MST) rc=550.10 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE -582.170E2 0.000E2 10.0E2 7.0E2 # Telescope 29 (MST) rc=550.10 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
*
* 70 SST: 30-99
*
TELESCOPE 205.5E2 158.9E2 5.0E2 2.8E2 # Telescope 30 (SST) rc=256.87 [3HB9]
TELESCOPE 205.5E2 -158.9E2 5.0E2 2.8E2 # Telescope 31 (SST) rc=256.87 [3HB9]
TELESCOPE -205.5E2 158.9E2 5.0E2 2.8E2 # Telescope 32 (SST) rc=256.87 [3HB9]
TELESCOPE -205.5E2 -158.9E2 5.0E2 2.8E2 # Telescope 33 (SST) rc=256.87 [3HB9]
TELESCOPE 164.823E2 424.824E2 5.0E2 2.8E2 # Telescope 34 (SST) rc=475.80 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE 164.823E2 -424.824E2 5.0E2 2.8E2 # Telescope 35 (SST) rc=475.80 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE -164.823E2 424.824E2 5.0E2 2.8E2 # Telescope 36 (SST) rc=475.80 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE -164.823E2 -424.824E2 5.0E2 2.8E2 # Telescope 37 (SST) rc=475.80 [3HB1-2] [3HB2-2] [3HB89] [3HB8] [3HB9]
TELESCOPE 494.469E2 110E2 5.0E2 2.8E2 # Telescope 38 (SST) rc=481.51 [3HB9]
TELESCOPE 494.469E2 -110E2 5.0E2 2.8E2 # Telescope 39 (SST) rc=481.51 [3HB9]
TELESCOPE -494.469E2 110E2 5.0E2 2.8E2 # Telescope 40 (SST) rc=481.51 [3HB9]
TELESCOPE -494.469E2 -110E2 5.0E2 2.8E2 # Telescope 41 (SST) rc=481.51 [3HB9]
TELESCOPE 0.000E2 519.795E2 5.0E2 2.8E2 # Telescope 42 (SST) rc=550.10 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE 0.000E2 -519.795E2 5.0E2 2.8E2 # Telescope 43 (SST) rc=550.10 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE 391.606E2 403.739E2 5.0E2 2.8E2 # Telescope 44 (SST) rc=565.23 [3HB89] [3HB8] [3HB9]
TELESCOPE 391.606E2 -403.739E2 5.0E2 2.8E2 # Telescope 45 (SST) rc=565.23 [3HB89] [3HB8] [3HB9]
TELESCOPE -391.606E2 403.739E2 5.0E2 2.8E2 # Telescope 46 (SST) rc=565.23 [3HB89] [3HB8] [3HB9]
TELESCOPE -391.606E2 -403.739E2 5.0E2 2.8E2 # Telescope 47 (SST) rc=565.23 [3HB89] [3HB8] [3HB9]
TELESCOPE 618.073E2 318.611E2 5.0E2 2.8E2 # Telescope 48 (SST) rc=674.37 [3HB89] [3HB8] [3HB9]
TELESCOPE 618.073E2 -318.611E2 5.0E2 2.8E2 # Telescope 49 (SST) rc=674.37 [3HB89] [3HB8] [3HB9]
TELESCOPE -618.073E2 318.611E2 5.0E2 2.8E2 # Telescope 50 (SST) rc=674.37 [3HB89] [3HB8] [3HB9]
TELESCOPE -618.073E2 -318.611E2 5.0E2 2.8E2 # Telescope 51 (SST) rc=674.37 [3HB89] [3HB8] [3HB9]
TELESCOPE 0.000E2 723.527E2 5.0E2 2.8E2 # Telescope 52 (SST) rc=765.71 [3HB1-2] [3HB2-2] [3HB89] [3HB8] [3HB9]
TELESCOPE 0.000E2 -723.527E2 5.0E2 2.8E2 # Telescope 53 (SST) rc=765.71 [3HB1-2] [3HB2-2] [3HB89] [3HB8] [3HB9]
TELESCOPE 820E2 0.000E2 5.0E2 2.8E2 # Telescope 54 (SST) rc=774.83 [3HB9]
TELESCOPE -820.E2 0.000E2 5.0E2 2.8E2 # Telescope 55 (SST) rc=774.83 [3HB9]
TELESCOPE 435.304E2 673.186E2 5.0E2 2.8E2 # Telescope 56 (SST) rc=822.65 [3HB89] [3HB8] [3HB9]
TELESCOPE 435.304E2 -673.186E2 5.0E2 2.8E2 # Telescope 57 (SST) rc=822.65 [3HB89] [3HB8] [3HB9]
TELESCOPE -435.304E2 673.186E2 5.0E2 2.8E2 # Telescope 58 (SST) rc=822.65 [3HB89] [3HB8] [3HB9]
TELESCOPE -435.304E2 -673.186E2 5.0E2 2.8E2 # Telescope 59 (SST) rc=822.65 [3HB89] [3HB8] [3HB9]
TELESCOPE 220.844E2 796.903E2 5.0E2 2.8E2 # Telescope 60 (SST) rc=868.80 [3HB89] [3HB8] [3HB9]
TELESCOPE 220.844E2 -796.903E2 5.0E2 2.8E2 # Telescope 61 (SST) rc=868.80 [3HB89] [3HB8] [3HB9]
TELESCOPE 662.533E2 569.216E2 5.0E2 2.8E2 # Telescope 62 (SST) rc=868.80 [3HB89] [3HB8] [3HB9]
TELESCOPE 662.533E2 -569.216E2 5.0E2 2.8E2 # Telescope 63 (SST) rc=868.80 [3HB89] [3HB8] [3HB9]
TELESCOPE 883.377E2 227.687E2 5.0E2 2.8E2 # Telescope 64 (SST) rc=868.80 [3HB89] [3HB8] [3HB9]
TELESCOPE 883.377E2 -227.687E2 5.0E2 2.8E2 # Telescope 65 (SST) rc=868.80 [3HB89] [3HB8] [3HB9]
TELESCOPE -220.844E2 796.903E2 5.0E2 2.8E2 # Telescope 66 (SST) rc=868.80 [3HB89] [3HB8] [3HB9]
TELESCOPE -220.844E2 -796.903E2 5.0E2 2.8E2 # Telescope 67 (SST) rc=868.80 [3HB89] [3HB8] [3HB9]
TELESCOPE -662.533E2 569.216E2 5.0E2 2.8E2 # Telescope 68 (SST) rc=868.80 [3HB89] [3HB8] [3HB9]
TELESCOPE -662.533E2 -569.216E2 5.0E2 2.8E2 # Telescope 69 (SST) rc=868.80 [3HB89] [3HB8] [3HB9]
TELESCOPE -883.377E2 227.687E2 5.0E2 2.8E2 # Telescope 70 (SST) rc=868.80 [3HB89] [3HB8] [3HB9]
TELESCOPE -883.377E2 -227.687E2 5.0E2 2.8E2 # Telescope 71 (SST) rc=868.80 [3HB89] [3HB8] [3HB9]
TELESCOPE 0.000E2 944.301E2 5.0E2 2.8E2 # Telescope 72 (SST) rc=999.35 [3HB89] [3HB8] [3HB9]
TELESCOPE 0.000E2 -944.301E2 5.0E2 2.8E2 # Telescope 73 (SST) rc=999.35 [3HB89] [3HB8] [3HB9]
TELESCOPE 915.923E2 472.151E2 5.0E2 2.8E2 # Telescope 74 (SST) rc=999.35 [3HB89] [3HB8] [3HB9]
TELESCOPE 915.923E2 -472.151E2 5.0E2 2.8E2 # Telescope 75 (SST) rc=999.35 [3HB89] [3HB8] [3HB9]
TELESCOPE -915.923E2 472.151E2 5.0E2 2.8E2 # Telescope 76 (SST) rc=999.35 [3HB89] [3HB8] [3HB9]
TELESCOPE -915.923E2 -472.151E2 5.0E2 2.8E2 # Telescope 77 (SST) rc=999.35 [3HB89] [3HB8] [3HB9]
TELESCOPE 1100E2 0.E2 5.0E2 2.8E2 # Telescope 78 (SST) rc=1039.40 [3HB9]
TELESCOPE -1100E2 0.E2 5.0E2 2.8E2 # Telescope 79 (SST) rc=1039.40 [3HB9]
TELESCOPE 471.012E2 971.210E2 5.0E2 2.8E2 # Telescope 80 (SST) rc=1120.05 [3HB89] [3HB8] [3HB9]
TELESCOPE 471.012E2 -971.210E2 5.0E2 2.8E2 # Telescope 81 (SST) rc=1120.05 [3HB89] [3HB8] [3HB9]
TELESCOPE 706.518E2 849.809E2 5.0E2 2.8E2 # Telescope 82 (SST) rc=1120.05 [3HB89] [3HB8] [3HB9]
TELESCOPE 706.518E2 -849.809E2 5.0E2 2.8E2 # Telescope 83 (SST) rc=1120.05 [3HB89] [3HB8] [3HB9]
TELESCOPE -471.012E2 971.210E2 5.0E2 2.8E2 # Telescope 84 (SST) rc=1120.05 [3HB89] [3HB8] [3HB9]
TELESCOPE -471.012E2 -971.210E2 5.0E2 2.8E2 # Telescope 85 (SST) rc=1120.05 [3HB89] [3HB8] [3HB9]
TELESCOPE -706.518E2 849.809E2 5.0E2 2.8E2 # Telescope 86 (SST) rc=1120.05 [3HB89] [3HB8] [3HB9]
TELESCOPE -706.518E2 -849.809E2 5.0E2 2.8E2 # Telescope 87 (SST) rc=1120.05 [3HB89] [3HB8] [3HB9]
TELESCOPE 239.197E2 1109.735E2 5.0E2 2.8E2 # Telescope 88 (SST) rc=1195.98 [3HB89] [3HB8] [3HB9]
TELESCOPE 239.197E2 -1109.735E2 5.0E2 2.8E2 # Telescope 89 (SST) rc=1195.98 [3HB89] [3HB8] [3HB9]
TELESCOPE 956.787E2 739.823E2 5.0E2 2.8E2 # Telescope 90 (SST) rc=1195.98 [3HB89] [3HB8] [3HB9]
TELESCOPE 956.787E2 -739.823E2 5.0E2 2.8E2 # Telescope 91 (SST) rc=1195.98 [3HB89] [3HB8] [3HB9]
TELESCOPE -239.197E2 1109.735E2 5.0E2 2.8E2 # Telescope 92 (SST) rc=1195.98 [3HB89] [3HB8] [3HB9]
TELESCOPE -239.197E2 -1109.735E2 5.0E2 2.8E2 # Telescope 93 (SST) rc=1195.98 [3HB89] [3HB8] [3HB9]
TELESCOPE -956.787E2 739.823E2 5.0E2 2.8E2 # Telescope 94 (SST) rc=1195.98 [3HB89] [3HB8] [3HB9]
TELESCOPE -956.787E2 -739.823E2 5.0E2 2.8E2 # Telescope 95 (SST) rc=1195.98 [3HB89] [3HB8] [3HB9]
TELESCOPE 1195.984E2 369.912E2 5.0E2 2.8E2 # Telescope 96 (SST) rc=1195.98 [3HB89] [3HB8] [3HB9]
TELESCOPE 1195.984E2 -369.912E2 5.0E2 2.8E2 # Telescope 97 (SST) rc=1195.98 [3HB89] [3HB8] [3HB9]
TELESCOPE -1195.984E2 369.912E2 5.0E2 2.8E2 # Telescope 98 (SST) rc=1195.98 [3HB89] [3HB8] [3HB9]
TELESCOPE -1195.984E2 -369.912E2 5.0E2 2.8E2 # Telescope 99 (SST) rc=1195.98 [3HB89] [3HB8] [3HB9]
*
* [Interaction flags]
*
FIXHEI 0. 0 // First interaction height & target (0. 0 for random)
FIXCHI 0. // Starting altitude (g/cm**2). 0. is at boundary to space.
TSTART T // Needed for emission and scattering of primary
ECUTS 0.3 0.1 0.020 0.020 // Energy cuts for particles
MUADDI F // Additional info for muons not needed
MUMULT T // Muon multiple scattering angle
LONGI T 20. F F // Longit.distr. & step size & fit
MAXPRT 0 // Max. number of printed events
ECTMAP 1.E6 // Cut on gamma factor for printout
STEPFC 1.0 // Mult. scattering step length factor
*
* [ Cherenkov emission parameters ]
*
CERSIZ 5. // Not above 10 for super/ultra-bialkali QE; 7 is fairly OK; 5 should be safe.
CERFIL F // No old-style Cherenkov output to extra file
CWAVLG 240. 700. // Cherenkov wavelength band
*
* [ Debugging and output options ]
*
DEBUG F 6 F 1000000 // Debug flag and logical unit for output
DATBAS yes // Write a file with parameters used
DIRECT /dev/null // /dev/null means no normal CORSIKA data written
* TELFIL |${SIM_TELARRAY_PATH}/run_sim_cta-prod3-paranal-baseline:100:100:1 // Telescope photon bunch output (eventio format)
TELFIL cta-prod3-paranal-baseline.corsika.gz // If telescope simulation not done directly in pipe
*
* [ IACT tuning parameters ]
*
IACT SPLIT_AUTO 15M // Split data with more than 15 million bunches
IACT IO_BUFFER 1000MB // At 32 bytes per bunch this could be up to 500 MB
IACT MAX_BUNCHES 1000000 // Let photon bunch thinning set in earlier.
*
* [ This is the end, my friend ]
*
EXIT // terminates input
* ========================================================
OPTION #VALUE #DESCRIPTION
showers #500 #number of showers
height_atmosphere #112.8 #height in km
height_observator #2.15 #height in km
zenith_angle #0.01 #theta angle in degrees
azimutal_angle #180. #phi angle in degrees
E0 #300. #total energy in GeV for incident particle
seed #1 #0 by default for seed all currently registered streams or set an explicit seeds with whatever value
energy_cut #60.,60.,60.,60.;true #particle cut with energy thresholds for electrons, photons, hadrons, muons in GeV and invisible particles (neutrinos)
atmosphere_tab #26 #number of atmosphere of CORSIKA7 atmo (1-36), if 0 disable
magnetic_field #0.,0.,0. #direction of magnetic field along x,y,z axes in micro Tesla
world_sphere #0.,0.,0. #center position along x,y,z in m
obs_level #0.,0.,1. #direction vector of observation level
obs_plane #1.,0.,0. #direction vector of observation plane
shower_axis #0.,0.,0.;10000;1.5 #direction vector along x,y,z in m, the setps row for interpolation for shower axis and a size coeff
tel_conf #position_99 #input file for telescope grid configuration
* CORSIKA inputs file template for CTA prod-3b simulations at 20 deg zenith angle.
* Includes alternatives for different primaries (selected by pre-processor),
* for PRMPAR, ERANGE, VIEWCONE, CSCAT parameters.
* Includes site definitions for Aar and Armazones-2K (selected by pre-processor),
* for OBSLEV, ATMOSPHERE, and MAGNET parameters.
* Showers can come from North (default), South, East, or West.
* Number of showers to be simulated needs to be adapted to run duration for each primary type.
* SEEDs need to be re-generated for each simulation run separately!!!
*
* =============== Corsika INPUTS =======================
*
* [ Job parameters ]
*
RUNNR 1 // Number of run, to be auto-numbered by job submission
EVTNR 1 // Number of first shower event (usually 1)
* NSHOW 10 // for test only
* CSCAT 1 400e2 0. // for test only
* ERANGE 0.3E3 3E3 // for test only
ESLOPE -2.0 // Slope of primary energy spectrum (-2.0 is equal CPU time per decade)
*
* [ Random number generator: 4 sequences used in IACT mode ]
*
SEED 385928125 401 0 // Seed for 1st random number sequence, to be re-generated
SEED 827619802 859 0 // Seed for 2nd random number sequence, to be re-generated
SEED 195989238 390 0 // Seed for 3rd random number sequence, to be re-generated
SEED 539053819 323 0 // Seed for 4th random number sequence, to be re-generated
*
* [ Primary particle options ]
*
PRMPAR 3 // Particle type of prim. particle (3: electron)
ERANGE 300. 300. // Energy range of primary particle (in GeV): gammas & electrons
NSHOW 100 // number of showers to generate
*
THETAP 20. 20. // Range of zenith angles (degree)
*
PHIP 180. 180. // Range of azimuth angles (degree): primaries coming from North
VIEWCONE 0. 10. // Diffuse components (gammas, electrons, protons & nuclei)
*
* Optionally override prepared demo run settings
*
NSHOW 100 // Requires NSHOW environment variable.
ERANGE 300. 300. // Requires EMIN and EMAX in units of GeV.
*
* [ Site specific options ]
*
* The selected CTA South site is now near the ESO Paranal observatory:
* 24.6272 deg South, 70.4042 deg West, altitude: 2150 m a.s.l.
* Atmosphere 26 at altitude 2150.0 m:
* Atmospheric depth at ground level: 798.805 g/cm^2
* Density at ground level: 0.00095108 g/cm^3
* Refractivity at ground level: 0.00021986
* Maximum Cherenkov angle at ground level: 1.2014 deg.
OBSLEV 2150.E2 // Observation level (in cm) for CTA near Paranal
ATMOSPHERE 26 Y // Should be slightly better for Paranal than profiles 1 (tropical) or 10 (HESS)
MAGNET 21.325 -8.926 // Magnetic field at assumed site [H, Z] (muT) (about the same as for Armazones site)
*
ARRANG 0. // Rotation of array to north [D] (degree); use zero here for any site for now
*
* [ Core range ]
*
CSCAT 20 2500e2 0. // Use shower several times (protons+electrons+..., larger area for diffuse origin)
*
* [ Telescope positions, for IACT option ]
*
* (Note: distance to center of array (rc) is calculated after undoing the 1.12^{+-0.5} N-S/E-W stretching/compression.)
*
* 4 LSTs: 1-4
*
TELESCOPE -20E2 65E2 16.0E2 12.0E2 # Telescope 1 (LST) rc=71.34 [3HB9]
TELESCOPE -20E2 -65E2 16.0E2 12.0E2 # Telescope 2 (LST) rc=71.34 [3HB9]
TELESCOPE 80E2 0.000E2 16.0E2 12.0E2 # Telescope 3 (LST) rc=75.59 [3HB9]
TELESCOPE -120E2 0E2 16.0E2 12.0E2 # Telescope 4 (LST) rc=113.39 [3HB9]
*
* 25 MSTs: 5-29
*
TELESCOPE 0.000E2 0.000E2 10.0E2 7.0E2 # Telescope 5 (MST) rc=0.00 [3HB89] [3HB9]
TELESCOPE 0.000E2 151.200E2 10.0E2 7.0E2 # Telescope 6 (MST) rc=160.01 [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE 0.000E2 -151.200E2 10.0E2 7.0E2 # Telescope 7 (MST) rc=160.01 [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE 146.656E2 75.600E2 10.0E2 7.0E2 # Telescope 8 (MST) rc=160.01 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE 146.656E2 -75.600E2 10.0E2 7.0E2 # Telescope 9 (MST) rc=160.01 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE -146.656E2 85.600E2 10.0E2 7.0E2 # Telescope 10 (MST) rc=165.56 [3HB9]
TELESCOPE -146.656E2 -85.600E2 10.0E2 7.0E2 # Telescope 11 (MST) rc=165.56 [3HB9]
TELESCOPE 154.205E2 238.474E2 10.0E2 7.0E2 # Telescope 12 (MST) rc=291.42 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE 154.205E2 -238.474E2 10.0E2 7.0E2 # Telescope 13 (MST) rc=291.42 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE 308.410E2 0.000E2 10.0E2 7.0E2 # Telescope 14 (MST) rc=291.42 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE -154.205E2 238.474E2 10.0E2 7.0E2 # Telescope 15 (MST) rc=291.42 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE -154.205E2 -238.474E2 10.0E2 7.0E2 # Telescope 16 (MST) rc=291.42 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE -308.410E2 0.000E2 10.0E2 7.0E2 # Telescope 17 (MST) rc=291.42 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE 0.000E2 325.242E2 10.0E2 7.0E2 # Telescope 18 (MST) rc=344.20 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE 0.000E2 -325.242E2 10.0E2 7.0E2 # Telescope 19 (MST) rc=344.20 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE 315.468E2 162.621E2 10.0E2 7.0E2 # Telescope 20 (MST) rc=344.20 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE 315.468E2 -162.621E2 10.0E2 7.0E2 # Telescope 21 (MST) rc=344.20 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE -315.468E2 162.621E2 10.0E2 7.0E2 # Telescope 22 (MST) rc=344.20 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE -315.468E2 -162.621E2 10.0E2 7.0E2 # Telescope 23 (MST) rc=344.20 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE 291.085E2 450.155E2 10.0E2 7.0E2 # Telescope 24 (MST) rc=550.10 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE 291.085E2 -450.155E2 10.0E2 7.0E2 # Telescope 25 (MST) rc=550.10 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE 582.170E2 0.000E2 10.0E2 7.0E2 # Telescope 26 (MST) rc=550.10 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE -291.085E2 450.155E2 10.0E2 7.0E2 # Telescope 27 (MST) rc=550.10 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE -291.085E2 -450.155E2 10.0E2 7.0E2 # Telescope 28 (MST) rc=550.10 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE -582.170E2 0.000E2 10.0E2 7.0E2 # Telescope 29 (MST) rc=550.10 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
*
* 70 SST: 30-99
*
TELESCOPE 205.5E2 158.9E2 5.0E2 2.8E2 # Telescope 30 (SST) rc=256.87 [3HB9]
TELESCOPE 205.5E2 -158.9E2 5.0E2 2.8E2 # Telescope 31 (SST) rc=256.87 [3HB9]
TELESCOPE -205.5E2 158.9E2 5.0E2 2.8E2 # Telescope 32 (SST) rc=256.87 [3HB9]
TELESCOPE -205.5E2 -158.9E2 5.0E2 2.8E2 # Telescope 33 (SST) rc=256.87 [3HB9]
TELESCOPE 164.823E2 424.824E2 5.0E2 2.8E2 # Telescope 34 (SST) rc=475.80 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE 164.823E2 -424.824E2 5.0E2 2.8E2 # Telescope 35 (SST) rc=475.80 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE -164.823E2 424.824E2 5.0E2 2.8E2 # Telescope 36 (SST) rc=475.80 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE -164.823E2 -424.824E2 5.0E2 2.8E2 # Telescope 37 (SST) rc=475.80 [3HB1-2] [3HB2-2] [3HB89] [3HB8] [3HB9]
TELESCOPE 494.469E2 110E2 5.0E2 2.8E2 # Telescope 38 (SST) rc=481.51 [3HB9]
TELESCOPE 494.469E2 -110E2 5.0E2 2.8E2 # Telescope 39 (SST) rc=481.51 [3HB9]
TELESCOPE -494.469E2 110E2 5.0E2 2.8E2 # Telescope 40 (SST) rc=481.51 [3HB9]
TELESCOPE -494.469E2 -110E2 5.0E2 2.8E2 # Telescope 41 (SST) rc=481.51 [3HB9]
TELESCOPE 0.000E2 519.795E2 5.0E2 2.8E2 # Telescope 42 (SST) rc=550.10 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE 0.000E2 -519.795E2 5.0E2 2.8E2 # Telescope 43 (SST) rc=550.10 [3HB1-2] [3HB2-2] [3HB4-2] [3HB89] [3HB8] [3HB9]
TELESCOPE 391.606E2 403.739E2 5.0E2 2.8E2 # Telescope 44 (SST) rc=565.23 [3HB89] [3HB8] [3HB9]
TELESCOPE 391.606E2 -403.739E2 5.0E2 2.8E2 # Telescope 45 (SST) rc=565.23 [3HB89] [3HB8] [3HB9]
TELESCOPE -391.606E2 403.739E2 5.0E2 2.8E2 # Telescope 46 (SST) rc=565.23 [3HB89] [3HB8] [3HB9]
TELESCOPE -391.606E2 -403.739E2 5.0E2 2.8E2 # Telescope 47 (SST) rc=565.23 [3HB89] [3HB8] [3HB9]
TELESCOPE 618.073E2 318.611E2 5.0E2 2.8E2 # Telescope 48 (SST) rc=674.37 [3HB89] [3HB8] [3HB9]
TELESCOPE 618.073E2 -318.611E2 5.0E2 2.8E2 # Telescope 49 (SST) rc=674.37 [3HB89] [3HB8] [3HB9]
TELESCOPE -618.073E2 318.611E2 5.0E2 2.8E2 # Telescope 50 (SST) rc=674.37 [3HB89] [3HB8] [3HB9]
TELESCOPE -618.073E2 -318.611E2 5.0E2 2.8E2 # Telescope 51 (SST) rc=674.37 [3HB89] [3HB8] [3HB9]
TELESCOPE 0.000E2 723.527E2 5.0E2 2.8E2 # Telescope 52 (SST) rc=765.71 [3HB1-2] [3HB2-2] [3HB89] [3HB8] [3HB9]
TELESCOPE 0.000E2 -723.527E2 5.0E2 2.8E2 # Telescope 53 (SST) rc=765.71 [3HB1-2] [3HB2-2] [3HB89] [3HB8] [3HB9]
TELESCOPE 820E2 0.000E2 5.0E2 2.8E2 # Telescope 54 (SST) rc=774.83 [3HB9]
TELESCOPE -820.E2 0.000E2 5.0E2 2.8E2 # Telescope 55 (SST) rc=774.83 [3HB9]
TELESCOPE 435.304E2 673.186E2 5.0E2 2.8E2 # Telescope 56 (SST) rc=822.65 [3HB89] [3HB8] [3HB9]
TELESCOPE 435.304E2 -673.186E2 5.0E2 2.8E2 # Telescope 57 (SST) rc=822.65 [3HB89] [3HB8] [3HB9]
TELESCOPE -435.304E2 673.186E2 5.0E2 2.8E2 # Telescope 58 (SST) rc=822.65 [3HB89] [3HB8] [3HB9]
TELESCOPE -435.304E2 -673.186E2 5.0E2 2.8E2 # Telescope 59 (SST) rc=822.65 [3HB89] [3HB8] [3HB9]
TELESCOPE 220.844E2 796.903E2 5.0E2 2.8E2 # Telescope 60 (SST) rc=868.80 [3HB89] [3HB8] [3HB9]
TELESCOPE 220.844E2 -796.903E2 5.0E2 2.8E2 # Telescope 61 (SST) rc=868.80 [3HB89] [3HB8] [3HB9]
TELESCOPE 662.533E2 569.216E2 5.0E2 2.8E2 # Telescope 62 (SST) rc=868.80 [3HB89] [3HB8] [3HB9]
TELESCOPE 662.533E2 -569.216E2 5.0E2 2.8E2 # Telescope 63 (SST) rc=868.80 [3HB89] [3HB8] [3HB9]
TELESCOPE 883.377E2 227.687E2 5.0E2 2.8E2 # Telescope 64 (SST) rc=868.80 [3HB89] [3HB8] [3HB9]
TELESCOPE 883.377E2 -227.687E2 5.0E2 2.8E2 # Telescope 65 (SST) rc=868.80 [3HB89] [3HB8] [3HB9]
TELESCOPE -220.844E2 796.903E2 5.0E2 2.8E2 # Telescope 66 (SST) rc=868.80 [3HB89] [3HB8] [3HB9]
TELESCOPE -220.844E2 -796.903E2 5.0E2 2.8E2 # Telescope 67 (SST) rc=868.80 [3HB89] [3HB8] [3HB9]
TELESCOPE -662.533E2 569.216E2 5.0E2 2.8E2 # Telescope 68 (SST) rc=868.80 [3HB89] [3HB8] [3HB9]
TELESCOPE -662.533E2 -569.216E2 5.0E2 2.8E2 # Telescope 69 (SST) rc=868.80 [3HB89] [3HB8] [3HB9]
TELESCOPE -883.377E2 227.687E2 5.0E2 2.8E2 # Telescope 70 (SST) rc=868.80 [3HB89] [3HB8] [3HB9]
TELESCOPE -883.377E2 -227.687E2 5.0E2 2.8E2 # Telescope 71 (SST) rc=868.80 [3HB89] [3HB8] [3HB9]
TELESCOPE 0.000E2 944.301E2 5.0E2 2.8E2 # Telescope 72 (SST) rc=999.35 [3HB89] [3HB8] [3HB9]
TELESCOPE 0.000E2 -944.301E2 5.0E2 2.8E2 # Telescope 73 (SST) rc=999.35 [3HB89] [3HB8] [3HB9]
TELESCOPE 915.923E2 472.151E2 5.0E2 2.8E2 # Telescope 74 (SST) rc=999.35 [3HB89] [3HB8] [3HB9]
TELESCOPE 915.923E2 -472.151E2 5.0E2 2.8E2 # Telescope 75 (SST) rc=999.35 [3HB89] [3HB8] [3HB9]
TELESCOPE -915.923E2 472.151E2 5.0E2 2.8E2 # Telescope 76 (SST) rc=999.35 [3HB89] [3HB8] [3HB9]
TELESCOPE -915.923E2 -472.151E2 5.0E2 2.8E2 # Telescope 77 (SST) rc=999.35 [3HB89] [3HB8] [3HB9]
TELESCOPE 1100E2 0.E2 5.0E2 2.8E2 # Telescope 78 (SST) rc=1039.40 [3HB9]
TELESCOPE -1100E2 0.E2 5.0E2 2.8E2 # Telescope 79 (SST) rc=1039.40 [3HB9]
TELESCOPE 471.012E2 971.210E2 5.0E2 2.8E2 # Telescope 80 (SST) rc=1120.05 [3HB89] [3HB8] [3HB9]
TELESCOPE 471.012E2 -971.210E2 5.0E2 2.8E2 # Telescope 81 (SST) rc=1120.05 [3HB89] [3HB8] [3HB9]
TELESCOPE 706.518E2 849.809E2 5.0E2 2.8E2 # Telescope 82 (SST) rc=1120.05 [3HB89] [3HB8] [3HB9]
TELESCOPE 706.518E2 -849.809E2 5.0E2 2.8E2 # Telescope 83 (SST) rc=1120.05 [3HB89] [3HB8] [3HB9]
TELESCOPE -471.012E2 971.210E2 5.0E2 2.8E2 # Telescope 84 (SST) rc=1120.05 [3HB89] [3HB8] [3HB9]
TELESCOPE -471.012E2 -971.210E2 5.0E2 2.8E2 # Telescope 85 (SST) rc=1120.05 [3HB89] [3HB8] [3HB9]
TELESCOPE -706.518E2 849.809E2 5.0E2 2.8E2 # Telescope 86 (SST) rc=1120.05 [3HB89] [3HB8] [3HB9]
TELESCOPE -706.518E2 -849.809E2 5.0E2 2.8E2 # Telescope 87 (SST) rc=1120.05 [3HB89] [3HB8] [3HB9]
TELESCOPE 239.197E2 1109.735E2 5.0E2 2.8E2 # Telescope 88 (SST) rc=1195.98 [3HB89] [3HB8] [3HB9]
TELESCOPE 239.197E2 -1109.735E2 5.0E2 2.8E2 # Telescope 89 (SST) rc=1195.98 [3HB89] [3HB8] [3HB9]
TELESCOPE 956.787E2 739.823E2 5.0E2 2.8E2 # Telescope 90 (SST) rc=1195.98 [3HB89] [3HB8] [3HB9]
TELESCOPE 956.787E2 -739.823E2 5.0E2 2.8E2 # Telescope 91 (SST) rc=1195.98 [3HB89] [3HB8] [3HB9]
TELESCOPE -239.197E2 1109.735E2 5.0E2 2.8E2 # Telescope 92 (SST) rc=1195.98 [3HB89] [3HB8] [3HB9]
TELESCOPE -239.197E2 -1109.735E2 5.0E2 2.8E2 # Telescope 93 (SST) rc=1195.98 [3HB89] [3HB8] [3HB9]
TELESCOPE -956.787E2 739.823E2 5.0E2 2.8E2 # Telescope 94 (SST) rc=1195.98 [3HB89] [3HB8] [3HB9]
TELESCOPE -956.787E2 -739.823E2 5.0E2 2.8E2 # Telescope 95 (SST) rc=1195.98 [3HB89] [3HB8] [3HB9]
TELESCOPE 1195.984E2 369.912E2 5.0E2 2.8E2 # Telescope 96 (SST) rc=1195.98 [3HB89] [3HB8] [3HB9]
TELESCOPE 1195.984E2 -369.912E2 5.0E2 2.8E2 # Telescope 97 (SST) rc=1195.98 [3HB89] [3HB8] [3HB9]
TELESCOPE -1195.984E2 369.912E2 5.0E2 2.8E2 # Telescope 98 (SST) rc=1195.98 [3HB89] [3HB8] [3HB9]
TELESCOPE -1195.984E2 -369.912E2 5.0E2 2.8E2 # Telescope 99 (SST) rc=1195.98 [3HB89] [3HB8] [3HB9]
*
* [Interaction flags]
*
FIXHEI 0. 0 // First interaction height & target (0. 0 for random)
FIXCHI 0. // Starting altitude (g/cm**2). 0. is at boundary to space.
TSTART T // Needed for emission and scattering of primary
ECUTS 0.3 0.1 0.020 0.020 // Energy cuts for particles
MUADDI F // Additional info for muons not needed
MUMULT T // Muon multiple scattering angle
LONGI T 20. F F // Longit.distr. & step size & fit
MAXPRT 0 // Max. number of printed events
ECTMAP 1.E6 // Cut on gamma factor for printout
STEPFC 1.0 // Mult. scattering step length factor
*
* [ Cherenkov emission parameters ]
*
CERSIZ 5. // Not above 10 for super/ultra-bialkali QE; 7 is fairly OK; 5 should be safe.
CERFIL F // No old-style Cherenkov output to extra file
CWAVLG 240. 700. // Cherenkov wavelength band
*
* [ Debugging and output options ]
*
DEBUG F 6 F 1000000 // Debug flag and logical unit for output
DATBAS yes // Write a file with parameters used
DIRECT /dev/null // /dev/null means no normal CORSIKA data written
* TELFIL |${SIM_TELARRAY_PATH}/run_sim_cta-prod3-paranal-baseline:100:100:1 // Telescope photon bunch output (eventio format)
TELFIL cta-prod3-paranal-baseline.corsika.gz // If telescope simulation not done directly in pipe
*
* [ IACT tuning parameters ]
*
IACT SPLIT_AUTO 15M // Split data with more than 15 million bunches
IACT IO_BUFFER 1000MB // At 32 bytes per bunch this could be up to 500 MB
IACT MAX_BUNCHES 1000000 // Let photon bunch thinning set in earlier.
*
* [ This is the end, my friend ]
*
EXIT // terminates input
* ========================================================
2020.0 WMM-2020 12/10/2019
1 0 -29404.5 0.0 6.7 0.0
1 1 -1450.7 4652.9 7.7 -25.1
2 0 -2500.0 0.0 -11.5 0.0
2 1 2982.0 -2991.6 -7.1 -30.2
2 2 1676.8 -734.8 -2.2 -23.9
3 0 1363.9 0.0 2.8 0.0
3 1 -2381.0 -82.2 -6.2 5.7
3 2 1236.2 241.8 3.4 -1.0
3 3 525.7 -542.9 -12.2 1.1
4 0 903.1 0.0 -1.1 0.0
4 1 809.4 282.0 -1.6 0.2
4 2 86.2 -158.4 -6.0 6.9
4 3 -309.4 199.8 5.4 3.7
4 4 47.9 -350.1 -5.5 -5.6
5 0 -234.4 0.0 -0.3 0.0
5 1 363.1 47.7 0.6 0.1
5 2 187.8 208.4 -0.7 2.5
5 3 -140.7 -121.3 0.1 -0.9
5 4 -151.2 32.2 1.2 3.0
5 5 13.7 99.1 1.0 0.5
6 0 65.9 0.0 -0.6 0.0
6 1 65.6 -19.1 -0.4 0.1
6 2 73.0 25.0 0.5 -1.8
6 3 -121.5 52.7 1.4 -1.4
6 4 -36.2 -64.4 -1.4 0.9
6 5 13.5 9.0 -0.0 0.1
6 6 -64.7 68.1 0.8 1.0
7 0 80.6 0.0 -0.1 0.0
7 1 -76.8 -51.4 -0.3 0.5
7 2 -8.3 -16.8 -0.1 0.6
7 3 56.5 2.3 0.7 -0.7
7 4 15.8 23.5 0.2 -0.2
7 5 6.4 -2.2 -0.5 -1.2
7 6 -7.2 -27.2 -0.8 0.2
7 7 9.8 -1.9 1.0 0.3
8 0 23.6 0.0 -0.1 0.0
8 1 9.8 8.4 0.1 -0.3
8 2 -17.5 -15.3 -0.1 0.7
8 3 -0.4 12.8 0.5 -0.2
8 4 -21.1 -11.8 -0.1 0.5
8 5 15.3 14.9 0.4 -0.3
8 6 13.7 3.6 0.5 -0.5
8 7 -16.5 -6.9 0.0 0.4
8 8 -0.3 2.8 0.4 0.1
9 0 5.0 0.0 -0.1 0.0
9 1 8.2 -23.3 -0.2 -0.3
9 2 2.9 11.1 -0.0 0.2
9 3 -1.4 9.8 0.4 -0.4
9 4 -1.1 -5.1 -0.3 0.4
9 5 -13.3 -6.2 -0.0 0.1
9 6 1.1 7.8 0.3 -0.0
9 7 8.9 0.4 -0.0 -0.2
9 8 -9.3 -1.5 -0.0 0.5
9 9 -11.9 9.7 -0.4 0.2
10 0 -1.9 0.0 0.0 0.0
10 1 -6.2 3.4 -0.0 -0.0
10 2 -0.1 -0.2 -0.0 0.1
10 3 1.7 3.5 0.2 -0.3
10 4 -0.9 4.8 -0.1 0.1
10 5 0.6 -8.6 -0.2 -0.2
10 6 -0.9 -0.1 -0.0 0.1
10 7 1.9 -4.2 -0.1 -0.0
10 8 1.4 -3.4 -0.2 -0.1
10 9 -2.4 -0.1 -0.1 0.2
10 10 -3.9 -8.8 -0.0 -0.0
11 0 3.0 0.0 -0.0 0.0
11 1 -1.4 -0.0 -0.1 -0.0
11 2 -2.5 2.6 -0.0 0.1
11 3 2.4 -0.5 0.0 0.0
11 4 -0.9 -0.4 -0.0 0.2
11 5 0.3 0.6 -0.1 -0.0
11 6 -0.7 -0.2 0.0 0.0
11 7 -0.1 -1.7 -0.0 0.1
11 8 1.4 -1.6 -0.1 -0.0
11 9 -0.6 -3.0 -0.1 -0.1
11 10 0.2 -2.0 -0.1 0.0
11 11 3.1 -2.6 -0.1 -0.0
12 0 -2.0 0.0 0.0 0.0
12 1 -0.1 -1.2 -0.0 -0.0
12 2 0.5 0.5 -0.0 0.0
12 3 1.3 1.3 0.0 -0.1
12 4 -1.2 -1.8 -0.0 0.1
12 5 0.7 0.1 -0.0 -0.0
12 6 0.3 0.7 0.0 0.0
12 7 0.5 -0.1 -0.0 -0.0
12 8 -0.2 0.6 0.0 0.1
12 9 -0.5 0.2 -0.0 -0.0
12 10 0.1 -0.9 -0.0 -0.0
12 11 -1.1 -0.0 -0.0 0.0
12 12 -0.3 0.5 -0.1 -0.1
999999999999999999999999999999999999999999999999
999999999999999999999999999999999999999999999999