Class Reference for E1039 Core & Analysis Software
Fun4AllHistoManager.cc
Go to the documentation of this file.
1 #include "Fun4AllHistoManager.h"
2 #include "TDirectoryHelper.h"
3 
4 #include <phool/phool.h>
5 #include <phool/recoConsts.h>
6 
7 #include <TFile.h>
8 #include <TH1.h>
9 
10 #include <RVersion.h>
11 #if ROOT_VERSION_CODE >= ROOT_VERSION(5,20,0)
12 #define HAS_THNSPARSE 1
13 #include <THnSparse.h>
14 #endif
15 
16 #include <TNamed.h>
17 #include <TTree.h>
18 
19 #include <iomanip>
20 #include <iostream>
21 #include <sstream>
22 
23 using namespace std;
24 
26 {
27  return ;
28 }
29 
31 {
32  while(Histo.begin() != Histo.end())
33  {
34  delete Histo.begin()->second;
35  Histo.erase(Histo.begin());
36  }
37  return ;
38 }
39 
40 int
41 Fun4AllHistoManager::dumpHistos(const string &filename, const string &openmode)
42 {
43  int iret = 0;
44  if (!filename.empty())
45  {
46  outfilename = filename;
47  }
48  else
49  {
50  if (outfilename.empty())
51  {
53  ostringstream filnam;
54  int runnumber = -1;
55  if (rc->FlagExist("RUNNUMBER"))
56  {
57  runnumber = rc->get_IntFlag("RUNNUMBER");
58  }
59  // this will set the filename to the name of the manager
60  // add the runnumber in the std 10 digit format and
61  // end it with a .root extension
62  filnam << Name() << "-"
63  << setfill('0') << setw(10)
64  << runnumber << ".root";
65  outfilename = filnam.str();
66  }
67  }
68  cout << "Fun4AllHistoManager::dumpHistos() Writing root file: " << outfilename << endl;
69 
70  const int compress = 9;
71  ostringstream creator;
72  creator << "Created by " << Name();
73  TFile hfile(outfilename.c_str(), openmode.c_str(), creator.str().c_str(), compress);
74  if (!hfile.IsOpen())
75  {
76  cout << PHWHERE << " Could not open output file" << outfilename << endl;
77  return -1;
78  }
79 
80  map<const string, TNamed *>::const_iterator hiter;
81  for (hiter = Histo.begin(); hiter != Histo.end(); ++hiter)
82  {
83  const std::string & hname = hiter->first;
84  const TNamed* hptr = hiter->second;
85  if ( verbosity > 0 )
86  {
87  std::cout << PHWHERE << " Saving histo "
88  << hname
89  << std::endl;
90  }
91 
92  // Decode the string to see if it wants a directory
93  string::size_type pos = hname.find_last_of('/');
94  string dirname;
95  if ( pos != string::npos ) // string::npos is the result if search unsuccessful
96  {
97  dirname = hname.substr(0, pos);
98  }
99  else
100  {
101  dirname = "";
102  }
103 
104  if (verbosity)
105  {
106  cout << " Histogram named " << hptr->GetName();
107  cout << " key " << hname;
108  if (dirname.size())
109  {
110  cout << " being saved to directory " << dirname;
111  }
112  cout << endl;
113  }
114 
115  if (dirname.size())
116  {
117  TDirectoryHelper::mkdir(&hfile, dirname.c_str());
118  hfile.cd(dirname.c_str());
119  }
120 
121  if (hptr)
122  {
123  int byteswritten = hptr->Write();
124  if (!byteswritten)
125  {
126  cout << PHWHERE << "Error saving histogram "
127  << hptr->GetName()
128  << endl;
129  iret = -2;
130  }
131  }
132  else
133  {
134  cout << PHWHERE << "dumpHistos : histogram "
135  << hname << " is a null pointer! Won't be saved."
136  << std::endl;
137  }
138  }
139  hfile.Close();
140  return iret;
141 }
142 
143 bool
144 Fun4AllHistoManager::registerHisto(TNamed *h1d, const int replace)
145 {
146  return registerHisto(h1d->GetName(), h1d, replace);
147 }
148 
149 bool
150 Fun4AllHistoManager::registerHisto(const string &hname, TNamed *h1d, const int replace)
151 {
152  map<const string, TNamed *>::const_iterator histoiter = Histo.find(hname);
153  if (histoiter != Histo.end() && replace == 0)
154  {
155  cerr << "Histogram " << hname << " already registered, I won't overwrite it" << endl;
156  cerr << "Use a different name and try again" << endl;
157  return false;
158  }
159 
160  string::size_type pos = hname.find_last_of('/');
161  string histoname = hname;
162  if ( pos != string::npos ) // okay someone wants damn TDirectories
163  {
164  histoname = hname.substr(pos + 1);
165  }
166  if (verbosity > 1)
167  {
168  if (histoname != h1d->GetName())
169  {
170  cout << PHWHERE << "Histogram " << h1d->GetName()
171  << " at " << h1d << " renamed to " << histoname << endl;
172  }
173  }
174  // this one did some very ugly mutilation to a const char *
175  // using a string seems to avoid the damage
176  h1d->SetName(histoname.c_str());
177  Histo[hname] = h1d;
178 
179  if (h1d->InheritsFrom("TTree"))
180  static_cast<TTree*>(h1d)->SetDirectory(0);
181 
182  return true;
183 }
184 
185 int
186 Fun4AllHistoManager::isHistoRegistered(const std::string &name) const
187 {
188 
189  map<const string, TNamed *>::const_iterator histoiter = Histo.find(name);
190  if (histoiter != Histo.end())
191  {
192  return 1;
193  }
194  return 0;
195 }
196 
197 TNamed *
198 Fun4AllHistoManager::getHisto(const unsigned int ihisto) const
199 {
200  map<const string, TNamed *>::const_iterator histoiter = Histo.begin();
201  unsigned int size = Histo.size();
202  if (Verbosity() > 3)
203  {
204  cout << "Map contains " << size << " Elements" << endl;
205  }
206  if (ihisto < size)
207  {
208  for (unsigned int i = 0;i < ihisto;i++)
209  {
210  ++histoiter;
211  }
212  return histoiter->second;
213  }
214  else
215  {
216  cout << "Fun4AllHistoManager::getHisto: ERROR Invalid histogram number: "
217  << ihisto << ", maximum number is " << size << endl;
218  }
219  return NULL;
220 }
221 
222 const char *
223 Fun4AllHistoManager::getHistoName(const unsigned int ihisto) const
224 {
225  map<const string, TNamed *>::const_iterator histoiter = Histo.begin();
226  unsigned int size = Histo.size();
227  if (verbosity > 3)
228  {
229  cout << "Map contains " << size << " Elements" << endl;
230  }
231  if (ihisto < size)
232  {
233  for (unsigned int i = 0;i < ihisto;i++)
234  {
235  ++histoiter;
236  }
237  return histoiter->first.c_str();
238  }
239  else
240  {
241  cout << "Fun4AllHistoManager::getHisto: ERROR Invalid histogram number: "
242  << ihisto << ", maximum number is " << size << endl;
243  }
244  return NULL;
245 }
246 
247 TNamed *
248 Fun4AllHistoManager::getHisto(const string &hname) const
249 {
250  map<const string, TNamed *>::const_iterator histoiter = Histo.find(hname);
251  if (histoiter != Histo.end())
252  {
253  return histoiter->second;
254  }
255  cout << "Fun4AllHistoManager::getHisto: ERROR Unknown Histogram " << hname
256  << ", The following are implemented: " << endl;
257  Print("ALL");
258  return NULL;
259 }
260 
261 
262 
263 void
264 Fun4AllHistoManager::Print(const string &what) const
265 {
266  if (what == "ALL" || what == "HISTOS")
267  {
268  // loop over the map and print out the content (name and location in memory)
269  cout << "--------------------------------------" << endl << endl;
270  cout << "List of Histos in Fun4AllHistoManager "
271  << Name() << ":" << endl;
272 
273  map<const string, TNamed *>::const_iterator hiter;
274  for (hiter = Histo.begin(); hiter != Histo.end(); ++hiter)
275  {
276  cout << hiter->first << " is " << hiter->second << endl;
277  }
278  cout << endl;
279  }
280  return ;
281 }
282 
283 void
285 {
286  map<const string, TNamed *>::const_iterator hiter;
287  for (hiter = Histo.begin(); hiter != Histo.end(); ++hiter)
288  {
289  TNamed* h = hiter->second;
290  if (h->InheritsFrom("TH1"))
291  (dynamic_cast<TH1*>(h))->Reset();
292 #if HAS_THNSPARSE
293  else if (h->InheritsFrom("THnSparse"))
294  (dynamic_cast<THnSparse*>(h))->Reset();
295 #endif
296 
297  }
298  return ;
299 }
#define NULL
Definition: Pdb.h:9
int verbosity
The verbosity level. 0 means not verbose at all.
Definition: Fun4AllBase.h:75
virtual const std::string Name() const
Returns the name of this module.
Definition: Fun4AllBase.h:23
virtual int Verbosity() const
Gets the verbosity of this module.
Definition: Fun4AllBase.h:64
int dumpHistos(const std::string &filename="", const std::string &openmode="RECREATE")
const char * getHistoName(const unsigned int ihisto) const
bool registerHisto(const std::string &hname, TNamed *h1d, const int replace=0)
Fun4AllHistoManager(const std::string &name)
TNamed * getHisto(const std::string &hname) const
int isHistoRegistered(const std::string &name) const
void Print(const std::string &what="ALL") const
virtual int FlagExist(const std::string &name) const
Definition: PHFlag.cc:255
virtual int get_IntFlag(const std::string &name) const
Definition: PHFlag.cc:117
static TDirectory * mkdir(TDirectory *topDir, const char *path, std::vector< std::string > *titles=0)
static recoConsts * instance()
Definition: recoConsts.cc:7
#define PHWHERE
Definition: phool.h:23