APRILContent
Algorithm of Particle Reconstruction for ILC - implementation with PandoraSDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations
HistogramHelper.h
Go to the documentation of this file.
1 
3 #ifndef HistogramManager_h
4 #define HistogramManager_h
5 
6 #include <string>
7 
8 #include "TNtuple.h"
9 
10 class TDirectory;
11 
12 using namespace std;
13 
14 namespace april_content
15 {
16 
18 
19 public:
20  HistogramManager(const char * filename="Monitoring.root");
21  virtual ~HistogramManager();
22 
23  // Create (if doesn't exist) and Fill a fixed bin histogram (TH1F or TH2F)
24  static void CreateFill(string tupleName, string varNamelist, std::vector<float> varList);
25 
26 private:
27  //static std::vector<TNtuple*> tupleVec;
28 };
29 
30 }
31 
32 #endif // HistogramManager_h
33 
Definition: HistogramHelper.h:17