Class Reference for E1039 Core & Analysis Software
PHG4CellContainer.cc
Go to the documentation of this file.
1 #include "PHG4CellContainer.h"
2 #include "PHG4Cellv1.h"
3 #include "PHG4CellDefs.h"
4 
5 #include <cstdlib>
6 
7 using namespace std;
8 
10 {}
11 
12 void
14 {
15  while(cellmap.begin() != cellmap.end())
16  {
17  delete cellmap.begin()->second;
18  cellmap.erase(cellmap.begin());
19  }
20  return;
21 }
22 
23 void
24 PHG4CellContainer::identify(ostream& os) const
25 {
26  ConstIterator iter;
27  os << "Number of cells: " << size() << endl;
28  for (iter = cellmap.begin(); iter != cellmap.end(); ++iter)
29  {
30  os << "cell key 0x" << hex << iter->first << dec << endl;
31  (iter->second)->identify();
32  }
33  return;
34 }
35 
38 {
39  PHG4CellDefs::keytype key = newcell->get_cellid();
40  if (cellmap.find(key) != cellmap.end())
41  {
42  cout << "overwriting cell 0x" << hex << key << dec << endl;
43  cout << "layer: " << PHG4CellDefs::get_detid(key) << endl;
44  }
45  cellmap[key] = newcell;
46  return cellmap.find(key);
47 }
48 
51 {
52  if(cellmap.find(key)!=cellmap.end())
53  {
54  cout << "PHG4CellContainer::AddCellSpecifyKey: duplicate key: " << key << " exiting now" << endl;
55  exit(1);
56  }
57  newcell->set_cellid(key);
58  cellmap[key] = newcell;
59  return cellmap.find(key);
60 }
61 
63 PHG4CellContainer::getCells(const unsigned short int detid) const
64 {
65  PHG4CellDefs::keytype tmp = detid;
66  PHG4CellDefs::keytype keylow = tmp << PHG4CellDefs::bitshift_layer;
67  PHG4CellDefs::keytype keyup = ((tmp + 1)<< PHG4CellDefs::bitshift_layer) -1 ;
68 // cout << "keylow: 0x" << hex << keylow << dec << endl;
69 // cout << "keyup: 0x" << hex << keyup << dec << endl;
70  ConstRange retpair;
71  retpair.first = cellmap.lower_bound(keylow);
72  retpair.second = cellmap.upper_bound(keyup);
73  return retpair;
74 }
75 
78 { return std::make_pair( cellmap.begin(), cellmap.end() ); }
79 
80 
83 {
84  PHG4CellContainer::Iterator it = cellmap.find(key);
85  if(it == cellmap.end())
86  {
87  cellmap[key] = new PHG4Cellv1();
88  it = cellmap.find(key);
89  PHG4Cell* mcell = it->second;
90  mcell->set_cellid(key);
91  }
92  return it;
93 }
94 
95 PHG4Cell*
97 {
98  PHG4CellContainer::ConstIterator it = cellmap.find(key);
99 
100  if(it != cellmap.end())
101  {
102  return it->second;
103  }
104 
105  return 0;
106 }
107 
108 double
110 {
111  ConstIterator iter;
112  double totalenergy = 0;
113  for (iter = cellmap.begin(); iter != cellmap.end(); ++iter)
114  {
115  totalenergy += iter->second->get_edep();
116  }
117  return totalenergy;
118 }
PHG4Cell * findCell(PHG4CellDefs::keytype key)
std::pair< ConstIterator, ConstIterator > ConstRange
double getTotalEdep() const
Map::const_iterator ConstIterator
ConstRange getCells(void) const
return all hist
ConstIterator AddCellSpecifyKey(const PHG4CellDefs::keytype key, PHG4Cell *newCell)
void Reset()
Clear Event.
Iterator findOrAddCell(PHG4CellDefs::keytype key)
void identify(std::ostream &os=std::cout) const
Map::iterator Iterator
ConstIterator AddCell(PHG4Cell *newCell)
virtual void set_cellid(const PHG4CellDefs::keytype i)
Definition: PHG4Cell.h:39
virtual PHG4CellDefs::keytype get_cellid() const
Definition: PHG4Cell.h:41
unsigned long long keytype
Definition: PHG4CellDefs.h:7
short int get_detid(const PHG4CellDefs::keytype key)