Class Reference for E1039 Core & Analysis Software
PHG4CylinderGeomContainer.h
Go to the documentation of this file.
1 #ifndef PHG4CylinderGeomContainer_H__
2 #define PHG4CylinderGeomContainer_H__
3 
4 #include <phool/PHObject.h>
5 
6 #include <map>
7 
8 class PHG4CylinderGeom;
9 
11 {
12  public:
13  typedef std::map<int,PHG4CylinderGeom *> 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 AddLayerGeom(const int i, PHG4CylinderGeom *mygeom);
25  int AddLayerGeom(PHG4CylinderGeom *mygeom);
26  PHG4CylinderGeom *GetLayerGeom(const int i);
28  int get_NLayers() const {return layergeoms.size();}
29  std::pair<std::map<int,PHG4CylinderGeom *>::const_iterator, std::map<int,PHG4CylinderGeom *>::const_iterator> get_begin_end() const {return std::make_pair(layergeoms.begin(), layergeoms.end());}
30 
31  protected:
32  std::map<int,PHG4CylinderGeom *> layergeoms ;
33  float magfield;
34  ClassDef(PHG4CylinderGeomContainer,1)
35 };
36 
37 #endif
PHG4CylinderGeom * GetLayerGeom(const int i)
PHG4CylinderGeom * GetFirstLayerGeom()
std::pair< Iterator, Iterator > Range
int AddLayerGeom(const int i, PHG4CylinderGeom *mygeom)
std::pair< std::map< int, PHG4CylinderGeom * >::const_iterator, std::map< int, PHG4CylinderGeom * >::const_iterator > get_begin_end() const
void identify(std::ostream &os=std::cout) const
std::map< int, PHG4CylinderGeom * > layergeoms
std::pair< ConstIterator, ConstIterator > ConstRange
std::map< int, PHG4CylinderGeom * > Map