Class Reference for E1039 Core & Analysis Software
PHFlag.cc
Go to the documentation of this file.
1 #include "PHFlag.h"
2 
3 #include "phool.h"
4 
5 #include <cstring>
6 #include <fstream>
7 #include <iostream>
8 #include <sstream>
9 
10 using namespace std;
11 
12 const string
13 PHFlag::get_CharFlag(const string &flag) const
14 {
15  map<string, string>::const_iterator iter = charflag.find(flag);
16  if (iter != charflag.end())
17  {
18  return iter->second;
19  }
20  cout << "PHFlag::getString: ERROR Unknown character Flag " << flag
21  << ", The following are implemented: " << endl;
22  Print();
23  exit(EXIT_FAILURE);
24  return NULL;
25 }
26 
27 const string
28 PHFlag::get_CharFlag(const string &flag, const string &defaultval)
29 {
30  map<string, string>::const_iterator iter = charflag.find(flag);
31  if (iter != charflag.end())
32  {
33  return iter->second;
34  }
35  else
36  {
37  set_CharFlag(flag, defaultval);
38  return get_CharFlag(flag);
39  }
40 }
41 
42 void
43 PHFlag::set_CharFlag(const string &flag, const string &charstr)
44 {
45  charflag[flag] = charstr;
46  return ;
47 }
48 
49 double PHFlag::get_DoubleFlag(const string &name) const
50 {
51  map<string, double>::const_iterator iter = doubleflag.find(name);
52  if (iter != doubleflag.end())
53  {
54  return iter->second;
55  }
56  cout << "PHFlag::getFlag: ERROR Unknown Double Flag " << name
57  << ", The following are implemented: " << endl;
58  Print();
59  exit(EXIT_FAILURE);
60  return 0.0;
61 }
62 
63 double PHFlag::get_DoubleFlag(const string &name, const double defaultval)
64 {
65  map<string, double>::const_iterator iter = doubleflag.find(name);
66  if (iter != doubleflag.end())
67  {
68  return iter->second;
69  }
70  else
71  {
72  set_DoubleFlag(name,defaultval);
73  return get_DoubleFlag(name);
74  }
75 }
76 
77 void PHFlag::set_DoubleFlag(const string &name, const double iflag)
78 {
79  doubleflag[name] = iflag;
80  return ;
81 }
82 
83 float PHFlag::get_FloatFlag(const string &name) const
84 {
85  map<string, float>::const_iterator iter = floatflag.find(name);
86  if (iter != floatflag.end())
87  {
88  return iter->second;
89  }
90  cout << "PHFlag::getFlag: ERROR Unknown Float Flag " << name
91  << ", The following are implemented: " << endl;
92  Print();
93  exit(EXIT_FAILURE);
94  return 0.0;
95 }
96 
97 float PHFlag::get_FloatFlag(const string &name, const float defaultval)
98 {
99  map<string, float>::const_iterator iter = floatflag.find(name);
100  if (iter != floatflag.end())
101  {
102  return iter->second;
103  }
104  else
105  {
106  set_FloatFlag(name,defaultval);
107  return get_FloatFlag(name);
108  }
109 }
110 
111 void PHFlag::set_FloatFlag(const string &name, const float iflag)
112 {
113  floatflag[name] = iflag;
114  return ;
115 }
116 
117 int PHFlag::get_IntFlag(const string &name) const
118 {
119  map<string, int>::const_iterator iter = intflag.find(name);
120  if (iter != intflag.end())
121  {
122  return iter->second;
123  }
124  cout << "PHFlag::getFlag: ERROR Unknown Int Flag " << name
125  << ", The following are implemented: " << endl;
126  Print();
127  exit(EXIT_FAILURE);
128  return 0;
129 }
130 
131 int PHFlag::get_IntFlag(const string &name, int defaultval)
132 {
133  map<string, int>::const_iterator iter = intflag.find(name);
134  if (iter != intflag.end())
135  {
136  return iter->second;
137  }
138  else
139  {
140  set_IntFlag(name,defaultval);
141  return get_IntFlag(name);
142  }
143 }
144 
145 void PHFlag::set_IntFlag(const string &name, const int iflag)
146 {
147  intflag[name] = iflag;
148  return ;
149 }
150 
151 bool PHFlag::get_BoolFlag(const string &name) const
152 {
153  map<string, bool>::const_iterator iter = boolflag.find(name);
154  if (iter != boolflag.end())
155  {
156  return iter->second;
157  }
158  cout << "PHFlag::getFlag: ERROR Unknown Bool Flag " << name
159  << ", The following are implemented: " << endl;
160  Print();
161  exit(EXIT_FAILURE);
162  return false;
163 }
164 
165 bool PHFlag::get_BoolFlag(const string &name, bool defaultval)
166 {
167  map<string, bool>::const_iterator iter = boolflag.find(name);
168  if (iter != boolflag.end())
169  {
170  return iter->second;
171  }
172  else
173  {
174  set_BoolFlag(name,defaultval);
175  return get_BoolFlag(name);
176  }
177 }
178 
179 void PHFlag::set_BoolFlag(const string &name, const bool bflag)
180 {
181  boolflag[name] = bflag;
182  return ;
183 }
184 
185 void PHFlag::Print() const
186 {
187  PrintIntFlags();
188  PrintFloatFlags();
189  PrintDoubleFlags();
190  PrintCharFlags();
191  PrintBoolFlags();
192  return ;
193 }
194 
196 {
197  // loop over the map and print out the content (name and location in memory)
198  cout << endl << "Integer Flags:" << endl;
199  map<string, int>::const_iterator intiter;
200  for (intiter = intflag.begin(); intiter != intflag.end(); ++intiter)
201  {
202  cout << intiter->first << " is " << intiter->second << endl;
203  }
204  return ;
205 }
206 
208 {
209  // loop over the map and print out the content (name and location in memory)
210  cout << endl << "Double Flags:" << endl;
211  map<string, double>::const_iterator doubleiter;
212  for (doubleiter = doubleflag.begin(); doubleiter != doubleflag.end(); ++doubleiter)
213  {
214  cout << doubleiter->first << " is " << doubleiter->second << endl;
215  }
216  return ;
217 }
218 
220 {
221  // loop over the map and print out the content (name and location in memory)
222  cout << endl << "Float Flags:" << endl;
223  map<string, float>::const_iterator floatiter;
224  for (floatiter = floatflag.begin(); floatiter != floatflag.end(); ++floatiter)
225  {
226  cout << floatiter->first << " is " << floatiter->second << endl;
227  }
228  return ;
229 }
230 
232 {
233  // loop over the map and print out the content (name and location in memory)
234  cout << endl << "char* Flags:" << endl;
235  map<string, string>::const_iterator chariter;
236  for (chariter = charflag.begin(); chariter != charflag.end(); ++chariter)
237  {
238  cout << chariter->first << " is " << chariter->second << endl;
239  }
240  return ;
241 }
242 
244 {
245  // loop over the map and print out the content (name and location in memory)
246  cout << endl << "Boolean Flags:" << endl;
247  map<string, bool>::const_iterator booliter;
248  for (booliter = boolflag.begin(); booliter != boolflag.end(); ++booliter)
249  {
250  cout << booliter->first << " is " << (booliter->second ? "TRUE" : "FALSE") << endl;
251  }
252  return ;
253 }
254 
255 int PHFlag::FlagExist(const string &name) const
256 {
257  map<string, int>::const_iterator iter = intflag.find(name);
258  if (iter != intflag.end())
259  {
260  return 1;
261  }
262  map<string, float>::const_iterator fiter = floatflag.find(name);
263  if (fiter != floatflag.end())
264  {
265  return 1;
266  }
267  map<string, double>::const_iterator diter = doubleflag.find(name);
268  if (diter != doubleflag.end())
269  {
270  return 1;
271  }
272  map<string, string>::const_iterator citer = charflag.find(name);
273  if (citer != charflag.end())
274  {
275  return 1;
276  }
277  map<string, bool>::const_iterator biter = boolflag.find(name);
278  if (biter != boolflag.end())
279  {
280  return 1;
281  }
282  return 0;
283 }
284 
285 void PHFlag::ReadFromFile(const string& name, bool verbose)
286 {
287  string label;
288  float fvalue;
289  int fvaluecount = 0;
290  double dvalue;
291  int dvaluecount = 0;
292  int ivalue;
293  int ivaluecount = 0;
294  string cvalue;
295  int cvaluecount = 0;
296  bool bvalue;
297  int bvaluecount = 0;
298  string junk;
299  int junkcount = 0;
300 
301  ifstream infile(name.c_str());
302  while(infile>>label)
303  {
304  if(verbose) cout<<"Label "<<label;
305  if(label.substr(0,1)=="C")
306  {
307  infile>>cvalue;
308  cvaluecount++;
309  set_CharFlag(label.substr(1,label.size()-1), cvalue);
310  if(verbose) cout<<" C read "<< cvalue << endl;
311  }else if(label.substr(0,1)=="F")
312  {
313  infile>>fvalue;
314  fvaluecount++;
315  set_FloatFlag(label.substr(1,label.size()-1), fvalue);
316  if(verbose) cout<<" F read "<< fvalue << endl;
317  }else if(label.substr(0,1)=="D")
318  {
319  infile>>dvalue;
320  dvaluecount++;
321  set_DoubleFlag(label.substr(1,label.size()-1), dvalue);
322  if(verbose) cout<<" D read "<< dvalue << endl;
323  }else if(label.substr(0,1)=="I")
324  {
325  infile>>ivalue;
326  ivaluecount++;
327  set_IntFlag(label.substr(1,label.size()-1), ivalue);
328  if(verbose) cout<<" I read "<< ivalue << endl;
329  }else if(label.substr(0,1)=="B")
330  {
331  infile>>bvalue;
332  bvaluecount++;
333  set_BoolFlag(label.substr(1,label.size()-1), bvalue);
334  if(verbose) cout<<" B read "<< ivalue << endl;
335  }else{
336  infile>>junk;
337  junkcount++;
338  if(verbose) cout<<" Junk read "<< junk << endl;
339  }
340 
341  }
342 
343  cout<<"Read CharFlags("<< cvaluecount
344  <<") FloatFlags(" << fvaluecount
345  <<") DoubleFlags(" << dvaluecount
346  <<") IntFlags(" << ivaluecount
347  <<") BoolFlags(" << bvaluecount
348  <<") JunkEntries(" << junkcount
349  <<") from file "<< name <<endl;
350 
351  infile.close();
352 }
353 
354 void PHFlag::WriteToFile(const string &name)
355 {
356  ofstream outFile(name.c_str());
357  // loop over the map and write out the content
358  map<string, int>::const_iterator intiter;
359  for (intiter = intflag.begin(); intiter != intflag.end(); ++intiter)
360  {
361  outFile << "I\t" << intiter->first << "\t" << intiter->second << endl;
362  }
363 
364  map<string, float>::const_iterator floatiter;
365  for (floatiter = floatflag.begin(); floatiter != floatflag.end(); ++floatiter)
366  {
367  outFile << "F\t" << floatiter->first << "\t" << floatiter->second << endl;
368  }
369 
370  int oldprecision = outFile.precision(15);
371  map<string, double>::const_iterator doubleiter;
372  for (doubleiter = doubleflag.begin(); doubleiter != doubleflag.end(); ++doubleiter)
373  {
374  outFile << "D\t" << doubleiter->first << "\t" << doubleiter->second << endl;
375  }
376  outFile.precision(oldprecision);
377 
378  map<string, string>::const_iterator chariter;
379  for (chariter = charflag.begin(); chariter != charflag.end(); ++chariter)
380  {
381  outFile << "C\t" << chariter->first << "\t" << chariter->second << endl;
382  }
383 
384  map<string, bool>::const_iterator booliter;
385  for (booliter = boolflag.begin(); booliter != boolflag.end(); ++booliter)
386  {
387  outFile << "B\t" << booliter->first << "\t" << booliter->second << endl;
388  }
389 
390  outFile.close();
391 }
#define NULL
Definition: Pdb.h:9
virtual double get_DoubleFlag(const std::string &name) const
Definition: PHFlag.cc:49
virtual void PrintIntFlags() const
Definition: PHFlag.cc:195
virtual int FlagExist(const std::string &name) const
Definition: PHFlag.cc:255
virtual void set_IntFlag(const std::string &name, const int flag)
Definition: PHFlag.cc:145
virtual void set_BoolFlag(const std::string &name, const bool flag)
Definition: PHFlag.cc:179
virtual void PrintBoolFlags() const
Definition: PHFlag.cc:243
virtual void set_DoubleFlag(const std::string &name, const double flag)
Definition: PHFlag.cc:77
virtual void set_CharFlag(const std::string &name, const std::string &flag)
Definition: PHFlag.cc:43
virtual void set_FloatFlag(const std::string &name, const float flag)
Definition: PHFlag.cc:111
virtual void WriteToFile(const std::string &name)
Definition: PHFlag.cc:354
virtual void PrintCharFlags() const
Definition: PHFlag.cc:231
virtual int get_IntFlag(const std::string &name) const
Definition: PHFlag.cc:117
virtual const std::string get_CharFlag(const std::string &flag) const
Definition: PHFlag.cc:13
virtual void ReadFromFile(const std::string &name, bool verbose=false)
Definition: PHFlag.cc:285
virtual void PrintDoubleFlags() const
Definition: PHFlag.cc:207
virtual void PrintFloatFlags() const
Definition: PHFlag.cc:219
virtual bool get_BoolFlag(const std::string &name) const
Definition: PHFlag.cc:151
virtual void Print() const
Definition: PHFlag.cc:185
virtual float get_FloatFlag(const std::string &name) const
Definition: PHFlag.cc:83