source: trunk/MagicSoft/Mars/mhist/MHMcEfficiencyImpact.h@ 1306

Last change on this file since 1306 was 1306, checked in by tbretz, 22 years ago
*** empty log message ***
  • Property svn:executable set to *
File size: 1.0 KB
Line 
1#ifndef MARS_MHMcEfficiencyImpact
2#define MARS_MHMcEfficiencyImpact
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 MHMcEfficiencyImpact : public MParContainer
15{
16private:
17
18 TH1D fHist; // histogram with the logarith of the energy
19
20 // const MMcEvt *fMcEvt; //! container to fill histogram from
21
22public:
23 MHMcEfficiencyImpact(const char *name=NULL, const char *title=NULL);
24 ~MHMcEfficiencyImpact();
25
26 void SetName(const char *name);
27 void SetTitle(const char *title);
28
29 const TH1D *GetHist() { return &fHist; }
30 const TH1D *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(MHMcEfficiencyImpact, 1) // Histogram container for 1D trigger efficiency in impact
39};
40
41#endif
Note: See TracBrowser for help on using the repository browser.