From fc54532b79ea1cbc908d562cc107710cef38eb2f Mon Sep 17 00:00:00 2001 From: Johannes Schumann <johannes.schumann@fau.de> Date: Tue, 14 Dec 2021 23:47:15 +0100 Subject: [PATCH] Correct particle list for LE zero weight --- km3buu/physics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/km3buu/physics.py b/km3buu/physics.py index db2f974..d47ac14 100644 --- a/km3buu/physics.py +++ b/km3buu/physics.py @@ -132,7 +132,7 @@ def visible_energy_fraction(pdgid, energy): weight = neutron_weight(tmp) elif pdgid == 2122: weight = proton_weight(tmp) - elif pdgid in [12, -13, 13, 113, 213]: + elif pdgid in [12,-12,14,-14,16,-16, -13, 13, 15, -15]: weight = 0.0 else: weight = proton_weight(tmp) -- GitLab