Class Reference for E1039 Core & Analysis Software
PdbParameterMap.cc
Go to the documentation of this file.
1 #include "PdbParameterMap.h"
2 
3 #include <boost/functional/hash.hpp>
4 #include <iostream>
5 
6 using namespace std;
7 
8 void
10 {
11  cout <<"PdbParameterMap::print - Hash 0x"<<std::hex << get_hash()<<std::dec<<endl;
12 
13  cout << "double parameters: " << endl;
14  for (map<const string, double>::const_iterator iter = dparams.begin(); iter != dparams.end(); ++iter)
15  {
16  cout << iter->first << ": " << iter->second << endl;
17  }
18  cout << "integer parameters: " << endl;
19  for (map<const string, int>::const_iterator iter = iparams.begin(); iter != iparams.end(); ++iter)
20  {
21  cout << iter->first << ": " << iter->second << endl;
22  }
23  cout << "string parameters: " << endl;
24  for (map<const string, string>::const_iterator iter = cparams.begin(); iter != cparams.end(); ++iter)
25  {
26  cout << iter->first << ": " << iter->second << endl;
27  }
28 }
29 
30 void
32 {
33  dparams.clear();
34  iparams.clear();
35  cparams.clear();
36  return;
37 }
38 
39 void
40 PdbParameterMap::set_int_param(const std::string &name, const int ival)
41 {
42  iparams[name] = ival;
43 }
44 
45 void
46 PdbParameterMap::set_double_param(const std::string &name, const double dval)
47 {
48  dparams[name] = dval;
49 }
50 
51 void
52 PdbParameterMap::set_string_param(const std::string &name, const string &str)
53 {
54  cparams[name] = str;
55 }
56 
57 
58 size_t
60 {
61  size_t seed = 0;
62 
63  for (dMap::const_iterator iter = dparams.begin();
64  iter != dparams.end(); ++iter)
65  {
66 // size_t seed = 0;
67  boost::hash_combine(seed, iter->first );
68  boost::hash_combine(seed, iter->second );
69 // cout << iter->first << ": " << iter->second <<" -> "<<seed<< endl;
70  }
71 
72  for (iMap::const_iterator iter = iparams.begin();
73  iter != iparams.end(); ++iter)
74  {
75 // size_t seed = 0;
76  boost::hash_combine(seed, iter->first );
77  boost::hash_combine(seed, iter->second );
78 // cout << iter->first << ": " << iter->second <<" -> "<<seed<< endl;
79  }
80 
81  for (strMap::const_iterator iter = cparams.begin();
82  iter != cparams.end(); ++iter)
83  {
84 // size_t seed = 0;
85  boost::hash_combine(seed, iter->first );
86  boost::hash_combine(seed, iter->second );
87 // cout << iter->first << ": " << iter->second <<" -> "<<seed<< endl;
88  }
89 
90 
91  return seed;
92 
93 }
void Reset()
Clear Event.
size_t get_hash() const
hash of binary information for checking purpose
void set_double_param(const std::string &name, const double dval)
void set_int_param(const std::string &name, const int ival)
void print() const
void set_string_param(const std::string &name, const std::string &str)