Class Reference for E1039 Core & Analysis Software
PHG4ParameterContainerInterface.h
Go to the documentation of this file.
1 #ifndef PHG4ParameterContainerInterface__H
2 #define PHG4ParameterContainerInterface__H
3 
4 #include <map>
5 #include <string>
6 
7 class PHCompositeNode;
8 class PHG4Parameters;
10 
14 {
15  public:
16  PHG4ParameterContainerInterface(const std::string &name);
18 
19  void set_name(const std::string &name);
20  virtual void SetDefaultParameters() = 0;
21 
22  // Get/Set parameters from macro
23  void set_double_param(const int id, const std::string &name, const double dval);
24  double get_double_param(const int id, const std::string &name) const;
25  void set_int_param(const int id, const std::string &name, const int ival);
26  int get_int_param(const int id, const std::string &name) const;
27  void set_string_param(const int id, const std::string &name, const std::string &sval);
28  std::string get_string_param(const int id, const std::string &name) const;
29 
31  void CreateInitialize(const int detid);
32  void SaveToNodeTree(PHCompositeNode *runNode, const std::string &nodename);
33  void PutOnParNode(PHCompositeNode *parNode, const std::string &nodename);
34  int ExistDetid(const int detid) const;
35 
36  protected:
37  void set_default_double_param( const std::string &name, const double dval);
38  void set_default_int_param( const std::string &name, const int ival);
39  void set_default_string_param( const std::string &name, const std::string &sval);
40  void InitializeParameters();
41  const PHG4ParametersContainer *GetParamsContainer() {return paramscontainer;}
43  const PHG4Parameters *GetDefaultParameters() {return defaultparams;}
44 
45  private:
46  PHG4ParametersContainer *paramscontainer;
47  PHG4Parameters *defaultparams;
48  std::map<int, PHG4Parameters *> macroparams;
49 };
50 
51 #endif
std::string get_string_param(const int id, const std::string &name) const
void set_default_int_param(const std::string &name, const int ival)
void set_int_param(const int id, const std::string &name, const int ival)
const PHG4ParametersContainer * GetParamsContainer()
void set_default_double_param(const std::string &name, const double dval)
double get_double_param(const int id, const std::string &name) const
void SaveToNodeTree(PHCompositeNode *runNode, const std::string &nodename)
int get_int_param(const int id, const std::string &name) const
PHG4ParametersContainer * GetParamsContainerModify()
void set_default_string_param(const std::string &name, const std::string &sval)
PHG4ParameterContainerInterface(const std::string &name)
void set_double_param(const int id, const std::string &name, const double dval)
void PutOnParNode(PHCompositeNode *parNode, const std::string &nodename)
void set_string_param(const int id, const std::string &name, const std::string &sval)
virtual void SetDefaultParameters()=0