22 m_mcgem = findNode::getClass<PHHepMCGenEventMap>(topNode,
"PHHepMCGenEventMap");
28 static unsigned int n_evt = 0;
29 cout <<
"TraceHepMC: Event " << ++n_evt <<
"\n";
42 void TraceHepMCParticle::PrintParticles()
47 HepMC::GenEvent *evt = genevt->
getEvent();
48 for (HepMC::GenEvent::particle_const_iterator it = evt->particles_begin();
49 it != evt->particles_end(); it++) {
50 const HepMC::GenParticle* par = *it;
51 int pdg_id = par->pdg_id();
52 cout <<
" " << pdg_id;
69 void TraceHepMCParticle::PrintTraces(
const int pdg_id)
73 HepMC::GenEvent *evt = genevt->
getEvent();
74 for (HepMC::GenEvent::particle_const_iterator it = evt->particles_begin();
75 it != evt->particles_end(); it++) {
76 const HepMC::GenParticle* par = *it;
77 if (par->pdg_id() == pdg_id) TraceParent(par);
83 void TraceHepMCParticle::TraceParent(
const HepMC::GenParticle* par,
const int depth)
85 if (depth == 1) cout <<
" Trace ";
86 cout << setw(5) << par->pdg_id();
87 const HepMC::GenVertex* vtx = par->production_vertex();
95 for (HepMC::GenVertex::particles_in_const_iterator it = vtx->particles_in_const_begin(); it != vtx->particles_in_const_end(); it++) {
98 for (
int dd = 0; dd < depth; dd++) cout <<
" ";
100 TraceParent(*it, depth + 1);
std::map< int, PHHepMCGenEvent * >::iterator Iter
ConstIter begin() const
iterator from lowest ID to highest, i.e. background to signal
virtual HepMC::GenEvent * getEvent()
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int process_event(PHCompositeNode *topNode)
int Init(PHCompositeNode *topNode)
int InitRun(PHCompositeNode *topNode)