Class Reference for E1039 Core & Analysis Software
PdbParameterMap.h
Go to the documentation of this file.
1 #ifndef PDBPARAMETERMAP__H
2 #define PDBPARAMETERMAP__H
3 
4 #include "PdbCalChan.h"
5 
6 #include <map>
7 #include <string>
8 
10 {
11  public:
12  typedef std::map<const std::string, double> dMap;
13  typedef std::map<const std::string, int> iMap;
14  typedef std::map<const std::string, std::string> strMap;
15  typedef dMap::const_iterator dIter;
16  typedef iMap::const_iterator iIter;
17  typedef strMap::const_iterator strIter;
18  typedef std::pair<dIter, dIter> dConstRange;
19  typedef std::pair<iIter, iIter> iConstRange;
20  typedef std::pair<strIter, strIter> strConstRange;
21 
23  virtual ~PdbParameterMap() {}
24 
25  void print() const;
26  void Reset(); // from PHObject - clear content
27 
29  size_t get_hash() const;
30 
32  {return make_pair(dparams.begin(),dparams.end());}
33 
35  {return make_pair(iparams.begin(),iparams.end());}
36 
37 
39  {return make_pair(cparams.begin(),cparams.end());}
40 
41  void set_int_param(const std::string &name, const int ival);
42  void set_double_param(const std::string &name, const double dval);
43  void set_string_param(const std::string &name, const std::string &str);
44 
45  protected:
46 
50 
51 
53 
54 };
55 
56 #endif
ClassDef(PdbCalChan, 1)
iConstRange get_iparam_iters() const
void Reset()
Clear Event.
std::pair< dIter, dIter > dConstRange
virtual ~PdbParameterMap()
dConstRange get_dparam_iters() const
dMap::const_iterator dIter
std::map< const std::string, std::string > strMap
std::map< const std::string, int > iMap
size_t get_hash() const
hash of binary information for checking purpose
std::pair< iIter, iIter > iConstRange
strConstRange get_cparam_iters() const
void set_double_param(const std::string &name, const double dval)
std::pair< strIter, strIter > strConstRange
void set_int_param(const std::string &name, const int ival)
std::map< const std::string, double > dMap
strMap::const_iterator strIter
iMap::const_iterator iIter
void print() const
void set_string_param(const std::string &name, const std::string &str)