Class Reference for E1039 Core & Analysis Software
PHG4ConsistencyCheck.cc
Go to the documentation of this file.
1 #include "PHG4ConsistencyCheck.h"
2 #include "PHG4HitContainer.h"
3 #include "PHG4InEvent.h"
5 #include "PHG4Hit.h"
6 #include "PHG4Particle.h"
7 
8 #include <phool/getClass.h>
9 
10 using namespace std;
11 
13  SubsysReco(name),
14  errorcnt(0)
15 {}
16 
17 int
19 {
20 
21  return 0;
22 }
23 
24 int
26 {
27  PHG4TruthInfoContainer *truthcont = findNode::getClass<PHG4TruthInfoContainer>(topNode, "G4TruthInfo");
28  if (!truthcont)
29  {
30  return 0;
31  }
34  int imax = 1000000;
35  for (titer = trange.first; titer != trange.second; ++titer)
36  {
37  if (titer->first < imax)
38  {
39  imax = titer->first;
40  }
41  }
42  cout << "min index: " << imax << endl;
43  std::pair< std::map<int,int>::const_iterator, std::map<int,int>::const_iterator > embtrk_b_e = truthcont->GetEmbeddedTrkIds();
44  std::map<int,int>::const_iterator embiter;
45  for (embiter = embtrk_b_e.first; embiter != embtrk_b_e.second; ++embiter)
46  {
47  cout << "embedded trkid: " << embiter->first << endl;
48  }
49  PHG4HitContainer *ghit = findNode::getClass<PHG4HitContainer>(topNode, "G4HIT_CEMC_E");
50  if (ghit)
51  {
53  PHG4HitContainer::ConstRange hit_begin_end = ghit->getHits();
54  set<int> printpart;
55  for (hit = hit_begin_end.first; hit != hit_begin_end.second; ++hit)
56  {
57 
58  int trkid = hit->second->get_trkid();
59  PHG4Particle* part = truthcont->GetParticle(trkid);
60  if (!part)
61  {
62  hit->second->identify();
63  cout << "could not locate geant particle " << trkid << " in G4HIT_CEMC_E" << endl;
64  errorcnt++;
65  }
66  else
67  {
68  int primary_id = part->get_primary_id();
69  if (truthcont->isEmbeded(primary_id)>0)
70  {
71  if (printpart.find(primary_id) == printpart.end())
72  {
73  cout << "primary id " << primary_id << " is embedded" << endl;
74  printpart.insert(primary_id);
75  PHG4Particle* parta = truthcont->GetParticle(primary_id);
76  parta->identify();
77  }
78  }
79  }
80  }
81  }
82  ghit = findNode::getClass<PHG4HitContainer>(topNode, "G4HIT_SVTX");
83  if (ghit)
84  {
86  PHG4HitContainer::ConstRange hit_begin_end = ghit->getHits();
87  for (hit = hit_begin_end.first; hit != hit_begin_end.second; ++hit)
88  {
89  int trkid = hit->second->get_trkid();
90  PHG4Particle* part = truthcont->GetParticle(trkid);
91  if (!part)
92  {
93  cout << "could not locate geant particle " << trkid << " in G4HIT_SVTX" << endl;
94  errorcnt++;
95  }
96  }
97  }
98 
99  return 0;
100 }
int InitRun(PHCompositeNode *)
init
int process_event(PHCompositeNode *)
event processing
PHG4ConsistencyCheck(const std::string &name="CONSISTENCYCHECK")
Map::const_iterator ConstIterator
ConstRange getHits(const unsigned int detid) const
return all hits matching a given detid
std::pair< ConstIterator, ConstIterator > ConstRange
virtual int get_primary_id() const
Definition: PHG4Particle.h:24
void identify(std::ostream &os=std::cout) const
Definition: PHG4Particle.cc:8
Range GetParticleRange()
Get a range of iterators covering the entire container.
int isEmbeded(const int trackid) const
std::pair< ConstIterator, ConstIterator > ConstRange
Map::const_iterator ConstIterator
std::pair< std::map< int, int >::const_iterator, std::map< int, int >::const_iterator > GetEmbeddedTrkIds() const
PHG4Particle * GetParticle(const int particleid)