Class Reference for E1039 Core & Analysis Software
PdbParameterMapContainer.cc
Go to the documentation of this file.
2 #include "PdbParameterMap.h"
3 #include "PdbBankID.h"
4 
5 #include <phool/phool.h>
6 #include <phool/PHTimeStamp.h>
7 
8 #include <TBufferXML.h>
9 #include <TFile.h>
10 #include <TSystem.h>
11 
12 #include <cassert>
13 #include <algorithm>
14 #include <cmath>
15 #include <cstdlib>
16 #include <iostream>
17 #include <sstream>
18 
19 using namespace std;
20 
22 {
23  while(parametermap.begin() != parametermap.end())
24  {
25  delete parametermap.begin()->second;
26  parametermap.erase(parametermap.begin());
27  }
28  return;
29 }
30 
31 void
33 {
34  for (map<int, PdbParameterMap *>::const_iterator iter = parametermap.begin();
35  iter != parametermap.end(); ++iter)
36  {
37  cout << "layer " << iter->first << endl;
38  iter->second->print();
39  }
40  return;
41 }
43 {
44  while(parametermap.begin() != parametermap.end())
45  {
46  delete parametermap.begin()->second;
47  parametermap.erase(parametermap.begin());
48  }
49  return;
50 }
51 
52 void
54 {
55  if (parametermap.find(layer) != parametermap.end())
56  {
57  cout << PHWHERE << " layer " << layer << " already exists" << endl;
58  gSystem->Exit(1);
59  }
60  parametermap[layer] = params;
61 }
62 
63 const PdbParameterMap *
65 {
66  map<int, PdbParameterMap *>::const_iterator iter = parametermap.find(layer);
67  if (iter == parametermap.end())
68  {
69  return NULL;
70  }
71  return iter->second;
72 }
73 
76 {
77  map<int, PdbParameterMap *>::iterator iter = parametermap.find(layer);
78  if (iter == parametermap.end())
79  {
80  return NULL;
81  }
82  return iter->second;
83 }
84 
85 int
86 PdbParameterMapContainer::WriteToFile(const std::string &detector_name,
87  const string &extension, const string &dir)
88 {
89  //Note the naming convention should be consistent with PHParameters::WriteToFile
90 
91  ostringstream fullpath;
92  ostringstream fnamestream;
93  PdbBankID bankID(0); // lets start at zero
94  PHTimeStamp TStart(0);
95  PHTimeStamp TStop(0xffffffff);
96  fullpath << dir;
97  // add / if directory lacks ending /
98  if (*(dir.rbegin()) != '/')
99  {
100  fullpath << "/";
101  }
102  fnamestream << detector_name << "_geoparams" << "-"
103  << bankID.getInternalValue() << "-" << TStart.getTics() << "-"
104  << TStop.getTics() << "-" << time(0) << "." << extension;
105  string fname = fnamestream.str();
106  std::transform(fname.begin(), fname.end(), fname.begin(), ::tolower);
107  fullpath << fname;
108 
109  cout << "PdbParameterMapContainer::WriteToFile - save to " << fullpath.str()
110  << endl;
111 
112  TFile *f = TFile::Open(fullpath.str().c_str(), "recreate");
113 
115  for (std::map<int, PdbParameterMap *>::const_iterator it =
116  parametermap.begin(); it != parametermap.end(); ++it)
117  {
118  PdbParameterMap *myparm = static_cast<PdbParameterMap *> (it->second->Clone());
119  container->AddPdbParameterMap(it->first, myparm);
120  }
121 
122  // force xml file writing to use extended precision shown experimentally
123  // to not modify input parameters (.15e)
124  string floatformat = TBufferXML::GetFloatFormat();
125  TBufferXML::SetFloatFormat("%.17g"); // for IEEE 754 double
126  container->Write("PdbParameterMapContainer");
127  delete f;
128  // restore previous xml float format
129  TBufferXML::SetFloatFormat(floatformat.c_str());
130  cout << "sleeping 1 second to prevent duplicate inserttimes" << endl;
131  sleep(1);
132  return 0;
133 }
#define NULL
Definition: Pdb.h:9
time_t getTics() const
Definition: PHTimeStamp.cc:97
int getInternalValue() const
Definition: PdbBankID.h:26
void AddPdbParameterMap(const int layer, PdbParameterMap *params)
PdbParameterMap * GetParametersToModify(const int layer)
int WriteToFile(const std::string &detector_name, const std::string &extension, const std::string &dir=".")
write PdbParameterMapContainer to an external file with root or xml extension.
const PdbParameterMap * GetParameters(const int layer) const
#define PHWHERE
Definition: phool.h:23