Class Reference for E1039 Core & Analysis Software
SQGeomAccLoose.cc
Go to the documentation of this file.
1 #include <iomanip>
2 #include <algorithm>
4 #include <g4main/PHG4Hit.h>
6 #include <phool/PHNodeIterator.h>
7 #include <phool/PHIODataNode.h>
8 #include <phool/getClass.h>
9 #include "SQGeomAccLoose.h"
10 using namespace std;
11 
12 SQGeomAccLoose::SQGeomAccLoose(const string& name)
13  : SubsysReco(name)
14  , m_npl_per_par(4)
15  , m_npar_per_evt(2)
16 {
17  ;
18 }
19 
21 {
22  ;
23 }
24 
26 {
28 }
29 
31 {
32  g4hc_h1t = findNode::getClass<PHG4HitContainer>(topNode, "G4HIT_H1T");
33  g4hc_h1b = findNode::getClass<PHG4HitContainer>(topNode, "G4HIT_H1B");
34  g4hc_h2t = findNode::getClass<PHG4HitContainer>(topNode, "G4HIT_H2T");
35  g4hc_h2b = findNode::getClass<PHG4HitContainer>(topNode, "G4HIT_H2B");
36  g4hc_h3t = findNode::getClass<PHG4HitContainer>(topNode, "G4HIT_H3T");
37  g4hc_h3b = findNode::getClass<PHG4HitContainer>(topNode, "G4HIT_H3B");
38  g4hc_h4t = findNode::getClass<PHG4HitContainer>(topNode, "G4HIT_H4T");
39  g4hc_h4b = findNode::getClass<PHG4HitContainer>(topNode, "G4HIT_H4B");
40 
41  if (!g4hc_h1t || !g4hc_h1b || !g4hc_h2t || !g4hc_h2b ||
42  !g4hc_h3t || !g4hc_h3b || !g4hc_h4t || !g4hc_h4b ) {
44  }
46 }
47 
49 {
51  vector<int> vec_id_h1 = ExtractParticleID(g4hc_h1t, g4hc_h1b);
52  vector<int> vec_id_h2 = ExtractParticleID(g4hc_h2t, g4hc_h2b);
53  vector<int> vec_id_h3 = ExtractParticleID(g4hc_h3t, g4hc_h3b);
54  vector<int> vec_id_h4 = ExtractParticleID(g4hc_h4t, g4hc_h4b);
55 
57  map<int, int> map_nhit; // [particle ID] -> N of hit planes
58  CountHitPlanesPerParticle(vec_id_h1, map_nhit);
59  CountHitPlanesPerParticle(vec_id_h2, map_nhit);
60  CountHitPlanesPerParticle(vec_id_h3, map_nhit);
61  CountHitPlanesPerParticle(vec_id_h4, map_nhit);
62 
64  int n_par_ok = 0;
65  for (map<int, int>::iterator it = map_nhit.begin(); it != map_nhit.end(); it++) {
66  if (it->second >= m_npl_per_par) n_par_ok++;
67  }
68 
69  return n_par_ok >= m_npar_per_evt ? Fun4AllReturnCodes::EVENT_OK : Fun4AllReturnCodes::ABORTEVENT;
70 }
71 
73 {
75 }
76 
77 void SQGeomAccLoose::ExtractParticleID(const PHG4HitContainer* g4hc, vector<int>& vec_par_id)
78 {
79  PHG4HitContainer::ConstRange range = g4hc->getHits();
80  for (PHG4HitContainer::ConstIterator it = range.first; it != range.second; it++) {
81  PHG4Hit* hit = it->second;
82  vec_par_id.push_back(hit->get_trkid());
83  }
84 }
85 
86 vector<int> SQGeomAccLoose::ExtractParticleID(const PHG4HitContainer* g4hc_t, const PHG4HitContainer* g4hc_b)
87 {
88  vector<int> vec;
89  ExtractParticleID(g4hc_t, vec);
90  ExtractParticleID(g4hc_b, vec);
91  sort(vec.begin(), vec.end());
92  vec.erase(unique(vec.begin(), vec.end()), vec.end());
93  return vec;
94 }
95 
96 void SQGeomAccLoose::CountHitPlanesPerParticle(const vector<int> vec_id, map<int, int>& map_nhit)
97 {
98  for (vector<int>::const_iterator it = vec_id.begin(); it != vec_id.end(); it++) {
99  int id = *it;
100  if (map_nhit.find(id) == map_nhit.end()) map_nhit[id] = 1;
101  else map_nhit[id]++;
102  }
103 }
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_trkid() const
Definition: PHG4Hit.h:41
virtual ~SQGeomAccLoose()
SQGeomAccLoose(const std::string &name="SQGeomAccLoose")
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int InitRun(PHCompositeNode *topNode)
int process_event(PHCompositeNode *topNode)
int Init(PHCompositeNode *topNode)