Skip to content
Snippets Groups Projects
Commit 7426c9a5 authored by John Chapman's avatar John Chapman
Browse files

MagicNumbers.h Patch

parent 73600a96
No related branches found
No related tags found
No related merge requests found
...@@ -166,7 +166,7 @@ namespace HepMC { ...@@ -166,7 +166,7 @@ namespace HepMC {
auto pv = p->production_vertex(); auto pv = p->production_vertex();
if (pv) { if (pv) {
for (auto pa: pv->particles_in()) { for (auto pa: pv->particles_in()) {
if (pa->pdg_id() != p->pdg_id()) continue; if (!pa || pa->pdg_id() != p->pdg_id()) continue;
out.push_front(uniqueID(p)); out.push_front(uniqueID(p));
get_particle_history(pa, out, -1); get_particle_history(pa, out, -1);
break; break;
...@@ -179,7 +179,7 @@ namespace HepMC { ...@@ -179,7 +179,7 @@ namespace HepMC {
auto pv = p->end_vertex(); auto pv = p->end_vertex();
if (pv) { if (pv) {
for (auto pa: pv->particles_out()) { for (auto pa: pv->particles_out()) {
if (pa->pdg_id() != p->pdg_id()) continue; if (!pa || pa->pdg_id() != p->pdg_id()) continue;
out.push_back(uniqueID(p)); out.push_back(uniqueID(p));
get_particle_history(pa, out, 1); get_particle_history(pa, out, 1);
break; break;
......
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