Class Reference for E1039 Core & Analysis Software
Fun4AllHistoManager.h
Go to the documentation of this file.
1 #ifndef __FUN4ALLHISTOMANAGER_H
2 #define __FUN4ALLHISTOMANAGER_H
3 
4 #include "Fun4AllBase.h"
5 #include <iostream>
6 #include <map>
7 #include <string>
8 
9 class TNamed;
10 
12 {
13  public:
14  Fun4AllHistoManager (const std::string &name);
15  virtual ~Fun4AllHistoManager();
16 
17  void Print(const std::string &what = "ALL") const;
18  bool registerHisto(const std::string &hname, TNamed *h1d, const int replace = 0);
19  bool registerHisto(TNamed *h1d, const int replace = 0);
20  template <typename T> T* makeHisto(T* t) {
21  if (not registerHisto(t)) {
22  delete t;
23  t = NULL;
24  }
25  return t;
26  }
27  int isHistoRegistered(const std::string &name) const;
28  TNamed *getHisto(const std::string &hname) const;
29  TNamed *getHisto(const unsigned int ihisto) const;
30  const char *getHistoName(const unsigned int ihisto) const;
31  unsigned int nHistos() const {return Histo.size();}
32  void Reset();
33  int dumpHistos(const std::string &filename = "", const std::string &openmode="RECREATE");
34  void setOutfileName(const std::string &filename) {outfilename = filename;}
35 
36  private:
37  std::string outfilename;
38  std::map<const std::string, TNamed*> Histo;
39 };
40 
41 #endif /* __FUN4ALLHISTOMANAGER_H */
#define NULL
Definition: Pdb.h:9
void setOutfileName(const std::string &filename)
unsigned int nHistos() const
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