IAP GITLAB

Skip to content
Snippets Groups Projects
Commit 4177a13a authored by Matthieu Carrere's avatar Matthieu Carrere
Browse files

added new custom feature for telescopes array

parent 75f3ef36
No related branches found
No related tags found
No related merge requests found
Pipeline #5633 canceled
......@@ -75,7 +75,12 @@ 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
......@@ -102,7 +107,7 @@ NSHOW $(NSHOW) // Requires NSHOW environment variable.
#endif
#ifdef EMIN
# ifdef EMAX
ERANGE $(EMIN)E3 $(EMAX)E3 // Requires EMIN and EMAX in units of TeV.
ERANGE $(EMIN) $(EMAX) // Requires EMIN and EMAX in units of GeV.
# endif
#endif
#ifdef ESLOPE
......@@ -120,7 +125,11 @@ ESLOPE $(ESLOPE) // Requires spectral slope ESLOPE (<0)
* 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
*
......@@ -132,7 +141,9 @@ CSCAT 10 2000e2 0. // Use shower several times (gammas, point source only)
CSCAT 20 2500e2 0. // Use shower several times (protons+electrons+..., larger area for diffuse origin)
#endif
#ifdef NSCAT
# ifdef CSCAT
# 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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment