Class Reference for E1039 Core & Analysis Software
PHParameters.h
Go to the documentation of this file.
1 #ifndef PHParameterS_H
2 #define PHParameterS_H
3 
4 #include <phool/PHObject.h>
5 
6 #include <map>
7 #include <string>
8 #include <vector>
9 
10 class PdbParameterMap;
12 class PHCompositeNode;
13 
14 // contains parameters in our units,
15 // convert to G4 units inside get access methods
16 
17 class PHParameters: public PHObject
18 {
19  public:
20 
21  typedef std::map<const std::string, double> dMap;
22  typedef dMap::const_iterator dIter;
23  typedef std::vector<double> vdouble;
24  typedef std::map<const std::string, vdouble> vdMap;
25  typedef vdMap::const_iterator vdIter;
26  typedef std::map<const std::string, int> iMap;
27  typedef iMap::const_iterator iIter;
28  typedef std::map<const std::string, std::string> strMap;
29  typedef std::map<const std::string, std::string>::const_iterator strIter;
30 
31  explicit PHParameters(const std::string &name): pdbparam(NULL),detname(name) {}
32  PHParameters(const PHParameters &params, const std::string &name);
33 
34  virtual ~PHParameters() {}
35 
36  void Print() const;
37 
39  size_t get_hash() const;
40 
41  void set_int_param(const std::string &name, const int ival);
42  int get_int_param(const std::string &name) const;
43  bool exist_int_param(const std::string &name) const;
44  std::pair<std::map<const std::string, int>::const_iterator, std::map<const std::string, int>::const_iterator> get_all_int_params() {return std::make_pair(intparams.begin(), intparams.end());}
45 
46  void set_double_param(const std::string &name, const double dval);
47  double get_double_param(const std::string &name) const;
48  bool exist_double_param(const std::string &name) const;
49  std::pair< std::map<const std::string, double>::const_iterator, std::map<const std::string, double>::const_iterator> get_all_double_params() {return std::make_pair(doubleparams.begin(), doubleparams.end());}
50 
51  void set_vdouble_param(const std::string &name, const vdouble vdval);
52  vdouble get_vdouble_param(const std::string &name) const;
53  bool exist_vdouble_param(const std::string &name) const;
54  std::pair< std::map<const std::string, std::vector<double> >::const_iterator, std::map<const std::string, std::vector<double> >::const_iterator>
55  get_all_vdouble_params() {return std::make_pair(vdoubleparams.begin(), vdoubleparams.end());}
56 
57  void set_string_param(const std::string &name, const std::string &str);
58  std::string get_string_param(const std::string &name) const;
59  bool exist_string_param(const std::string &name) const;
60  std::pair< std::map<const std::string, std::string>::const_iterator, std::map<const std::string, std::string>::const_iterator> get_all_string_params() {return std::make_pair(stringparams.begin(), stringparams.end());}
61 
62  void set_name(const std::string &name) {detname = name;}
63  std::string Name() const {return detname;}
64 
65  void FillFrom(const PdbParameterMap *saveparams);
66  void FillFrom(const PdbParameterMapContainer *saveparamcontainer, const int layer);
67  void FillFrom(const PHParameters *saveparams);
68  // save parameters on node tree
69  void SaveToNodeTree(PHCompositeNode *topNode, const std::string &nodename);
70  // save parameters in container on node tree
71  void SaveToNodeTree(PHCompositeNode *topNode, const std::string &nodename, const int layer);
72  int WriteToDB();
73  int ReadFromDB();
74  int ReadFromDB(const std::string &name, const int layer);
75 // int WriteToFile(const std::string &extension, const std::string &dir = ".");
76 //
77 // //! simple read without super detector and layer structures
78 // inline int ReadFromFile(const std::string &name, const std::string &extension, const std::string &dir = ".")
79 // {return ReadFromFile(name, extension, 0, 0, dir);}
80 //
81 // //! Fully fledged read
82 // int ReadFromFile(const std::string &name, const std::string &extension, const int layer, const int issuper, const std::string &dir = ".");
84 
85  void printint() const;
86  void printdouble() const;
87  void printstring() const;
88 
89  protected:
90 
91  unsigned int ConvertStringToUint(const std::string &str) const;
93  std::string detname;
98 
99 
100  //No Class Def since this class is not intended to be persistent
101 };
102 
103 #endif
#define NULL
Definition: Pdb.h:9
std::map< const std::string, vdouble > vdMap
Definition: PHParameters.h:24
std::string detname
Definition: PHParameters.h:93
PdbParameterMap * pdbparam
Definition: PHParameters.h:92
strMap stringparams
Definition: PHParameters.h:97
vdMap::const_iterator vdIter
Definition: PHParameters.h:25
void printdouble() const
bool exist_vdouble_param(const std::string &name) const
iMap::const_iterator iIter
Definition: PHParameters.h:27
void set_string_param(const std::string &name, const std::string &str)
double get_double_param(const std::string &name) const
void set_name(const std::string &name)
Definition: PHParameters.h:62
vdMap vdoubleparams
Definition: PHParameters.h:95
void CopyToPdbParameterMap(PdbParameterMap *myparm)
void printstring() const
int get_int_param(const std::string &name) const
Definition: PHParameters.cc:60
void FillFrom(const PdbParameterMap *saveparams)
void set_int_param(const std::string &name, const int ival)
Definition: PHParameters.cc:54
std::pair< std::map< const std::string, int >::const_iterator, std::map< const std::string, int >::const_iterator > get_all_int_params()
Definition: PHParameters.h:44
void set_double_param(const std::string &name, const double dval)
Definition: PHParameters.cc:95
PHParameters(const std::string &name)
Definition: PHParameters.h:31
std::map< const std::string, std::string >::const_iterator strIter
Definition: PHParameters.h:29
std::pair< std::map< const std::string, std::vector< double > >::const_iterator, std::map< const std::string, std::vector< double > >::const_iterator > get_all_vdouble_params()
Definition: PHParameters.h:55
void SaveToNodeTree(PHCompositeNode *topNode, const std::string &nodename)
void printint() const
Definition: PHParameters.cc:83
std::string get_string_param(const std::string &name) const
unsigned int ConvertStringToUint(const std::string &str) const
std::map< const std::string, std::string > strMap
Definition: PHParameters.h:28
std::pair< std::map< const std::string, double >::const_iterator, std::map< const std::string, double >::const_iterator > get_all_double_params()
Definition: PHParameters.h:49
std::string Name() const
Definition: PHParameters.h:63
bool exist_int_param(const std::string &name) const
Definition: PHParameters.cc:73
dMap doubleparams
Definition: PHParameters.h:94
std::vector< double > vdouble
Definition: PHParameters.h:23
dMap::const_iterator dIter
Definition: PHParameters.h:22
void Print() const
std::pair< std::map< const std::string, std::string >::const_iterator, std::map< const std::string, std::string >::const_iterator > get_all_string_params()
Definition: PHParameters.h:60
void set_vdouble_param(const std::string &name, const vdouble vdval)
virtual ~PHParameters()
Definition: PHParameters.h:34
size_t get_hash() const
hash of binary information for checking purpose
std::map< const std::string, int > iMap
Definition: PHParameters.h:26
bool exist_string_param(const std::string &name) const
vdouble get_vdouble_param(const std::string &name) const
bool exist_double_param(const std::string &name) const
std::map< const std::string, double > dMap
Definition: PHParameters.h:21