Class Reference for E1039 Core & Analysis Software
PHG4CellContainer.h
Go to the documentation of this file.
1 #ifndef PHG4CELLCONTAINER_H__
2 #define PHG4CELLCONTAINER_H__
3 
4 #include "PHG4Cell.h"
5 
6 #include <phool/PHObject.h>
7 
8 #include <map>
9 #include <set>
10 
12 {
13 
14  public:
15  typedef std::map<PHG4CellDefs::keytype,PHG4Cell *> 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 
22 
23  virtual ~PHG4CellContainer() {}
24 
25  void Reset();
26 
27  void identify(std::ostream& os = std::cout) const;
28 
29  ConstIterator AddCell(PHG4Cell *newCell);
31 
34  cellmap.erase(key);
35  }
36 
38  void RemoveCell(PHG4Cell *cell)
39  {
40  Iterator its = cellmap.begin();
41  Iterator last = cellmap.end();
42  for (; its != last;)
43  {
44  if (its->second == cell)
45  {
46  cellmap.erase(its++);
47  }
48  else
49  {
50  ++its;
51  }
52  }
53  }
54 
55 
57 
59  ConstRange getCells(const unsigned short int detid) const;
60 
62  ConstRange getCells( void ) const;
63 
65 
66  unsigned int size( void ) const
67  { return cellmap.size(); }
68 
69  double getTotalEdep() const;
70 
71  protected:
73  ClassDef(PHG4CellContainer,1)
74 };
75 
76 #endif
void RemoveCell(PHG4Cell *cell)
inefficent, use key where possible instead
PHG4Cell * findCell(PHG4CellDefs::keytype key)
void RemoveCell(PHG4CellDefs::keytype key)
preferred removal method, key is currently the cell id
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.
std::pair< Iterator, Iterator > Range
Iterator findOrAddCell(PHG4CellDefs::keytype key)
void identify(std::ostream &os=std::cout) const
std::map< PHG4CellDefs::keytype, PHG4Cell * > Map
unsigned int size(void) const
Map::iterator Iterator
virtual ~PHG4CellContainer()
ConstIterator AddCell(PHG4Cell *newCell)
unsigned long long keytype
Definition: PHG4CellDefs.h:7