Class Reference for E1039 Core & Analysis Software
PHG4BlockCellGeomContainer.h
Go to the documentation of this file.
1 #ifndef PHG4BlockCellGeomContainer_H__
2 #define PHG4BlockCellGeomContainer_H__
3 
4 #include <phool/PHObject.h>
5 
6 #include <map>
7 
9 
11 {
12  public:
13  typedef std::map<int, PHG4BlockCellGeom*> 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 
21 
22  void identify(std::ostream& os = std::cout) const;
23 
24  int AddLayerCellGeom(const int i, PHG4BlockCellGeom *mygeom);
26  PHG4BlockCellGeom *GetLayerCellGeom(const int i);
27  int get_NLayers() const {return layergeoms.size();}
28  std::pair<std::map<int,PHG4BlockCellGeom *>::const_iterator, std::map<int,PHG4BlockCellGeom *>::const_iterator> get_begin_end() const {return std::make_pair(layergeoms.begin(), layergeoms.end());}
29 
30  protected:
31  std::map<int,PHG4BlockCellGeom *> layergeoms ;
32  ClassDef(PHG4BlockCellGeomContainer,1)
33 };
34 
35 #endif
int AddLayerCellGeom(const int i, PHG4BlockCellGeom *mygeom)
std::map< int, PHG4BlockCellGeom * > Map
void identify(std::ostream &os=std::cout) const
PHG4BlockCellGeom * GetLayerCellGeom(const int i)
std::pair< Iterator, Iterator > Range
std::pair< std::map< int, PHG4BlockCellGeom * >::const_iterator, std::map< int, PHG4BlockCellGeom * >::const_iterator > get_begin_end() const
std::map< int, PHG4BlockCellGeom * > layergeoms
std::pair< ConstIterator, ConstIterator > ConstRange