Class Reference for E1039 Core & Analysis Software
PHG4Parameters.cc
Go to the documentation of this file.
1 #include "PHG4Parameters.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 PHG4Parameters::PHG4Parameters(const PHG4Parameters &params, const std::string &name)
48 {
49  set_name(name);
50  FillFrom(&params);
51 }
52 
53 void
54 PHG4Parameters::set_int_param(const std::string &name, const int ival)
55 {
56  intparams[name] = ival;
57 }
58 
59 int
60 PHG4Parameters::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 PHG4Parameters::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 PHG4Parameters::set_double_param(const std::string &name, const double dval)
96 {
97  doubleparams[name] = dval;
98 }
99 
100 double
101 PHG4Parameters::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 PHG4Parameters::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 
124 void
126 {
127  cout << "Parameters for " << detname << endl;
128  printint();
129  printdouble();
130  printstring();
131  return;
132 }
133 
134 size_t
136 {
137  size_t seed = 0;
138 
139  for (dMap::const_iterator iter = doubleparams.begin();
140  iter != doubleparams.end(); ++iter)
141  {
142 // size_t seed = 0;
143  boost::hash_combine(seed, iter->first );
144  boost::hash_combine(seed, iter->second );
145 // cout << iter->first << ": " << iter->second <<" -> "<<seed<< endl;
146  }
147 
148  for (iMap::const_iterator iter = intparams.begin();
149  iter != intparams.end(); ++iter)
150  {
151 // size_t seed = 0;
152  boost::hash_combine(seed, iter->first );
153  boost::hash_combine(seed, iter->second );
154 // cout << iter->first << ": " << iter->second <<" -> "<<seed<< endl;
155  }
156 
157  for (strMap::const_iterator iter = stringparams.begin();
158  iter != stringparams.end(); ++iter)
159  {
160 // size_t seed = 0;
161  boost::hash_combine(seed, iter->first );
162  boost::hash_combine(seed, iter->second );
163 // cout << iter->first << ": " << iter->second <<" -> "<<seed<< endl;
164  }
165 
166 
167  return seed;
168 
169 }
170 
171 void
173 {
174  cout << "double parameters: " << endl;
175  for (map<const string, double>::const_iterator iter = doubleparams.begin();
176  iter != doubleparams.end(); ++iter)
177  {
178  cout << iter->first << ": " << iter->second << endl;
179  }
180  return;
181 }
182 
183 void
184 PHG4Parameters::set_string_param(const std::string &name, const string &str)
185 {
186  stringparams[name] = str;
187 }
188 
189 string
190 PHG4Parameters::get_string_param(const std::string &name) const
191 {
192  if (stringparams.find(name) != stringparams.end())
193  {
194  return stringparams.find(name)->second;
195  }
196  cout << PHWHERE << " string parameter " << name
197  << " does not exist (forgot to set?)" << endl;
198 
199  exit(1);
200 }
201 
202 bool
203 PHG4Parameters::exist_string_param(const std::string &name) const
204 {
205  if (stringparams.find(name) != stringparams.end())
206  {
207  return true;
208  }
209  return false;
210 }
211 
212 void
214 {
215  cout << "string parameters: " << endl;
216  for (map<const string, string>::const_iterator iter = stringparams.begin();
217  iter != stringparams.end(); ++iter)
218  {
219  cout << iter->first << ": " << iter->second << endl;
220  }
221  return;
222 }
223 
224 void
226 {
227  assert(saveparams);
228 
229  pair<std::map<const std::string, double>::const_iterator,
230  std::map<const std::string, double>::const_iterator> begin_end_d =
231  saveparams->get_dparam_iters();
232  for (map<const std::string, double>::const_iterator iter = begin_end_d.first;
233  iter != begin_end_d.second; ++iter)
234  {
235  doubleparams[iter->first] = iter->second;
236  }
237  pair<std::map<const std::string, int>::const_iterator,
238  std::map<const std::string, int>::const_iterator> begin_end_i =
239  saveparams->get_iparam_iters();
240  for (map<const std::string, int>::const_iterator iter = begin_end_i.first;
241  iter != begin_end_i.second; ++iter)
242  {
243  intparams[iter->first] = iter->second;
244  }
245  pair<std::map<const std::string, string>::const_iterator,
246  std::map<const std::string, string>::const_iterator> begin_end_s =
247  saveparams->get_cparam_iters();
248  for (map<const std::string, string>::const_iterator iter = begin_end_s.first;
249  iter != begin_end_s.second; ++iter)
250  {
251  stringparams[iter->first] = iter->second;
252  }
253 
254  return;
255 }
256 
257 void
258 PHG4Parameters::FillFrom(const PdbParameterMapContainer *saveparamcontainer, const int layer)
259 {
260  // assert(saveparamcontainer != NULL);
261 
262  const PdbParameterMap *saveparams = saveparamcontainer->GetParameters(layer);
263  if (! saveparams)
264  {
265  return;
266  }
267  pair<std::map<const std::string, double>::const_iterator,
268  std::map<const std::string, double>::const_iterator> begin_end_d =
269  saveparams->get_dparam_iters();
270  for (map<const std::string, double>::const_iterator iter = begin_end_d.first;
271  iter != begin_end_d.second; ++iter)
272  {
273  doubleparams[iter->first] = iter->second;
274  }
275  pair<std::map<const std::string, int>::const_iterator,
276  std::map<const std::string, int>::const_iterator> begin_end_i =
277  saveparams->get_iparam_iters();
278  for (map<const std::string, int>::const_iterator iter = begin_end_i.first;
279  iter != begin_end_i.second; ++iter)
280  {
281  intparams[iter->first] = iter->second;
282  }
283  pair<std::map<const std::string, string>::const_iterator,
284  std::map<const std::string, string>::const_iterator> begin_end_s =
285  saveparams->get_cparam_iters();
286  for (map<const std::string, string>::const_iterator iter = begin_end_s.first;
287  iter != begin_end_s.second; ++iter)
288  {
289  stringparams[iter->first] = iter->second;
290  }
291 
292  return;
293 }
294 
295 void
297 {
298  assert(saveparams);
299 
300  for (dMap::const_iterator iter = saveparams->doubleparams.begin();
301  iter != saveparams->doubleparams.end(); ++iter)
302  doubleparams[iter->first] = iter->second;
303 
304  for (iMap::const_iterator iter = saveparams->intparams.begin();
305  iter != saveparams->intparams.end(); ++iter)
306  intparams[iter->first] = iter->second;
307 
308  for (strMap::const_iterator iter = saveparams->stringparams.begin();
309  iter != saveparams->stringparams.end(); ++iter)
310  stringparams[iter->first] = iter->second;
311 
312  return;
313 }
314 
315 void
316 PHG4Parameters::SaveToNodeTree(PHCompositeNode *topNode, const string &nodename)
317 {
318  // write itself since this class is fine with saving by root
319  PdbParameterMap *nodeparams = findNode::getClass<PdbParameterMap>(topNode,
320  nodename);
321  if (!nodeparams)
322  {
323  nodeparams = new PdbParameterMap();
325  new PHIODataNode<PdbParameterMap>(nodeparams, nodename);
326  topNode->addNode(newnode);
327  }
328  else
329  {
330  nodeparams->Reset(); // just clear previous content in case variables were deleted
331  }
332  CopyToPdbParameterMap(nodeparams);
333  return;
334 }
335 
336 void
337 PHG4Parameters::SaveToNodeTree(PHCompositeNode *topNode, const string &nodename, const int layer)
338 {
339  // write itself since this class is fine with saving by root
340  PdbParameterMapContainer *nodeparamcontainer = findNode::getClass<PdbParameterMapContainer>(topNode, nodename);
341  if (!nodeparamcontainer)
342  {
343  nodeparamcontainer = new PdbParameterMapContainer();
345  new PHIODataNode<PdbParameterMapContainer>(nodeparamcontainer, nodename);
346  topNode->addNode(newnode);
347  }
348  PdbParameterMap *nodeparams = nodeparamcontainer->GetParametersToModify(layer);
349  if (nodeparams)
350  {
351  nodeparams->Reset();
352  }
353  else
354  {
355  nodeparams = new PdbParameterMap();
356  nodeparamcontainer->AddPdbParameterMap(layer,nodeparams);
357  }
358  CopyToPdbParameterMap(nodeparams);
359  return;
360 }
361 
362 int
364 {
365  PdbBankManager* bankManager = PdbBankManager::instance();
366  PdbApplication *application = bankManager->getApplication();
367  if (!application->startUpdate())
368  {
369  cout << PHWHERE << " Aborting, Database not writable" << endl;
370  application->abort();
371  exit(1);
372  }
373 
374  // Make a bank ID...
375  PdbBankID bankID(0); // lets start at zero
376  PHTimeStamp TStart(0);
377  PHTimeStamp TStop(0xffffffff);
378 
379  string tablename = detname + "_geoparams";
380  std::transform(tablename.begin(), tablename.end(), tablename.begin(),
381  ::tolower);
382  PdbCalBank *NewBank = bankManager->createBank("PdbParameterMapBank", bankID,
383  "Geometry Parameters", TStart, TStop, tablename);
384  if (NewBank)
385  {
386  NewBank->setLength(1);
387  PdbParameterMap *myparm = (PdbParameterMap*) &NewBank->getEntry(0);
388  CopyToPdbParameterMap(myparm);
389  application->commit(NewBank);
390  delete NewBank;
391  }
392  else
393  {
394  cout << PHWHERE " Committing to DB failed" << endl;
395  return -1;
396  }
397  return 0;
398 }
399 
400 int
401 PHG4Parameters::ReadFromDB(const string &name, const int layer)
402 {
403  PdbBankManager* bankManager = PdbBankManager::instance();
404  PdbApplication *application = bankManager->getApplication();
405  if (!application->startRead())
406  {
407  cout << PHWHERE << " Aborting, Database not readable" << endl;
408  application->abort();
409  exit(1);
410  }
411 
412  // Make a bank ID...
413  PdbBankID bankID(0); // lets start at zero
414  PHTimeStamp TSearch(10);
415 
416  string tablename = name + "_geoparams";
417  std::transform(tablename.begin(), tablename.end(), tablename.begin(),
418  ::tolower);
419  PdbCalBank *NewBank = bankManager->fetchBank("PdbParameterMapContainerBank", bankID,
420  tablename, TSearch);
421  if (NewBank)
422  {
424  FillFrom(myparm,layer);
425  delete NewBank;
426  }
427  else
428  {
429  cout << PHWHERE " Reading from DB failed" << endl;
430  return -1;
431  }
432  return 0;
433 }
434 
435 int
437 {
438  PdbBankManager* bankManager = PdbBankManager::instance();
439  PdbApplication *application = bankManager->getApplication();
440  if (!application->startRead())
441  {
442  cout << PHWHERE << " Aborting, Database not readable" << endl;
443  application->abort();
444  exit(1);
445  }
446 
447  // Make a bank ID...
448  PdbBankID bankID(0); // lets start at zero
449  PHTimeStamp TSearch(10);
450 
451  string tablename = detname + "_geoparams";
452  std::transform(tablename.begin(), tablename.end(), tablename.begin(),
453  ::tolower);
454  PdbCalBank *NewBank = bankManager->fetchBank("PdbParameterMapBank", bankID,
455  tablename, TSearch);
456  if (NewBank)
457  {
458  PdbParameterMap *myparm = (PdbParameterMap*) &NewBank->getEntry(0);
459  FillFrom(myparm);
460  delete NewBank;
461  }
462  else
463  {
464  cout << PHWHERE " Reading from DB failed" << endl;
465  return -1;
466  }
467  return 0;
468 }
469 
470 //int
471 //PHG4Parameters::WriteToFile(const string &extension, const string &dir)
472 //{
473 // ostringstream fullpath;
474 // ostringstream fnamestream;
475 // PdbBankID bankID(0); // lets start at zero
476 // PHTimeStamp TStart(0);
477 // PHTimeStamp TStop(0xffffffff);
478 // fullpath << dir;
479 // // add / if directory lacks ending /
480 // if (*(dir.rbegin()) != '/')
481 // {
482 // fullpath << "/";
483 // }
484 // fnamestream << detname << "_geoparams" << "-" << bankID.getInternalValue()
485 // << "-" << TStart.getTics() << "-" << TStop.getTics() << "-" << time(0)
486 // << "." << extension;
487 // string fname = fnamestream.str();
488 // std::transform(fname.begin(), fname.end(), fname.begin(), ::tolower);
489 // fullpath << fname;
490 //
491 // cout <<"PHG4Parameters::WriteToFile - save to "<<fullpath.str()<<endl;
492 //
493 // PdbParameterMap *myparm = new PdbParameterMap();
494 // CopyToPdbParameterMap(myparm);
495 // TFile *f = TFile::Open(fullpath.str().c_str(), "recreate");
496 // // force xml file writing to use extended precision shown experimentally
497 // // to not modify input parameters (.17g)
498 // string floatformat = TBufferXML::GetFloatFormat();
499 // TBufferXML::SetFloatFormat("%.17g"); // for IEEE 754 double
500 // myparm->Write();
501 // delete f;
502 // // restore previous xml float format
503 // TBufferXML::SetFloatFormat(floatformat.c_str());
504 // cout << "sleeping 1 second to prevent duplicate inserttimes" << endl;
505 // sleep(1);
506 // return 0;
507 //}
508 //
509 //int
510 //PHG4Parameters::ReadFromFile(const string &name, const string &extension, const int layer, const int issuper, const string &dir)
511 //{
512 // PHTimeStamp TSearch(10);
513 // PdbBankID bankID(0);
514 // ostringstream fnamestream;
515 // fnamestream << name << "_geoparams" << "-" << bankID.getInternalValue();
516 // string fileprefix = fnamestream.str();
517 // std::transform(fileprefix.begin(), fileprefix.end(), fileprefix.begin(),
518 // ::tolower);
519 // boost::filesystem::path targetDir(dir);
520 //
521 // boost::filesystem::recursive_directory_iterator iter(targetDir), eod;
522 // boost::char_separator<char> sep("-.");
523 // map<unsigned int, string> calibfiles;
524 // BOOST_FOREACH(boost::filesystem::path const& i, make_pair(iter, eod))
525 // {
526 // if (is_regular_file(i))
527 // {
528 // // boost leaf() gives the filename without path,
529 // // this checks if the filename starts with fileprefix
530 // // (start pos of substring=0), if not coninue
531 // string basename = i.filename().string();
532 // if (basename.find(fileprefix) != 0)
533 // {
534 // continue;
535 // }
536 // // extension() contains the . - like .xml, so we
537 // // just compare the extensions instead of !=
538 // // and check that the size makes sense
539 // if (i.extension().string().find(extension) == string::npos
540 // || i.extension().string().size() != extension.size() + 1)
541 // {
542 // continue;
543 // }
544 // boost::tokenizer<boost::char_separator<char> > tok(basename, sep);
545 // boost::tokenizer<boost::char_separator<char> >::iterator iter =
546 // tok.begin();
547 // ++iter; // that skips the file prefix excluding bank id
548 // ++iter; // that skips the bank id we checked already as part of the filename
549 // PHTimeStamp TStart(ConvertStringToUint(*iter));
550 // if (TSearch < TStart)
551 // {
552 // continue;
553 // }
554 // ++iter;
555 // PHTimeStamp TStop(ConvertStringToUint(*iter));
556 // if (TSearch >= TStop)
557 // {
558 // continue;
559 // }
560 // ++iter;
561 // calibfiles[ConvertStringToUint(*iter)] = i.string();
562 //
563 // }
564 // }
565 // if (calibfiles.empty())
566 // {
567 // cout << "No calibration file like " << dir << "/" << fileprefix << " found" << endl;
568 // gSystem->Exit(1);
569 // }
570 // cout << "PHG4Parameters::ReadFromFile - Reading from File: " << (calibfiles.rbegin())->second << " ... ";
571 // string fname = (calibfiles.rbegin())->second;
572 // TFile *f = TFile::Open(fname.c_str());
573 // if (issuper)
574 // {
575 // PdbParameterMapContainer *myparm = static_cast<PdbParameterMapContainer *> (f->Get("PdbParameterMapContainer"));
576 // assert (myparm);
577 //
578 // if (myparm->GetParameters(layer) == nullptr)
579 // cout << "Missing PdbParameterMapContainer layer #"<< layer << endl;
580 // assert (myparm->GetParameters(layer));
581 //
582 // cout << "Received PdbParameterMapContainer layer #"<< layer <<" with (Hash = 0x"<< std::hex << myparm->GetParameters(layer)->get_hash() << std::dec <<")" << endl;
583 //
584 // FillFrom(myparm, layer);
585 // delete myparm;
586 // }
587 // else
588 // {
589 // PdbParameterMap *myparm = static_cast<PdbParameterMap *> (f->Get("PdbParameterMap"));
590 // assert (myparm);
591 // cout << "Received PdbParameterMap with (Hash = 0x"<< std::hex << myparm->get_hash() << std::dec <<")" << endl;
592 //
593 // FillFrom(myparm);
594 // delete myparm;
595 // }
596 // delete f;
597 //
598 //
599 // return 0;
600 //}
601 
602 void
604 {
605  for (map<const string, double>::const_iterator iter = doubleparams.begin();
606  iter != doubleparams.end(); ++iter)
607  {
608  myparm->set_double_param(iter->first, iter->second);
609  }
610  for (map<const string, int>::const_iterator iter = intparams.begin();
611  iter != intparams.end(); ++iter)
612  {
613  myparm->set_int_param(iter->first, iter->second);
614  }
615  for (map<const string, string>::const_iterator iter = stringparams.begin();
616  iter != stringparams.end(); ++iter)
617  {
618  myparm->set_string_param(iter->first, iter->second);
619  }
620 }
621 
622 unsigned int
623 PHG4Parameters::ConvertStringToUint(const std::string &str) const
624 {
625  unsigned int tics;
626  try
627  {
628  tics = boost::lexical_cast<unsigned int>(str);
629  }
630  catch (boost::bad_lexical_cast const&)
631  {
632  cout << "Cannot extract timestamp from " << str << endl;
633  exit(1);
634  }
635  return tics;
636 }
PHBoolean addNode(PHNode *)
void Print() const
PHG4Parameters(const std::string &name)
void printstring() const
void set_double_param(const std::string &name, const double dval)
size_t get_hash() const
hash of binary information for checking purpose
bool exist_string_param(const std::string &name) const
std::string get_string_param(const std::string &name) const
void SaveToNodeTree(PHCompositeNode *topNode, const std::string &nodename)
void set_int_param(const std::string &name, const int ival)
void CopyToPdbParameterMap(PdbParameterMap *myparm)
double get_double_param(const std::string &name) const
bool exist_int_param(const std::string &name) const
void FillFrom(const PdbParameterMap *saveparams)
void set_string_param(const std::string &name, const std::string &str)
bool exist_double_param(const std::string &name) const
int get_int_param(const std::string &name) const
void printint() const
void printdouble() const
unsigned int ConvertStringToUint(const std::string &str) 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