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