IAP GITLAB

Skip to content
Snippets Groups Projects
Commit 12537171 authored by Maximilian Reininghaus's avatar Maximilian Reininghaus :vulcan:
Browse files

Merge branch '598-particles-with-lifetime-zero-get-stuck-in-infinite-loop' into 'master'

Resolve "particles with lifetime zero get stuck in infinite loop"

Closes #598

See merge request !515
parents 5652db26 22753082
No related branches found
No related tags found
1 merge request!515Resolve "particles with lifetime zero get stuck in infinite loop"
Pipeline #10828 passed with warnings
......@@ -339,7 +339,8 @@ namespace corsika {
auto const returnCode = sequence_.selectDecay(view, sample_process);
if (returnCode != ProcessReturn::Decayed) {
CORSIKA_LOG_DEBUG("Particle did not decay!");
CORSIKA_LOG_ERROR("Particle {} did not decay!",
get_name(view.getProjectile().getPID()));
}
setEventType(view, history::EventType::Decay);
return returnCode;
......
......@@ -53,7 +53,9 @@ def parsePythia(filename):
float(particle.attrib['mWidth']) * 1e-15 * 1000.0 # mm / s
# those are certainly not stable....
elif pdg_id in (0, 423, 433, 4312, 4322, 5112, 5222):
ctau = 0.
print("missing ctau0 or width for: " + str(pdg_id) + " " + str(name))
print("setting ctau to arbitrary small value..")
ctau = 1.e-15
else:
print("missing lifetime: " + str(pdg_id) + " " + str(name))
sys.exit(1)
......
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