Class Reference for E1039 Core & Analysis Software
PHG4BlockGeomContainer.h
Go to the documentation of this file.
1 #ifndef PHG4BlockGeomContainer_H__
2 #define PHG4BlockGeomContainer_H__
3 
4 #include <phool/PHObject.h>
5 
6 #include <map>
7 
8 class PHG4BlockGeom;
9 
11 {
12  public:
13  typedef std::map<int,PHG4BlockGeom *> Map;
14  typedef Map::iterator Iterator;
15  typedef Map::const_iterator ConstIterator;
16  typedef std::pair<Iterator, Iterator> Range;
17  typedef std::pair<ConstIterator, ConstIterator> ConstRange;
18 
20  virtual ~PHG4BlockGeomContainer();
21 
22  void identify(std::ostream& os = std::cout) const;
23 
24  int AddLayerGeom(const int i, PHG4BlockGeom *mygeom);
25  int AddLayerGeom(PHG4BlockGeom *mygeom);
26  PHG4BlockGeom *GetLayerGeom(const int i);
27  int get_NLayers() const {return _layergeoms.size();}
28  std::pair<std::map<int,PHG4BlockGeom *>::const_iterator, std::map<int,PHG4BlockGeom *>::const_iterator> get_begin_end() const {return std::make_pair(_layergeoms.begin(), _layergeoms.end());}
29 
30  protected:
31  std::map<int,PHG4BlockGeom *> _layergeoms;
32  float _magfield;
33 
34  ClassDef(PHG4BlockGeomContainer,1)
35 };
36 
37 #endif
std::pair< std::map< int, PHG4BlockGeom * >::const_iterator, std::map< int, PHG4BlockGeom * >::const_iterator > get_begin_end() const
std::map< int, PHG4BlockGeom * > _layergeoms
void identify(std::ostream &os=std::cout) const
std::pair< ConstIterator, ConstIterator > ConstRange
int AddLayerGeom(const int i, PHG4BlockGeom *mygeom)
std::pair< Iterator, Iterator > Range
std::map< int, PHG4BlockGeom * > Map
PHG4BlockGeom * GetLayerGeom(const int i)
Map::const_iterator ConstIterator