source: trunk/MagicSoft/Mars/mhistmc/MHMcEfficiencyImpact.h@ 2262

Last change on this file since 2262 was 2015, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 1012 bytes
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
25 void SetName(const char *name);
26 void SetTitle(const char *title);
27
28 const TH1D *GetHist() { return &fHist; }
29 const TH1D *GetHist() const { return &fHist; }
30
31 TH1 *GetHistByName(const TString name) { return &fHist; }
32
33 void Draw(Option_t* option = "");
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.