Skip to content

Commit

Permalink
threshold gh lambda at 1e-5
Browse files Browse the repository at this point in the history
  • Loading branch information
Areustle committed Oct 3, 2024
1 parent dff2a68 commit d67354c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nuspacesim/simulation/eas_optical/shower_properties.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def gaisser_hillas_particle_count(
Xmax = Xm + (70.0 * np.log10(Eshow * 1.0e-8))
λ = p1 + p2 * Xmask + p3 * Xmask * Xmask
λ[λ > 100.0] = 100.0
λ[λ < 1.0] = 1.0
λ[λ < 1.0e-5] = 1.0e-5

# Parametric Form Parameters
x = (Xmask - X0) / λ
Expand Down

0 comments on commit d67354c

Please sign in to comment.