| Line | |
|---|
| 1 | #ifndef MARS_MHCT1Supercuts
|
|---|
| 2 | #define MARS_MHCT1Supercuts
|
|---|
| 3 |
|
|---|
| 4 | #ifndef MARS_MH
|
|---|
| 5 | #include "MH.h"
|
|---|
| 6 | #endif
|
|---|
| 7 |
|
|---|
| 8 | class TH1F;
|
|---|
| 9 | class TH2F;
|
|---|
| 10 |
|
|---|
| 11 | class MHCT1Supercuts : public MH
|
|---|
| 12 | {
|
|---|
| 13 | private:
|
|---|
| 14 | TH1F *fDegree; // order of polynomial for background fit
|
|---|
| 15 | TH1F *fProb; // chi2 probability of polynomial fit
|
|---|
| 16 | TH1F *fNdf; // NDF of polynomial fit
|
|---|
| 17 | TH1F *fGamma; // Nbg = gamma * Noff
|
|---|
| 18 | TH1F *fNexNon; // no.of excess events / no.of events in signal region
|
|---|
| 19 | TH1F *fSigLiMa; // significance of gamma signal
|
|---|
| 20 |
|
|---|
| 21 | TH2F *fSigtoBackg; // significance vs signal to background ratio (Nex/Nbg)
|
|---|
| 22 | TH2F *fSigDegree; // significance vs order of polynomial
|
|---|
| 23 | TH2F *fSigNbins; // significance vs number of bins
|
|---|
| 24 |
|
|---|
| 25 |
|
|---|
| 26 | public:
|
|---|
| 27 | MHCT1Supercuts(const char *name=NULL, const char *title=NULL);
|
|---|
| 28 | ~MHCT1Supercuts();
|
|---|
| 29 |
|
|---|
| 30 | Bool_t Fill(const MParContainer *par, const Stat_t w=1);
|
|---|
| 31 |
|
|---|
| 32 | void Draw(Option_t *opt=NULL);
|
|---|
| 33 |
|
|---|
| 34 | ClassDef(MHCT1Supercuts, 1) // Container which holds histograms for the supercuts
|
|---|
| 35 | };
|
|---|
| 36 |
|
|---|
| 37 | #endif
|
|---|
| 38 |
|
|---|
| 39 |
|
|---|
| 40 |
|
|---|
| 41 |
|
|---|
| 42 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.