Class Reference for E1039 Core & Analysis Software
PHG4CylinderCellContainer.cc
Go to the documentation of this file.
2 #include "PHG4CylinderCellv1.h"
3 #include "PHG4CylinderCellDefs.h"
4 
5 #include <cstdlib>
6 
7 using namespace std;
8 
10 {
11 }
12 
13 void
15 {
16  while(cellmap.begin() != cellmap.end())
17  {
18  delete cellmap.begin()->second;
19  cellmap.erase(cellmap.begin());
20  }
21  return;
22 }
23 
24 void
26 {
27  map<unsigned int,PHG4CylinderCell *>::const_iterator iter;
28  os << "Number of cells: " << size() << endl;
29  for (iter = cellmap.begin(); iter != cellmap.end(); ++iter)
30  {
31  os << "cell key 0x" << hex << iter->first << dec << endl;
32  (iter->second)->identify();
33  }
34  set<int>::const_iterator siter;
35  os << "Number of layers: " << num_layers() << endl;
36  for (siter = layers.begin(); siter != layers.end(); ++siter)
37  {
38  os << "layer : " << *siter << endl;
39  }
40  return;
41 }
42 
43 
45 PHG4CylinderCellContainer::genkey(const unsigned int detid)
46 {
47  if ((detid >> PHG4CylinderCellDefs::keybits) > 0)
48  {
49  cout << " detector id too large: " << detid << endl;
50  exit(1);
51  }
52  unsigned int shiftval = detid << PHG4CylinderCellDefs::cell_idbits;
53  unsigned int cellid = cellmap.size();
54  cellid++;
55  PHG4CylinderCellDefs::keytype newkey = cellid | shiftval;
56  if (cellmap.find(newkey) != cellmap.end())
57  {
58  cout << " duplicate key: " << newkey << " exiting now" << endl;
59  exit(1);
60  }
61  return newkey;
62 }
63 
66 {
68  layers.insert(newcell->get_layer());
69  newcell->set_cell_id(key);
70  cellmap[key] = newcell;
71  return cellmap.find(key);
72 }
73 
76 {
77  if(cellmap.find(key)!=cellmap.end())
78  {
79  cout << "PHG4CylinderCellContainer::AddCylinderCellSpecifyKey: duplicate key: " << key << " exiting now" << endl;
80  exit(1);
81  }
82  layers.insert(newcell->get_layer());
83  newcell->set_cell_id(key);
84  cellmap[key] = newcell;
85  return cellmap.find(key);
86 }
87 
89 PHG4CylinderCellContainer::getCylinderCells(const unsigned int detid) const
90 {
91  if ((detid >> PHG4CylinderCellDefs::keybits) > 0)
92  {
93  cout << " detector id too large: " << detid << endl;
94  exit(1);
95  }
96  // unsigned int shiftval = detid << cell_idbits;
99 // cout << "keylow: 0x" << hex << keylow << dec << endl;
100 // cout << "keyup: 0x" << hex << keyup << dec << endl;
101  ConstRange retpair;
102  retpair.first = cellmap.lower_bound(keylow);
103  retpair.second = cellmap.upper_bound(keyup);
104  return retpair;
105 }
106 
109 { return std::make_pair( cellmap.begin(), cellmap.end() ); }
110 
111 
114 {
115  PHG4CylinderCellContainer::Iterator it = cellmap.find(key);
116  if(it == cellmap.end())
117  {
118  cellmap[key] = new PHG4CylinderCellv1();
119  it = cellmap.find(key);
120  PHG4CylinderCell* mcell = it->second;
121  mcell->set_cell_id(key);
122  layers.insert(mcell->get_layer()); // add layer to our set of layers
123  }
124  return it;
125 }
126 
129 {
130  PHG4CylinderCellContainer::ConstIterator it = cellmap.find(key);
131 
132  if(it != cellmap.end())
133  {
134  return it->second;
135  }
136 
137  return 0;
138 }
139 
140 double
142 {
143  ConstIterator iter;
144  double totalenergy = 0;
145  for (iter = cellmap.begin(); iter != cellmap.end(); ++iter)
146  {
147  totalenergy += iter->second->get_edep();
148  }
149  return totalenergy;
150 }
std::pair< ConstIterator, ConstIterator > ConstRange
ConstIterator AddCylinderCell(const unsigned int detid, PHG4CylinderCell *newcylinderCell)
Iterator findOrAddCylinderCell(PHG4CylinderCellDefs::keytype key)
ConstIterator AddCylinderCellSpecifyKey(const PHG4CylinderCellDefs::keytype key, PHG4CylinderCell *newcylinderCell)
PHG4CylinderCell * findCylinderCell(PHG4CylinderCellDefs::keytype key)
void identify(std::ostream &os=std::cout) const
ConstRange getCylinderCells(void) const
return all hist
PHG4CylinderCellDefs::keytype genkey(const unsigned int detid)
virtual void set_cell_id(const PHG4CylinderCellDefs::keytype id)
virtual unsigned int get_layer() const
keytype genkey(const unsigned short layer, const unsigned short zbin, const unsigned short iphibin)
Definition: PHG4CellDefs.cc:22