Class Reference for E1039 Core & Analysis Software
TracePHG4Particle.cc
Go to the documentation of this file.
1 #include <iomanip>
3 #include <g4main/PHG4Particle.h>
9 #include <phool/getClass.h>
10 #include "TracePHG4Particle.h"
11 using namespace std;
12 
14  : SubsysReco("TracePHG4Particle")
15  , m_evt (0)
16  , m_mcevt (0)
17  , m_vec_trk (0)
18  , m_vec_dim (0)
19  , m_g4true (0)
20 {
21  ;
22 }
23 
25 {
27 }
28 
30 {
31  m_evt = findNode::getClass<SQEvent>(topNode, "SQEvent");
32  m_mcevt = findNode::getClass<SQMCEvent>(topNode, "SQMCEvent");
33  m_vec_trk = findNode::getClass<SQTrackVector>(topNode, "SQTruthTrackVector");
34  m_vec_dim = findNode::getClass<SQDimuonVector>(topNode, "SQTruthDimuonVector");
35  m_g4true = findNode::getClass<PHG4TruthInfoContainer>(topNode, "G4TruthInfo");
37 }
38 
40 {
41  static unsigned int n_evt = 0;
42  cout << "TracePHG4: Event " << ++n_evt << "\n";
43  if (!m_g4true) return Fun4AllReturnCodes::EVENT_OK;
44 
45  if (m_mcevt) {
46  cout << " MCE " << m_mcevt->get_process_id();
47  for (int ii = 0; ii < 4; ii++) {
48  cout << " " << m_mcevt->get_particle_id(ii);
49  //m_mcevt->get_particle_momentum(ii);
50  }
51  cout << " " << m_mcevt->get_weight() << endl;
52  }
53 
54  //PrintPrimaryParticles();
55  PrintParticles();
56  PrintTraces(-13);
57  PrintTraces(+13);
58 
59  if (m_vec_trk) {
60  for (unsigned int ii = 0; ii < m_vec_trk->size(); ii++) {
61  SQTrack* trk = m_vec_trk->at(ii);
62  cout << " SQT " << trk->get_charge() << endl;
63  //trk->get_pos_vtx();
64  //trk->get_mom_vtx();
65  }
66  }
67 
68  if (m_vec_dim) {
69  for (unsigned int ii = 0; ii < m_vec_dim->size(); ii++) {
70  SQDimuon* dim = m_vec_dim->at(ii);
71  cout << " SQD " << dim->get_pdg_id() << endl;
72  //dim->get_pos();
73  //dim->get_mom();
74  //dim->get_mom_pos();
75  //dim->get_mom_neg();
76  }
77  }
78 
80 }
81 
83 {
85 }
86 
87 void TracePHG4Particle::PrintPrimaryParticles()
88 {
89  cout << " PHG4P Primary:";
90  for (auto it = m_g4true->GetPrimaryParticleRange().first; it != m_g4true->GetPrimaryParticleRange().second; ++it) {
91  PHG4Particle* par = it->second;
92  int pid = par->get_pid();
93  cout << " " << pid;
94  }
95  cout << endl;
96 }
97 
98 void TracePHG4Particle::PrintParticles()
99 {
100  cout << " PHG4P All:";
101  for (auto it = m_g4true->GetParticleRange().first; it != m_g4true->GetParticleRange().second; ++it) {
102  PHG4Particle* par = it->second;
103  int pid = par->get_pid();
104  cout << " " << pid;
105  //PHG4VtxPoint* vtx = m_g4true->GetVtx(vtx_id);
106  }
107  cout << endl;
108 }
109 
110 void TracePHG4Particle::PrintTraces(const int pdg_id)
111 {
112  for (auto it = m_g4true->GetParticleRange().first; it != m_g4true->GetParticleRange().second; ++it) {
113  PHG4Particle* par = it->second;
114  if (par->get_pid() == pdg_id) TraceParent(par);
115  }
116 }
117 
118 void TracePHG4Particle::TraceParent(const PHG4Particle* par, const int depth)
119 {
120  if (depth == 1) cout << " Trace ";
121  int pdg_id = par->get_pid();
122  int trk_id = par->get_track_id(); // ID of this particle
123  //int vtx_id = par->get_vtx_id();
124  int par_id = par->get_parent_id();
125  //int pri_id = par->get_primary_id();
126  //cout << pdg_id << ":" << trk_id << ":" << par_id;
127  cout << pdg_id;
128  if (par_id == 0) {
129  cout << ".\n";
130  return;
131  }
132  cout << " <= ";
133  for (auto it = m_g4true->GetParticleRange().first; it != m_g4true->GetParticleRange().second; ++it) {
134  PHG4Particle* par = it->second;
135  if (par->get_track_id() == par_id) {
136  TraceParent(par, depth + 1);
137  return;
138  }
139  }
140  cout << "[Unexpected Case]" << endl;
141  exit(1);
142 }
virtual int get_track_id() const
Definition: PHG4Particle.h:21
virtual int get_pid() const
Definition: PHG4Particle.h:14
virtual int get_parent_id() const
Definition: PHG4Particle.h:23
Range GetParticleRange()
Get a range of iterators covering the entire container.
virtual const SQDimuon * at(const size_t id) const =0
virtual size_t size() const =0
An SQ interface class to hold one true or reconstructed dimuon.
Definition: SQDimuon.h:8
virtual int get_pdg_id() const =0
Return the GPD ID of parent particle. It is valid only for true dimuon.
virtual int get_particle_id(const int i) const =0
Return the particle ID of the primary process, where i=0...3 for "0 + 1 -> 2 + 3".
virtual double get_weight() const =0
Return the event weight.
virtual int get_process_id() const =0
Return the primary process ID.
virtual const SQTrack * at(const size_t id) const =0
virtual size_t size() const =0
An SQ interface class to hold one true or reconstructed track.
Definition: SQTrack.h:8
virtual int get_charge() const =0
Return the charge, i.e. +1 or -1.
int process_event(PHCompositeNode *topNode)
int Init(PHCompositeNode *topNode)
int InitRun(PHCompositeNode *topNode)
int End(PHCompositeNode *topNode)
Called at the end of all processing.