Skip to content

Commit

Permalink
Modified limits for cleaning level changes. The former ones referred …
Browse files Browse the repository at this point in the history
…to the

old version using mean pedestal chages (and including outliers). New ones
are adapted to the new definitions (medians, no outliers) and consistent
with the MC productions
  • Loading branch information
moralejo committed Dec 19, 2024
1 parent 2913357 commit 7486271
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lstchain/image/cleaning.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ def pic_th(mean_ped):
recommended picture threshold for image cleaning (from a table)
"""
mp_edges = np.array([2.4, 3.1, 3.8, 4.5, 5.2])
mp_edges = [2.23, 2.88, 3.53, 4.19, 4.84]
picture_threshold = np.array([8, 10, 12, 14, 16, 18])

if mean_ped >= mp_edges[-1]:
Expand Down

0 comments on commit 7486271

Please sign in to comment.