11 #if ROOT_VERSION_CODE >= ROOT_VERSION(5,20,0)
12 #define HAS_THNSPARSE 1
13 #include <THnSparse.h>
32 while(Histo.begin() != Histo.end())
34 delete Histo.begin()->second;
35 Histo.erase(Histo.begin());
44 if (!filename.empty())
46 outfilename = filename;
50 if (outfilename.empty())
62 filnam <<
Name() <<
"-"
63 << setfill(
'0') << setw(10)
64 << runnumber <<
".root";
65 outfilename = filnam.str();
68 cout <<
"Fun4AllHistoManager::dumpHistos() Writing root file: " << outfilename << endl;
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);
76 cout <<
PHWHERE <<
" Could not open output file" << outfilename << endl;
80 map<const string, TNamed *>::const_iterator hiter;
81 for (hiter = Histo.begin(); hiter != Histo.end(); ++hiter)
83 const std::string & hname = hiter->first;
84 const TNamed* hptr = hiter->second;
87 std::cout <<
PHWHERE <<
" Saving histo "
93 string::size_type pos = hname.find_last_of(
'/');
95 if ( pos != string::npos )
97 dirname = hname.substr(0, pos);
106 cout <<
" Histogram named " << hptr->GetName();
107 cout <<
" key " << hname;
110 cout <<
" being saved to directory " << dirname;
118 hfile.cd(dirname.c_str());
123 int byteswritten = hptr->Write();
126 cout <<
PHWHERE <<
"Error saving histogram "
134 cout <<
PHWHERE <<
"dumpHistos : histogram "
135 << hname <<
" is a null pointer! Won't be saved."
152 map<const string, TNamed *>::const_iterator histoiter = Histo.find(hname);
153 if (histoiter != Histo.end() && replace == 0)
155 cerr <<
"Histogram " << hname <<
" already registered, I won't overwrite it" << endl;
156 cerr <<
"Use a different name and try again" << endl;
160 string::size_type pos = hname.find_last_of(
'/');
161 string histoname = hname;
162 if ( pos != string::npos )
164 histoname = hname.substr(pos + 1);
168 if (histoname != h1d->GetName())
170 cout <<
PHWHERE <<
"Histogram " << h1d->GetName()
171 <<
" at " << h1d <<
" renamed to " << histoname << endl;
176 h1d->SetName(histoname.c_str());
179 if (h1d->InheritsFrom(
"TTree"))
180 static_cast<TTree*
>(h1d)->SetDirectory(0);
189 map<const string, TNamed *>::const_iterator histoiter = Histo.find(name);
190 if (histoiter != Histo.end())
200 map<const string, TNamed *>::const_iterator histoiter = Histo.begin();
201 unsigned int size = Histo.size();
204 cout <<
"Map contains " << size <<
" Elements" << endl;
208 for (
unsigned int i = 0;i < ihisto;i++)
212 return histoiter->second;
216 cout <<
"Fun4AllHistoManager::getHisto: ERROR Invalid histogram number: "
217 << ihisto <<
", maximum number is " << size << endl;
225 map<const string, TNamed *>::const_iterator histoiter = Histo.begin();
226 unsigned int size = Histo.size();
229 cout <<
"Map contains " << size <<
" Elements" << endl;
233 for (
unsigned int i = 0;i < ihisto;i++)
237 return histoiter->first.c_str();
241 cout <<
"Fun4AllHistoManager::getHisto: ERROR Invalid histogram number: "
242 << ihisto <<
", maximum number is " << size << endl;
250 map<const string, TNamed *>::const_iterator histoiter = Histo.find(hname);
251 if (histoiter != Histo.end())
253 return histoiter->second;
255 cout <<
"Fun4AllHistoManager::getHisto: ERROR Unknown Histogram " << hname
256 <<
", The following are implemented: " << endl;
266 if (what ==
"ALL" || what ==
"HISTOS")
269 cout <<
"--------------------------------------" << endl << endl;
270 cout <<
"List of Histos in Fun4AllHistoManager "
271 <<
Name() <<
":" << endl;
273 map<const string, TNamed *>::const_iterator hiter;
274 for (hiter = Histo.begin(); hiter != Histo.end(); ++hiter)
276 cout << hiter->first <<
" is " << hiter->second << endl;
286 map<const string, TNamed *>::const_iterator hiter;
287 for (hiter = Histo.begin(); hiter != Histo.end(); ++hiter)
289 TNamed* h = hiter->second;
290 if (h->InheritsFrom(
"TH1"))
291 (
dynamic_cast<TH1*
>(h))->Reset();
293 else if (h->InheritsFrom(
"THnSparse"))
294 (
dynamic_cast<THnSparse*
>(h))->
Reset();
int verbosity
The verbosity level. 0 means not verbose at all.
virtual const std::string Name() const
Returns the name of this module.
virtual int Verbosity() const
Gets the verbosity of this module.
virtual ~Fun4AllHistoManager()
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
virtual int get_IntFlag(const std::string &name) const
static TDirectory * mkdir(TDirectory *topDir, const char *path, std::vector< std::string > *titles=0)
static recoConsts * instance()