source: trunk/MagicSoft/Mars/manalysis/MCompProbCalc.h@ 1869

Last change on this file since 1869 was 1574, checked in by tbretz, 22 years ago
*** empty log message ***
File size: 701 bytes
Line 
1#ifndef MARS_MCompProbCalc
2#define MARS_MCompProbCalc
3
4#ifndef MARS_MTask
5#include "MTask.h"
6#endif
7
8class MMcEvt;
9class MParList;
10class MHadronness;
11
12class MCompProbCalc : public MTask
13{
14private:
15 MHadronness *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
23public:
24 MCompProbCalc(const char *name=NULL, const char *title=NULL);
25 ~MCompProbCalc();
26
27 Bool_t PreProcess(MParList *plist);
28 Bool_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.