Skip to content
Snippets Groups Projects
Commit 4b81e7c1 authored by Andrii Verbytskyi's avatar Andrii Verbytskyi Committed by Julien Maurer
Browse files

Use id instead of barcode for loop detection for TruthParticleFilter

Use id instead of barcode for loop detection for TruthParticleFilter
parent 5862ffec
No related branches found
No related tags found
2 merge requests!62244Daily merge of 23.0 into master,!62223Use id instead of barcode for loop detection for TruthParticleFilter
......@@ -304,16 +304,22 @@ bool TruthParticleFilterTool::isFromTau(const HepMC::ConstGenParticlePtr& part)
// Simple loop catch
if (prod==part->end_vertex()) return false;
#ifdef HEPMC3
// More complex loop catch
if ( find(m_barcode_trace.begin(),m_barcode_trace.end(),HepMC::barcode(prod)) != m_barcode_trace.end()){
if ( find(m_barcode_trace.begin(),m_barcode_trace.end(),prod->id()) != m_barcode_trace.end()){
ATH_MSG_DEBUG( "Found a loop (a la Sherpa sample). Backing out." );
return false;
}
m_barcode_trace.push_back(HepMC::barcode(prod));
#ifdef HEPMC3
m_barcode_trace.push_back(prod->id());
auto itrParent=prod->particles_in().begin();
auto endParent=prod->particles_in().end();
#else
// More complex loop catch
if ( find(m_barcode_trace.begin(),m_barcode_trace.end(),HepMC::barcode(prod)) != m_barcode_trace.end()){
ATH_MSG_DEBUG( "Found a loop (a la Sherpa sample). Backing out." );
return false;
}
m_barcode_trace.push_back(HepMC::barcode(prod));
auto itrParent = prod->particles_in_const_begin();
auto endParent = prod->particles_in_const_end();
#endif
......
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