Class Reference for E1039 Core & Analysis Software
TraceHepMCParticle.cc
Go to the documentation of this file.
1 #include <iomanip>
4 #include <phool/getClass.h>
5 #include "TraceHepMCParticle.h"
6 using namespace std;
7 
9  : SubsysReco("TraceHepMCParticle")
10  , m_mcgem(0)
11 {
12  ;
13 }
14 
16 {
18 }
19 
21 {
22  m_mcgem = findNode::getClass<PHHepMCGenEventMap>(topNode, "PHHepMCGenEventMap");
24 }
25 
27 {
28  static unsigned int n_evt = 0;
29  cout << "TraceHepMC: Event " << ++n_evt << "\n";
30  if (!m_mcgem) return Fun4AllReturnCodes::EVENT_OK;
31  PrintParticles();
32  PrintTraces(-13);
33  PrintTraces(+13);
35 }
36 
38 {
40 }
41 
42 void TraceHepMCParticle::PrintParticles()
43 {
44  cout << " HepMC:";
45  for (PHHepMCGenEventMap::Iter iter = m_mcgem->begin(); iter != m_mcgem->end(); ++iter) {
46  PHHepMCGenEvent *genevt = iter->second;
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;
53 
54  //if (abs(pdg_id) == 13) TraceParent(par);
55  //const HepMC::GenVertex* vtx_pro = par->production_vertex();
56  //if (vtx_pro) {
57  // for (HepMC::GenVertex::particles_in_const_iterator it2 = vtx_pro->particles_in_const_begin();
58  // it2 != vtx_pro->particles_in_const_end(); it2++) {
59  // const HepMC::GenParticle* par2 = *it2;
60  // cout << " " << par2->pdg_id();
61  // }
62  //}
63  //cout << endl;
64  }
65  }
66  cout << endl;
67 }
68 
69 void TraceHepMCParticle::PrintTraces(const int pdg_id)
70 {
71  for (PHHepMCGenEventMap::Iter iter = m_mcgem->begin(); iter != m_mcgem->end(); ++iter) {
72  PHHepMCGenEvent *genevt = iter->second;
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);
78  }
79  }
80  cout << endl;
81 }
82 
83 void TraceHepMCParticle::TraceParent(const HepMC::GenParticle* par, const int depth)
84 {
85  if (depth == 1) cout << " Trace ";
86  cout << setw(5) << par->pdg_id();
87  const HepMC::GenVertex* vtx = par->production_vertex();
88  if (! vtx) {
89  cout << ".\n";
90  return;
91  }
92  cout << " <= ";
93  //cout << ":" << vtx->id() << " <= ";
94  bool line_1st = true;
95  for (HepMC::GenVertex::particles_in_const_iterator it = vtx->particles_in_const_begin(); it != vtx->particles_in_const_end(); it++) {
96  if (! line_1st) { // Fill spaces
97  cout << " "; // " Trace "
98  for (int dd = 0; dd < depth; dd++) cout << " "; // "***** <= "
99  }
100  TraceParent(*it, depth + 1);
101  line_1st = false;
102  }
103 }
std::map< int, PHHepMCGenEvent * >::iterator Iter
ConstIter end() const
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)