source: trunk/MagicSoft/Mars/mtools/MChisqEval.h@ 2930

Last change on this file since 2930 was 2744, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 1.5 KB
Line 
1#ifndef MARS_MChisqEval
2#define MARS_MChisqEval
3
4#ifndef ROOT_MTask
5#include "MTask.h"
6#endif
7
8class MData;
9class MParameterD;
10
11class MChisqEval : public MTask
12{
13private:
14 static const TString gsDefName;
15 static const TString gsDefTitle;
16
17 Double_t fChisq; //! Evaluated chi square
18 MParameterD *fResult; //! Storage for result
19
20 MData *fData0; // Data Member one (monte carlo data or chisq function)
21 MData *fData1; // Data Member two (measured data)
22
23 // --------------------------------------------------------------------------
24 //
25 // Implementation of SavePrimitive. Used to write the call to a constructor
26 // to a macro. In the original root implementation it is used to write
27 // gui elements to a macro-file.
28 //
29 void StreamPrimitive(ofstream &out) const;
30
31 enum { kIsOwner = BIT(14) };
32
33 Int_t PreProcess(MParList *plist);
34 Int_t Process();
35 Int_t PostProcess();
36
37public:
38 MChisqEval(const char *name=NULL, const char *title=NULL);
39 MChisqEval(MData *y1, const char *name=NULL, const char *title=NULL);
40 MChisqEval(MData *y1, MData *y2, const char *name=NULL, const char *title=NULL);
41 ~MChisqEval();
42
43 void SetY1(MData *data);
44 void SetY2(MData *data);
45 void SetY1(const TString data);
46 void SetY2(const TString data);
47
48 void SetOwner(Bool_t o=kTRUE) { o ? SetBit(kIsOwner) : ResetBit(kIsOwner); }
49
50 Double_t GetChisq() const { return fChisq; }
51
52 ClassDef(MChisqEval, 0)
53};
54
55#endif
Note: See TracBrowser for help on using the repository browser.