Class Reference for E1039 Core & Analysis Software
PHG4ParametersContainer.h
Go to the documentation of this file.
1 #ifndef PHG4ParametersContainer__h
2 #define PHG4ParametersContainer__h
3 
4 #include <phool/PHObject.h>
5 
6 #include <map>
7 #include <string>
8 
9 class PHG4Parameters;
11 class PHCompositeNode;
12 
16 {
17  public:
18  typedef std::map<int, PHG4Parameters *> Map;
19  typedef Map::iterator Iterator;
20  typedef Map::const_iterator ConstIterator;
21  typedef std::pair<Iterator, Iterator> Range;
22  typedef std::pair<ConstIterator, ConstIterator> ConstRange;
23 
24  explicit PHG4ParametersContainer(const std::string &name = "NONE");
25  virtual ~PHG4ParametersContainer();
26 
27  void AddPHG4Parameters(const int layer, PHG4Parameters *params);
28  const PHG4Parameters *GetParameters(const int layer) const;
29  PHG4Parameters *GetParametersToModify(const int layer);
30  int WriteToFile(const std::string &extension, const std::string &dir);
31  int WriteToDB();
32 
33  void set_name(const std::string &name) { superdetectorname = name; }
34  std::string Name() const { return superdetectorname; }
35  // std::pair<std::map<int, PHG4Parameters *>::const_iterator, std::map<int, PHG4Parameters *>::const_iterator> GetAllParameters() {return std::make_pair(parametermap.begin(),parametermap.end());}
36  ConstRange GetAllParameters() const { return std::make_pair(parametermap.begin(), parametermap.end()); }
37  void Print() const;
38  void SaveToNodeTree(PHCompositeNode *topNode, const std::string &nodename);
39  int ExistDetid(const int detid) const;
40  void clear() { parametermap.clear(); }
41  void FillFrom(const PdbParameterMapContainer *saveparamcontainer);
42  void CreateAndFillFrom(const PdbParameterMapContainer *saveparamcontainer, const std::string &name);
43 
44  protected:
46  std::string superdetectorname;
47  std::map<int, PHG4Parameters *> parametermap;
48 };
49 
50 #endif //PHG4ParametersContainer__h
Map::const_iterator ConstIterator
PHG4ParametersContainer(const std::string &name="NONE")
void set_name(const std::string &name)
int WriteToFile(const std::string &extension, const std::string &dir)
std::map< int, PHG4Parameters * > parametermap
void CreateAndFillFrom(const PdbParameterMapContainer *saveparamcontainer, const std::string &name)
void AddPHG4Parameters(const int layer, PHG4Parameters *params)
int ExistDetid(const int detid) const
ConstRange GetAllParameters() const
void CopyToPdbParameterMapContainer(PdbParameterMapContainer *myparm)
const PHG4Parameters * GetParameters(const int layer) const
std::pair< ConstIterator, ConstIterator > ConstRange
void FillFrom(const PdbParameterMapContainer *saveparamcontainer)
std::map< int, PHG4Parameters * > Map
std::pair< Iterator, Iterator > Range
void SaveToNodeTree(PHCompositeNode *topNode, const std::string &nodename)
PHG4Parameters * GetParametersToModify(const int layer)