diff --git a/Generators/TruthUtils/TruthUtils/MagicNumbers.h b/Generators/TruthUtils/TruthUtils/MagicNumbers.h index 645e534814e3d286eef47e47d9029c262008fc65..c9f3b72994e9697dc009e46cdc41aca40e31ce08 100644 --- a/Generators/TruthUtils/TruthUtils/MagicNumbers.h +++ b/Generators/TruthUtils/TruthUtils/MagicNumbers.h @@ -167,7 +167,7 @@ namespace HepMC { auto pv = p->production_vertex(); if (pv) { 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)); get_particle_history(pa, out, -1); break; @@ -180,7 +180,7 @@ namespace HepMC { auto pv = p->end_vertex(); if (pv) { 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)); get_particle_history(pa, out, 1); break;