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

Last change on this file since 1330 was 1306, checked in by tbretz, 23 years ago
*** empty log message ***
  • Property svn:executable set to *
File size: 986 bytes
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 void Draw(Option_t* option = "");
33 TObject *DrawClone(Option_t* option = "") const;
34
35 void Calc(const TH2D &hsel, const TH2D &hall);
36 void Calc(const MHMcEnergyImpact &mcsel, const MHMcEnergyImpact &mcall);
37
38 ClassDef(MHMcEfficiency, 1) // Histogram container for 2D trigger efficiency
39};
40
41#endif
Note: See TracBrowser for help on using the repository browser.