Class Reference for E1039 Core & Analysis Software
PHG4ParameterInterface.h
Go to the documentation of this file.
1 #ifndef PHG4ParameterInterface__H
2 #define PHG4ParameterInterface__H
3 
4 #include <map>
5 #include <string>
6 
7 class PHCompositeNode;
8 class PHG4Parameters;
9 
13 {
14  public:
15  PHG4ParameterInterface(const std::string &name);
17 
18  void set_paramname(const std::string &name);
19  virtual void SetDefaultParameters() = 0;
20 
21  // Get/Set parameters from macro
22  void set_double_param(const std::string &name, const double dval);
23  double get_double_param(const std::string &name) const;
24  void set_int_param(const std::string &name, const int ival);
25  int get_int_param(const std::string &name) const;
26  void set_string_param(const std::string &name, const std::string &sval);
27  std::string get_string_param(const std::string &name) const;
28 
30  void SaveToNodeTree(PHCompositeNode *runNode, const std::string &nodename);
31  void PutOnParNode(PHCompositeNode *parNode, const std::string &nodename);
32  protected:
33  void set_default_double_param( const std::string &name, const double dval);
34  void set_default_int_param( const std::string &name, const int ival);
35  void set_default_string_param( const std::string &name, const std::string &sval);
36  void InitializeParameters();
37 
38  private:
39  PHG4Parameters *params;
40  std::map<const std::string, double> dparams;
41  std::map<const std::string, int> iparams;
42  std::map<const std::string, std::string> cparams;
43 
44  std::map<const std::string, double> default_double;
45  std::map<const std::string, int> default_int;
46  std::map<const std::string, std::string> default_string;
47 
48 };
49 
50 #endif
void set_int_param(const std::string &name, const int ival)
void set_default_double_param(const std::string &name, const double dval)
void SaveToNodeTree(PHCompositeNode *runNode, const std::string &nodename)
std::string get_string_param(const std::string &name) const
void set_default_int_param(const std::string &name, const int ival)
PHG4ParameterInterface(const std::string &name)
double get_double_param(const std::string &name) const
void set_double_param(const std::string &name, const double dval)
void set_string_param(const std::string &name, const std::string &sval)
void set_default_string_param(const std::string &name, const std::string &sval)
void PutOnParNode(PHCompositeNode *parNode, const std::string &nodename)
virtual void SetDefaultParameters()=0
int get_int_param(const std::string &name) const
void set_paramname(const std::string &name)