Class Reference for E1039 Core & Analysis Software
PHG4CylinderCellContainer.h
Go to the documentation of this file.
1 #ifndef PHG4CYLINDERCELLCONTAINER_H__
2 #define PHG4CYLINDERCELLCONTAINER_H__
3 
4 #include "PHG4CylinderCell.h"
5 
6 #include <phool/PHObject.h>
7 
8 #include <map>
9 #include <set>
10 
12 {
13 
14  public:
15  typedef std::map<PHG4CylinderCellDefs::keytype,PHG4CylinderCell *> Map;
16  typedef Map::iterator Iterator;
17  typedef Map::const_iterator ConstIterator;
18  typedef std::pair<Iterator, Iterator> Range;
19  typedef std::pair<ConstIterator, ConstIterator> ConstRange;
20  typedef std::set<int>::const_iterator LayerIter;
21  typedef std::pair<LayerIter, LayerIter> LayerRange;
22 
24 
26 
27  void Reset();
28 
29  void identify(std::ostream& os = std::cout) const;
30 
31  ConstIterator AddCylinderCell(const unsigned int detid, PHG4CylinderCell *newcylinderCell);
33 
36  cellmap.erase(key);
37  }
38 
41  {
42  Iterator its = cellmap.begin();
43  Iterator last = cellmap.end();
44  for (; its != last;)
45  {
46  if (its->second == cell)
47  {
48  cellmap.erase(its++);
49  }
50  else
51  {
52  ++its;
53  }
54  }
55  }
56 
57 
59 
60  PHG4CylinderCellDefs::keytype genkey(const unsigned int detid);
61 
63  ConstRange getCylinderCells(const unsigned int detid) const;
64 
66  ConstRange getCylinderCells( void ) const;
67 
69 
70  unsigned int size( void ) const
71  { return cellmap.size(); }
72  unsigned int num_layers(void) const
73  { return layers.size(); }
75  { return make_pair(layers.begin(), layers.end());}
76 
77  double getTotalEdep() const;
78 
79  protected:
81  std::set<int> layers; // layers is not reset since layers must not change event by event
82 
83  ClassDef(PHG4CylinderCellContainer,1)
84 };
85 
86 #endif
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 RemoveCylinderCell(PHG4CylinderCell *cell)
inefficent, use key where possible instead
void identify(std::ostream &os=std::cout) const
std::set< int >::const_iterator LayerIter
std::map< PHG4CylinderCellDefs::keytype, PHG4CylinderCell * > Map
ConstRange getCylinderCells(void) const
return all hist
unsigned int size(void) const
void RemoveCylinderCell(PHG4CylinderCellDefs::keytype key)
preferred removal method, key is currently the cell id
unsigned int num_layers(void) const
PHG4CylinderCellDefs::keytype genkey(const unsigned int detid)
std::pair< Iterator, Iterator > Range
std::pair< LayerIter, LayerIter > LayerRange