Class Reference for E1039 Core & Analysis Software
PHParameters.cc
Go to the documentation of this file.
1 #include "PHParameters.h"
2 
3 #include <pdbcalbase/PdbBankManager.h>
4 #include <pdbcalbase/PdbApplication.h>
5 #include <pdbcalbase/PdbBankList.h>
6 #include <pdbcalbase/PdbCalBank.h>
7 #include <pdbcalbase/PdbParameterMap.h>
8 #include <pdbcalbase/PdbParameterMapContainer.h>
9 
10 #include <phool/getClass.h>
11 #include <phool/PHCompositeNode.h>
12 #include <phool/PHIODataNode.h>
13 #include <phool/PHTimeStamp.h>
14 
15 #include <TBufferXML.h>
16 #include <TFile.h>
17 #include <TSystem.h>
18 #include <TBufferFile.h>
19 
20 //#include <boost/filesystem.hpp>
21 #include <boost/foreach.hpp>
22 #include <boost/tokenizer.hpp>
23 #include <boost/functional/hash.hpp>
24 
25 // this is an ugly hack, the gcc optimizer has a bug which
26 // triggers the uninitialized variable warning which
27 // stops compilation because of our -Werror
28 #include <boost/version.hpp> // to get BOOST_VERSION
29 #if (__GNUC__ == 4 && __GNUC_MINOR__ == 4 && BOOST_VERSION == 105700 )
30 #pragma GCC diagnostic ignored "-Wuninitialized"
31 #pragma message "ignoring bogus gcc warning in boost header lexical_cast.hpp"
32 #include <boost/lexical_cast.hpp>
33 #pragma GCC diagnostic warning "-Wuninitialized"
34 #else
35 #include <boost/lexical_cast.hpp>
36 #endif
37 
38 #include <cassert>
39 #include <algorithm>
40 #include <cmath>
41 #include <cstdlib>
42 #include <iostream>
43 #include <sstream>
44 
45 using namespace std;
46 
47 PHParameters::PHParameters(const PHParameters &params, const std::string &name)
48 {
49  set_name(name);
50  FillFrom(&params);
51 }
52 
53 void
54 PHParameters::set_int_param(const std::string &name, const int ival)
55 {
56  intparams[name] = ival;
57 }
58 
59 int
60 PHParameters::get_int_param(const std::string &name) const
61 {
62  if (intparams.find(name) != intparams.end())
63  {
64  return intparams.find(name)->second;
65  }
66  cout << PHWHERE << " integer parameter " << name
67  << " does not exist (forgot to set?)" << endl;
68 
69  exit(1);
70 }
71 
72 bool
73 PHParameters::exist_int_param(const std::string &name) const
74 {
75  if (intparams.find(name) != intparams.end())
76  {
77  return true;
78  }
79  return false;
80 }
81 
82 void
84 {
85  cout << "int parameters: " << endl;
86  for (map<const string, int>::const_iterator iter = intparams.begin();
87  iter != intparams.end(); ++iter)
88  {
89  cout << iter->first << ": " << iter->second << endl;
90  }
91  return;
92 }
93 
94 void
95 PHParameters::set_double_param(const std::string &name, const double dval)
96 {
97  doubleparams[name] = dval;
98 }
99 
100 double
101 PHParameters::get_double_param(const std::string &name) const
102 {
103  if (doubleparams.find(name) != doubleparams.end())
104  {
105  return doubleparams.find(name)->second;
106  }
107  cout << PHWHERE << " double parameter " << name
108  << " does not exist (forgot to set?)" << endl;
109 
110  exit(1);
111 }
112 
113 bool
114 PHParameters::exist_double_param(const std::string &name) const
115 {
116  if (doubleparams.find(name) != doubleparams.end())
117  {
118  return true;
119  }
120  return false;
121 }
122 
123 void
124 PHParameters::set_vdouble_param(const std::string &name, const vdouble dval)
125 {
126  vdoubleparams[name] = dval;
127 }
128 
130 PHParameters::get_vdouble_param(const std::string &name) const
131 {
132  if (vdoubleparams.find(name) != vdoubleparams.end())
133  {
134  return vdoubleparams.find(name)->second;
135  }
136  cout << PHWHERE << " vdouble parameter " << name
137  << " does not exist (forgot to set?)" << endl;
138 
139  exit(1);
140 }
141 
142 bool
143 PHParameters::exist_vdouble_param(const std::string &name) const
144 {
145  if (vdoubleparams.find(name) != vdoubleparams.end())
146  {
147  return true;
148  }
149  return false;
150 }
151 
152 
153 void
155 {
156  cout << "Parameters for " << detname << endl;
157  printint();
158  printdouble();
159  printstring();
160  return;
161 }
162 
163 size_t
165 {
166  size_t seed = 0;
167 
168  for (dMap::const_iterator iter = doubleparams.begin();
169  iter != doubleparams.end(); ++iter)
170  {
171 // size_t seed = 0;
172  boost::hash_combine(seed, iter->first );
173  boost::hash_combine(seed, iter->second );
174 // cout << iter->first << ": " << iter->second <<" -> "<<seed<< endl;
175  }
176 
177  for (iMap::const_iterator iter = intparams.begin();
178  iter != intparams.end(); ++iter)
179  {
180 // size_t seed = 0;
181  boost::hash_combine(seed, iter->first );
182  boost::hash_combine(seed, iter->second );
183 // cout << iter->first << ": " << iter->second <<" -> "<<seed<< endl;
184  }
185 
186  for (strMap::const_iterator iter = stringparams.begin();
187  iter != stringparams.end(); ++iter)
188  {
189 // size_t seed = 0;
190  boost::hash_combine(seed, iter->first );
191  boost::hash_combine(seed, iter->second );
192 // cout << iter->first << ": " << iter->second <<" -> "<<seed<< endl;
193  }
194 
195 
196  return seed;
197 
198 }
199 
200 void
202 {
203  cout << "double parameters: " << endl;
204  for (map<const string, double>::const_iterator iter = doubleparams.begin();
205  iter != doubleparams.end(); ++iter)
206  {
207  cout << iter->first << ": " << iter->second << endl;
208  }
209  return;
210 }
211 
212 void
213 PHParameters::set_string_param(const std::string &name, const string &str)
214 {
215  stringparams[name] = str;
216 }
217 
218 string
219 PHParameters::get_string_param(const std::string &name) const
220 {
221  if (stringparams.find(name) != stringparams.end())
222  {
223  return stringparams.find(name)->second;
224  }
225  cout << PHWHERE << " string parameter " << name
226  << " does not exist (forgot to set?)" << endl;
227 
228  exit(1);
229 }
230 
231 bool
232 PHParameters::exist_string_param(const std::string &name) const
233 {
234  if (stringparams.find(name) != stringparams.end())
235  {
236  return true;
237  }
238  return false;
239 }
240 
241 void
243 {
244  cout << "string parameters: " << endl;
245  for (map<const string, string>::const_iterator iter = stringparams.begin();
246  iter != stringparams.end(); ++iter)
247  {
248  cout << iter->first << ": " << iter->second << endl;
249  }
250  return;
251 }
252 
253 void
255 {
256  assert(saveparams);
257 
258  pair<std::map<const std::string, double>::const_iterator,
259  std::map<const std::string, double>::const_iterator> begin_end_d =
260  saveparams->get_dparam_iters();
261  for (map<const std::string, double>::const_iterator iter = begin_end_d.first;
262  iter != begin_end_d.second; ++iter)
263  {
264  doubleparams[iter->first] = iter->second;
265  }
266  pair<std::map<const std::string, int>::const_iterator,
267  std::map<const std::string, int>::const_iterator> begin_end_i =
268  saveparams->get_iparam_iters();
269  for (map<const std::string, int>::const_iterator iter = begin_end_i.first;
270  iter != begin_end_i.second; ++iter)
271  {
272  intparams[iter->first] = iter->second;
273  }
274  pair<std::map<const std::string, string>::const_iterator,
275  std::map<const std::string, string>::const_iterator> begin_end_s =
276  saveparams->get_cparam_iters();
277  for (map<const std::string, string>::const_iterator iter = begin_end_s.first;
278  iter != begin_end_s.second; ++iter)
279  {
280  stringparams[iter->first] = iter->second;
281  }
282 
283  return;
284 }
285 
286 void
287 PHParameters::FillFrom(const PdbParameterMapContainer *saveparamcontainer, const int layer)
288 {
289  // assert(saveparamcontainer != NULL);
290 
291  const PdbParameterMap *saveparams = saveparamcontainer->GetParameters(layer);
292  if (! saveparams)
293  {
294  return;
295  }
296  pair<std::map<const std::string, double>::const_iterator,
297  std::map<const std::string, double>::const_iterator> begin_end_d =
298  saveparams->get_dparam_iters();
299  for (map<const std::string, double>::const_iterator iter = begin_end_d.first;
300  iter != begin_end_d.second; ++iter)
301  {
302  doubleparams[iter->first] = iter->second;
303  }
304  pair<std::map<const std::string, int>::const_iterator,
305  std::map<const std::string, int>::const_iterator> begin_end_i =
306  saveparams->get_iparam_iters();
307  for (map<const std::string, int>::const_iterator iter = begin_end_i.first;
308  iter != begin_end_i.second; ++iter)
309  {
310  intparams[iter->first] = iter->second;
311  }
312  pair<std::map<const std::string, string>::const_iterator,
313  std::map<const std::string, string>::const_iterator> begin_end_s =
314  saveparams->get_cparam_iters();
315  for (map<const std::string, string>::const_iterator iter = begin_end_s.first;
316  iter != begin_end_s.second; ++iter)
317  {
318  stringparams[iter->first] = iter->second;
319  }
320 
321  return;
322 }
323 
324 void
326 {
327  assert(saveparams);
328 
329  for (dMap::const_iterator iter = saveparams->doubleparams.begin();
330  iter != saveparams->doubleparams.end(); ++iter)
331  doubleparams[iter->first] = iter->second;
332 
333  for (iMap::const_iterator iter = saveparams->intparams.begin();
334  iter != saveparams->intparams.end(); ++iter)
335  intparams[iter->first] = iter->second;
336 
337  for (strMap::const_iterator iter = saveparams->stringparams.begin();
338  iter != saveparams->stringparams.end(); ++iter)
339  stringparams[iter->first] = iter->second;
340 
341  return;
342 }
343 
344 void
345 PHParameters::SaveToNodeTree(PHCompositeNode *topNode, const string &nodename)
346 {
347  // write itself since this class is fine with saving by root
348  PdbParameterMap *nodeparams = findNode::getClass<PdbParameterMap>(topNode,
349  nodename);
350  if (!nodeparams)
351  {
352  nodeparams = new PdbParameterMap();
354  new PHIODataNode<PdbParameterMap>(nodeparams, nodename);
355  topNode->addNode(newnode);
356  }
357  else
358  {
359  nodeparams->Reset(); // just clear previous content in case variables were deleted
360  }
361  CopyToPdbParameterMap(nodeparams);
362  return;
363 }
364 
365 void
366 PHParameters::SaveToNodeTree(PHCompositeNode *topNode, const string &nodename, const int layer)
367 {
368  // write itself since this class is fine with saving by root
369  PdbParameterMapContainer *nodeparamcontainer = findNode::getClass<PdbParameterMapContainer>(topNode, nodename);
370  if (!nodeparamcontainer)
371  {
372  nodeparamcontainer = new PdbParameterMapContainer();
374  new PHIODataNode<PdbParameterMapContainer>(nodeparamcontainer, nodename);
375  topNode->addNode(newnode);
376  }
377  PdbParameterMap *nodeparams = nodeparamcontainer->GetParametersToModify(layer);
378  if (nodeparams)
379  {
380  nodeparams->Reset();
381  }
382  else
383  {
384  nodeparams = new PdbParameterMap();
385  nodeparamcontainer->AddPdbParameterMap(layer,nodeparams);
386  }
387  CopyToPdbParameterMap(nodeparams);
388  return;
389 }
390 
391 int
393 {
394  PdbBankManager* bankManager = PdbBankManager::instance();
395  PdbApplication *application = bankManager->getApplication();
396  if (!application->startUpdate())
397  {
398  cout << PHWHERE << " Aborting, Database not writable" << endl;
399  application->abort();
400  exit(1);
401  }
402 
403  // Make a bank ID...
404  PdbBankID bankID(0); // lets start at zero
405  PHTimeStamp TStart(0);
406  PHTimeStamp TStop(0xffffffff);
407 
408  string tablename = detname + "_geoparams";
409  std::transform(tablename.begin(), tablename.end(), tablename.begin(),
410  ::tolower);
411  PdbCalBank *NewBank = bankManager->createBank("PdbParameterMapBank", bankID,
412  "Geometry Parameters", TStart, TStop, tablename);
413  if (NewBank)
414  {
415  NewBank->setLength(1);
416  PdbParameterMap *myparm = (PdbParameterMap*) &NewBank->getEntry(0);
417  CopyToPdbParameterMap(myparm);
418  application->commit(NewBank);
419  delete NewBank;
420  }
421  else
422  {
423  cout << PHWHERE " Committing to DB failed" << endl;
424  return -1;
425  }
426  return 0;
427 }
428 
429 int
430 PHParameters::ReadFromDB(const string &name, const int layer)
431 {
432  PdbBankManager* bankManager = PdbBankManager::instance();
433  PdbApplication *application = bankManager->getApplication();
434  if (!application->startRead())
435  {
436  cout << PHWHERE << " Aborting, Database not readable" << endl;
437  application->abort();
438  exit(1);
439  }
440 
441  // Make a bank ID...
442  PdbBankID bankID(0); // lets start at zero
443  PHTimeStamp TSearch(10);
444 
445  string tablename = name + "_geoparams";
446  std::transform(tablename.begin(), tablename.end(), tablename.begin(),
447  ::tolower);
448  PdbCalBank *NewBank = bankManager->fetchBank("PdbParameterMapContainerBank", bankID,
449  tablename, TSearch);
450  if (NewBank)
451  {
453  FillFrom(myparm,layer);
454  delete NewBank;
455  }
456  else
457  {
458  cout << PHWHERE " Reading from DB failed" << endl;
459  return -1;
460  }
461  return 0;
462 }
463 
464 int
466 {
467  PdbBankManager* bankManager = PdbBankManager::instance();
468  PdbApplication *application = bankManager->getApplication();
469  if (!application->startRead())
470  {
471  cout << PHWHERE << " Aborting, Database not readable" << endl;
472  application->abort();
473  exit(1);
474  }
475 
476  // Make a bank ID...
477  PdbBankID bankID(0); // lets start at zero
478  PHTimeStamp TSearch(10);
479 
480  string tablename = detname + "_geoparams";
481  std::transform(tablename.begin(), tablename.end(), tablename.begin(),
482  ::tolower);
483  PdbCalBank *NewBank = bankManager->fetchBank("PdbParameterMapBank", bankID,
484  tablename, TSearch);
485  if (NewBank)
486  {
487  PdbParameterMap *myparm = (PdbParameterMap*) &NewBank->getEntry(0);
488  FillFrom(myparm);
489  delete NewBank;
490  }
491  else
492  {
493  cout << PHWHERE " Reading from DB failed" << endl;
494  return -1;
495  }
496  return 0;
497 }
498 
499 //int
500 //PHParameters::WriteToFile(const string &extension, const string &dir)
501 //{
502 // ostringstream fullpath;
503 // ostringstream fnamestream;
504 // PdbBankID bankID(0); // lets start at zero
505 // PHTimeStamp TStart(0);
506 // PHTimeStamp TStop(0xffffffff);
507 // fullpath << dir;
508 // // add / if directory lacks ending /
509 // if (*(dir.rbegin()) != '/')
510 // {
511 // fullpath << "/";
512 // }
513 // fnamestream << detname << "_geoparams" << "-" << bankID.getInternalValue()
514 // << "-" << TStart.getTics() << "-" << TStop.getTics() << "-" << time(0)
515 // << "." << extension;
516 // string fname = fnamestream.str();
517 // std::transform(fname.begin(), fname.end(), fname.begin(), ::tolower);
518 // fullpath << fname;
519 //
520 // cout <<"PHParameters::WriteToFile - save to "<<fullpath.str()<<endl;
521 //
522 // PdbParameterMap *myparm = new PdbParameterMap();
523 // CopyToPdbParameterMap(myparm);
524 // TFile *f = TFile::Open(fullpath.str().c_str(), "recreate");
525 // // force xml file writing to use extended precision shown experimentally
526 // // to not modify input parameters (.17g)
527 // string floatformat = TBufferXML::GetFloatFormat();
528 // TBufferXML::SetFloatFormat("%.17g"); // for IEEE 754 double
529 // myparm->Write();
530 // delete f;
531 // // restore previous xml float format
532 // TBufferXML::SetFloatFormat(floatformat.c_str());
533 // cout << "sleeping 1 second to prevent duplicate inserttimes" << endl;
534 // sleep(1);
535 // return 0;
536 //}
537 //
538 //int
539 //PHParameters::ReadFromFile(const string &name, const string &extension, const int layer, const int issuper, const string &dir)
540 //{
541 // PHTimeStamp TSearch(10);
542 // PdbBankID bankID(0);
543 // ostringstream fnamestream;
544 // fnamestream << name << "_geoparams" << "-" << bankID.getInternalValue();
545 // string fileprefix = fnamestream.str();
546 // std::transform(fileprefix.begin(), fileprefix.end(), fileprefix.begin(),
547 // ::tolower);
548 // boost::filesystem::path targetDir(dir);
549 //
550 // boost::filesystem::recursive_directory_iterator iter(targetDir), eod;
551 // boost::char_separator<char> sep("-.");
552 // map<unsigned int, string> calibfiles;
553 // BOOST_FOREACH(boost::filesystem::path const& i, make_pair(iter, eod))
554 // {
555 // if (is_regular_file(i))
556 // {
557 // // boost leaf() gives the filename without path,
558 // // this checks if the filename starts with fileprefix
559 // // (start pos of substring=0), if not coninue
560 // string basename = i.filename().string();
561 // if (basename.find(fileprefix) != 0)
562 // {
563 // continue;
564 // }
565 // // extension() contains the . - like .xml, so we
566 // // just compare the extensions instead of !=
567 // // and check that the size makes sense
568 // if (i.extension().string().find(extension) == string::npos
569 // || i.extension().string().size() != extension.size() + 1)
570 // {
571 // continue;
572 // }
573 // boost::tokenizer<boost::char_separator<char> > tok(basename, sep);
574 // boost::tokenizer<boost::char_separator<char> >::iterator iter =
575 // tok.begin();
576 // ++iter; // that skips the file prefix excluding bank id
577 // ++iter; // that skips the bank id we checked already as part of the filename
578 // PHTimeStamp TStart(ConvertStringToUint(*iter));
579 // if (TSearch < TStart)
580 // {
581 // continue;
582 // }
583 // ++iter;
584 // PHTimeStamp TStop(ConvertStringToUint(*iter));
585 // if (TSearch >= TStop)
586 // {
587 // continue;
588 // }
589 // ++iter;
590 // calibfiles[ConvertStringToUint(*iter)] = i.string();
591 //
592 // }
593 // }
594 // if (calibfiles.empty())
595 // {
596 // cout << "No calibration file like " << dir << "/" << fileprefix << " found" << endl;
597 // gSystem->Exit(1);
598 // }
599 // cout << "PHParameters::ReadFromFile - Reading from File: " << (calibfiles.rbegin())->second << " ... ";
600 // string fname = (calibfiles.rbegin())->second;
601 // TFile *f = TFile::Open(fname.c_str());
602 // if (issuper)
603 // {
604 // PdbParameterMapContainer *myparm = static_cast<PdbParameterMapContainer *> (f->Get("PdbParameterMapContainer"));
605 // assert (myparm);
606 //
607 // if (myparm->GetParameters(layer) == nullptr)
608 // cout << "Missing PdbParameterMapContainer layer #"<< layer << endl;
609 // assert (myparm->GetParameters(layer));
610 //
611 // cout << "Received PdbParameterMapContainer layer #"<< layer <<" with (Hash = 0x"<< std::hex << myparm->GetParameters(layer)->get_hash() << std::dec <<")" << endl;
612 //
613 // FillFrom(myparm, layer);
614 // delete myparm;
615 // }
616 // else
617 // {
618 // PdbParameterMap *myparm = static_cast<PdbParameterMap *> (f->Get("PdbParameterMap"));
619 // assert (myparm);
620 // cout << "Received PdbParameterMap with (Hash = 0x"<< std::hex << myparm->get_hash() << std::dec <<")" << endl;
621 //
622 // FillFrom(myparm);
623 // delete myparm;
624 // }
625 // delete f;
626 //
627 //
628 // return 0;
629 //}
630 
631 void
633 {
634  for (map<const string, double>::const_iterator iter = doubleparams.begin();
635  iter != doubleparams.end(); ++iter)
636  {
637  myparm->set_double_param(iter->first, iter->second);
638  }
639  for (map<const string, int>::const_iterator iter = intparams.begin();
640  iter != intparams.end(); ++iter)
641  {
642  myparm->set_int_param(iter->first, iter->second);
643  }
644  for (map<const string, string>::const_iterator iter = stringparams.begin();
645  iter != stringparams.end(); ++iter)
646  {
647  myparm->set_string_param(iter->first, iter->second);
648  }
649 }
650 
651 unsigned int
652 PHParameters::ConvertStringToUint(const std::string &str) const
653 {
654  unsigned int tics;
655  try
656  {
657  tics = boost::lexical_cast<unsigned int>(str);
658  }
659  catch (boost::bad_lexical_cast const&)
660  {
661  cout << "Cannot extract timestamp from " << str << endl;
662  exit(1);
663  }
664  return tics;
665 }
PHBoolean addNode(PHNode *)
strMap stringparams
Definition: PHParameters.h:97
void printdouble() const
bool exist_vdouble_param(const std::string &name) const
void set_string_param(const std::string &name, const std::string &str)
double get_double_param(const std::string &name) const
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
void set_double_param(const std::string &name, const double dval)
Definition: PHParameters.cc:95
PHParameters(const std::string &name)
Definition: PHParameters.h:31
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
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
void Print() const
void set_vdouble_param(const std::string &name, const vdouble vdval)
size_t get_hash() const
hash of binary information for checking purpose
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
virtual PdbStatus startRead()=0
virtual PdbStatus abort()=0
virtual PdbStatus commit()=0
virtual PdbStatus startUpdate()=0
virtual PdbCalBank * fetchBank(const std::string &, PdbBankID, const std::string &, const int)=0
static PdbBankManager * instance()
virtual PdbApplication * getApplication()=0
virtual PdbCalBank * createBank(const std::string &, PdbBankID, const std::string &, PHTimeStamp &, PHTimeStamp &, const std::string &)=0
virtual void setLength(size_t val)=0
virtual PdbCalChan & getEntry(size_t)=0
void AddPdbParameterMap(const int layer, PdbParameterMap *params)
PdbParameterMap * GetParametersToModify(const int layer)
const PdbParameterMap * GetParameters(const int layer) const
iConstRange get_iparam_iters() const
void Reset()
Clear Event.
dConstRange get_dparam_iters() const
strConstRange get_cparam_iters() const
void set_double_param(const std::string &name, const double dval)
void set_int_param(const std::string &name, const int ival)
void set_string_param(const std::string &name, const std::string &str)
#define PHWHERE
Definition: phool.h:23