Line | |
---|
1 | #ifndef MARS_MCompProbCalc
|
---|
2 | #define MARS_MCompProbCalc
|
---|
3 |
|
---|
4 | #ifndef MARS_MTask
|
---|
5 | #include "MTask.h"
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | class MMcEvt;
|
---|
9 | class MParList;
|
---|
10 | class MParameterD;
|
---|
11 |
|
---|
12 | class MCompProbCalc : public MTask
|
---|
13 | {
|
---|
14 | private:
|
---|
15 | MParameterD *fHadronness; //! Output container (Hadronness)
|
---|
16 |
|
---|
17 | TList *fData; //! List of MDataChains to be used
|
---|
18 | TList *fHistVar; //! List of variable bin size histograms
|
---|
19 |
|
---|
20 | void Fill(TList &list);
|
---|
21 | void SetBinningHistVar();
|
---|
22 |
|
---|
23 | public:
|
---|
24 | MCompProbCalc(const char *name=NULL, const char *title=NULL);
|
---|
25 | ~MCompProbCalc();
|
---|
26 |
|
---|
27 | Int_t PreProcess(MParList *plist);
|
---|
28 | Int_t Process();
|
---|
29 |
|
---|
30 | ClassDef(MCompProbCalc, 1) // Task to calculate composite probabilities
|
---|
31 | };
|
---|
32 |
|
---|
33 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.