Class Reference for E1039 Core & Analysis Software
PHG4HitContainer.h
Go to the documentation of this file.
1 #ifndef PHG4HITCONTAINER_H__
2 #define PHG4HITCONTAINER_H__
3 
4 #include "PHG4HitDefs.h"
5 
6 #include <phool/PHObject.h>
7 #include <map>
8 #include <set>
9 #include <string>
10 class PHG4Hit;
11 
13 {
14 
15  public:
16  typedef std::map<PHG4HitDefs::keytype, PHG4Hit *> Map;
17  typedef Map::iterator Iterator;
18  typedef Map::const_iterator ConstIterator;
19  typedef std::pair<Iterator, Iterator> Range;
20  typedef std::pair<ConstIterator, ConstIterator> ConstRange;
21  typedef std::set<unsigned int>::const_iterator LayerIter;
22 
23  PHG4HitContainer(); //< used only by ROOT for DST readback
24  PHG4HitContainer(const std::string &nodename);
25 
26  virtual ~PHG4HitContainer() {}
27 
28  void Reset();
29 
30  void identify(std::ostream& os = std::cout) const;
31 
33  void SetID(int i) {id = i;}
34  int GetID() const {return id;}
35 
36  ConstIterator AddHit(PHG4Hit *newhit);
37 
38  ConstIterator AddHit(const unsigned int detid, PHG4Hit *newhit);
39 
41 
43 
44  PHG4HitDefs::keytype genkey(const unsigned int detid);
45 
47  ConstRange getHits(const unsigned int detid) const;
48 
50  ConstRange getHits( void ) const;
51 
52  unsigned int size( void ) const
53  { return hitmap.size(); }
54  unsigned int num_layers(void) const
55  { return layers.size(); }
56  std::pair<LayerIter, LayerIter> getLayers() const
57  { return make_pair(layers.begin(), layers.end());}
58  void AddLayer(const unsigned int ilayer);
59  void RemoveZeroEDep();
60  PHG4HitDefs::keytype getmaxkey(const unsigned int detid);
61 
62  void registerHitOnLayer(const PHG4Hit* hit);
63 
64  protected:
65 
66  int id; //< unique identifier from hash of node name. Defined following PHG4HitDefs::get_volume_id
68  std::set<unsigned int> layers; // layers is not reset since layers must not change event by event
69  std::map<unsigned int, PHG4HitDefs::keytype> layerMaxID;
70 
71  ClassDef(PHG4HitContainer,2)
72 };
73 
74 #endif
PHG4HitDefs::keytype getmaxkey(const unsigned int detid)
virtual ~PHG4HitContainer()
void SetID(int i)
container ID should follow definition of PHG4HitDefs::get_volume_id(DST nodename)
Map::const_iterator ConstIterator
unsigned int size(void) const
unsigned int num_layers(void) const
ConstIterator AddHit(PHG4Hit *newhit)
std::set< unsigned int >::const_iterator LayerIter
std::pair< Iterator, Iterator > Range
Map::iterator Iterator
PHG4Hit * findHit(PHG4HitDefs::keytype key)
void registerHitOnLayer(const PHG4Hit *hit)
Iterator findOrAddHit(PHG4HitDefs::keytype key)
std::pair< LayerIter, LayerIter > getLayers() const
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
std::map< PHG4HitDefs::keytype, PHG4Hit * > Map
ConstRange getHits(void) const
return all hist
unsigned int keytype
Definition: PHG4HitDefs.h:8