source: trunk/MagicSoft/Mars/mhist/MHMcEfficiency.h@ 1951

Last change on this file since 1951 was 1574, checked in by tbretz, 22 years ago
*** empty log message ***
  • Property svn:executable set to *
File size: 1.0 KB
Line 
1#ifndef MARS_MHMcEfficiency
2#define MARS_MHMcEfficiency
3
4#ifndef MARS_MParContainer
5#include "MParContainer.h"
6#endif
7#ifndef ROOT_TH2
8#include <TH2.h>
9#endif
10
11class MMcEvt;
12class MHMcEnergyImpact;
13
14class MHMcEfficiency : public MParContainer
15{
16private:
17
18 TH2D fHist; // histogram with the logarith of the energy
19
20 // const MMcEvt *fMcEvt; //! container to fill histogram from
21
22public:
23 MHMcEfficiency(const char *name=NULL, const char *title=NULL);
24 ~MHMcEfficiency();
25
26 void SetName(const char *name);
27 void SetTitle(const char *title);
28
29 const TH2D *GetHist() { return &fHist; }
30 const TH2D *GetHist() const { return &fHist; }
31
32 TH1 *GetHistByName(const TString name) { return &fHist; }
33
34 void Draw(Option_t* option = "");
35 TObject *DrawClone(Option_t* option = "") const;
36
37 void Calc(const TH2D &hsel, const TH2D &hall);
38 void Calc(const MHMcEnergyImpact &mcsel, const MHMcEnergyImpact &mcall);
39
40 ClassDef(MHMcEfficiency, 1) // Histogram container for 2D trigger efficiency
41};
42
43#endif
Note: See TracBrowser for help on using the repository browser.