Class Reference for E1039 Core & Analysis Software
PHG4HitContainer.cc
Go to the documentation of this file.
1 #include "PHG4HitContainer.h"
2 #include "PHG4Hit.h"
3 #include "PHG4Hitv1.h"
4 
5 #include <phool/phool.h>
6 
7 #include <TSystem.h>
8 
9 #include <cstdlib>
10 
11 using namespace std;
12 
14  : id(-1), hitmap(), layers(), layerMaxID()
15 {
16 }
17 
18 PHG4HitContainer::PHG4HitContainer(const std::string &nodename)
19  : id(PHG4HitDefs::get_volume_id(nodename)), hitmap(), layers(), layerMaxID()
20 {
21 }
22 
23 void
25 {
26  while(hitmap.begin() != hitmap.end())
27  {
28  delete hitmap.begin()->second;
29  hitmap.erase(hitmap.begin());
30  }
31 
32  for(auto iter = layerMaxID.begin(); iter != layerMaxID.end(); ++iter)
33  {
34  iter->second = 0;
35  }
36  return;
37 }
38 
39 void
40 PHG4HitContainer::identify(ostream& os) const
41 {
42  ConstIterator iter;
43  os << "Number of hits: " << size() << endl;
44  for (iter = hitmap.begin(); iter != hitmap.end(); ++iter)
45  {
46  os << "hit key 0x" << hex << iter->first << dec << endl;
47  (iter->second)->identify();
48  }
49  set<unsigned int>::const_iterator siter;
50  os << "Number of layers: " << num_layers() << endl;
51  for (siter = layers.begin(); siter != layers.end(); ++siter)
52  {
53  os << "layer : " << *siter << endl;
54  }
55  return;
56 }
57 
59 PHG4HitContainer::getmaxkey(const unsigned int detid)
60 {
61  return layerMaxID[detid];
62 }
63 
65 PHG4HitContainer::genkey(const unsigned int detid)
66 {
67  PHG4HitDefs::keytype detidlong = detid;
68  if((detidlong >> PHG4HitDefs::keybits) > 0)
69  {
70  cout << PHWHERE << " detector id too large: " << detid << endl;
71  exit(EXIT_FAILURE);
72  }
73  PHG4HitDefs::keytype shiftval = detidlong << PHG4HitDefs::hit_idbits;
74  // cout << "max index: " << (detminmax->second)->first << endl;
75  // after removing hits with no energy deposition, we have holes
76  // in our hit ranges. This construct will get us the last hit in
77  // a layer and return it's hit id. Adding 1 will put us at the end of this layer
78  PHG4HitDefs::keytype hitid = getmaxkey(detid) + 1;
79  PHG4HitDefs::keytype newkey = hitid | shiftval;
80  if(hitmap.find(newkey) != hitmap.end())
81  {
82  cout << PHWHERE << " duplicate key: 0x"
83  << hex << newkey << dec
84  << " for detector " << detid
85  << " hitmap.size: " << hitmap.size()
86  << " hitid: " << hitid << " exiting now" << endl;
87  exit(EXIT_FAILURE);
88  }
89  return newkey;
90 }
91 
94 {
95  PHG4HitDefs::keytype key = newhit->get_hit_id();
96  if (hitmap.find(key) != hitmap.end())
97  {
98  cout << "hit with id 0x" << hex << key << dec << " exists already" << endl;
99  return hitmap.find(key);
100  }
101 
102  registerHitOnLayer(newhit);
103  hitmap[key] = newhit;
104  return hitmap.find(key);
105 }
106 
108 PHG4HitContainer::AddHit(const unsigned int detid, PHG4Hit *newhit)
109 {
110  PHG4HitDefs::keytype key = genkey(detid);
111  newhit->set_hit_id(key);
112  registerHitOnLayer(newhit);
113  hitmap[key] = newhit;
114  return hitmap.find(key);
115 }
116 
118 {
119  PHG4HitDefs::keytype detidlong = detid;
120  if ((detidlong >> PHG4HitDefs::keybits) > 0)
121  {
122  cout << " detector id too large: " << detid << endl;
123  exit(1);
124  }
125  PHG4HitDefs::keytype keylow = detidlong << PHG4HitDefs::hit_idbits;
126  PHG4HitDefs::keytype keyup = ((detidlong + 1) << PHG4HitDefs::hit_idbits) -1 ;
127  ConstRange retpair;
128  retpair.first = hitmap.lower_bound(keylow);
129  retpair.second = hitmap.upper_bound(keyup);
130  return retpair;
131 }
132 
134 { return std::make_pair( hitmap.begin(), hitmap.end() ); }
135 
136 
138 {
139  PHG4HitContainer::Iterator it = hitmap.find(key);
140  if(it == hitmap.end())
141  {
142  hitmap[key] = new PHG4Hitv1();
143  it = hitmap.find(key);
144  PHG4Hit* mhit = it->second;
145  mhit->set_hit_id(key);
146  mhit->set_edep(0.);
147  registerHitOnLayer(mhit);
148  }
149  return it;
150 }
151 
153 {
155  if(it != hitmap.end())
156  {
157  return it->second;
158  }
159 
160  return NULL;
161 }
162 
164 {
165  // unsigned int hitsbef = hitmap.size();
166  Iterator itr = hitmap.begin();
167  Iterator last = hitmap.end();
168  for (; itr != last; )
169  {
170  PHG4Hit *hit = itr->second;
171  if (hit->get_edep() == 0)
172  {
173  delete hit;
174  hitmap.erase(itr++);
175  }
176  else
177  {
178  ++itr;
179  }
180  }
181 // unsigned int hitsafter = hitmap.size();
182 // cout << "hist before: " << hitsbef
183 // << ", hits after: " << hitsafter << endl;
184  return;
185 }
186 
187 void PHG4HitContainer::AddLayer(const unsigned int ilayer)
188 {
189  layers.insert(ilayer);
190  layerMaxID[ilayer] = 0;
191 }
192 
194 {
195  PHG4HitDefs::keytype hitkey = hit->get_hit_id();
196  unsigned int detid = (hitkey & PHG4HitDefs::detid_mask) >> PHG4HitDefs::hit_idbits;
197  if(layerMaxID.find(detid) == layerMaxID.end())
198  {
199  AddLayer(detid);
200  }
201 
203  if(layerMaxID[detid] < hitid)
204  {
205  layerMaxID[detid] = hitid;
206  }
207 }
208 
#define NULL
Definition: Pdb.h:9
PHG4HitDefs::keytype getmaxkey(const unsigned int detid)
Map::const_iterator ConstIterator
unsigned int size(void) const
unsigned int num_layers(void) const
ConstIterator AddHit(PHG4Hit *newhit)
Map::iterator Iterator
PHG4Hit * findHit(PHG4HitDefs::keytype key)
void registerHitOnLayer(const PHG4Hit *hit)
Iterator findOrAddHit(PHG4HitDefs::keytype key)
void identify(std::ostream &os=std::cout) const
std::pair< ConstIterator, ConstIterator > ConstRange
void AddLayer(const unsigned int ilayer)
std::map< unsigned int, PHG4HitDefs::keytype > layerMaxID
void Reset()
Clear Event.
PHG4HitDefs::keytype genkey(const unsigned int detid)
std::set< unsigned int > layers
ConstRange getHits(void) const
return all hist
virtual float get_edep() const
Definition: PHG4Hit.h:31
virtual void set_hit_id(const PHG4HitDefs::keytype i)
Definition: PHG4Hit.h:67
virtual PHG4HitDefs::keytype get_hit_id() const
Definition: PHG4Hit.h:36
virtual void set_edep(const float f)
Definition: PHG4Hit.h:62
static const keytype hitid_mask
Definition: PHG4HitDefs.h:12
static const unsigned int hit_idbits
Definition: PHG4HitDefs.h:10
static const unsigned int keybits
Definition: PHG4HitDefs.h:9
int get_volume_id(const std::string &nodename)
Definition: PHG4HitDefs.cc:9
static const keytype detid_mask
Definition: PHG4HitDefs.h:11
unsigned int keytype
Definition: PHG4HitDefs.h:8
#define PHWHERE
Definition: phool.h:23