GSI Object Oriented Online Offline (Go4)  GO4-5.3.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
TGo4FitMinuitResult.h
Go to the documentation of this file.
1 // $Id: TGo4FitMinuitResult.h 478 2009-10-29 12:26:09Z linev $
2 //-----------------------------------------------------------------------
3 // The GSI Online Offline Object Oriented (Go4) Project
4 // Experiment Data Processing at EE department, GSI
5 //-----------------------------------------------------------------------
6 // Copyright (C) 2000- GSI Helmholtzzentrum für Schwerionenforschung GmbH
7 // Planckstr. 1, 64291 Darmstadt, Germany
8 // Contact: http://go4.gsi.de
9 //-----------------------------------------------------------------------
10 // This software can be used under the license agreements as stated
11 // in Go4License.txt file which is part of the distribution.
12 //-----------------------------------------------------------------------
13 
14 #ifndef TGO4FITMINUITRESULT_H
15 #define TGO4FITMINUITRESULT_H
16 #include "TNamed.h"
17 #include "TArrayD.h"
18 #include "TArrayC.h"
19 #include "TMatrixD.h"
20 #include "TMinuit.h"
21 
31 class TGo4FitMinuitResult : public TNamed {
32  public:
34  TGo4FitMinuitResult(const char* iName, const char* iTitle);
35  virtual ~TGo4FitMinuitResult();
36 
37  void CallMNSTAT(TMinuit* fMinuit);
38  void CallMNPOUT(TMinuit* fMinuit, Int_t nPars);
39  void CallMNERRS(TMinuit* fMinuit, Int_t nPars);
40  void CallMNEMAT(TMinuit* fMinuit, Int_t nPars, Bool_t DoTransform = kTRUE);
41  void GetContourPlot(TMinuit* fMinuit);
42 
43  virtual void Print(Option_t* option) const;
44 
45  // by MNSTAT command
46  Double_t FMIN;
47  Double_t FEDM;
48  Double_t ERRDEF;
49  Int_t NPARI;
50  Int_t NPARX;
51  Int_t ISTAT;
52 
53  // by MNPOUT command
54  TArrayD* ParValues;
55  TArrayD* ParError;
56 
57  // by MNERRS command
58  TArrayD* EPLUS;
59  TArrayD* EMINUS;
60  TArrayD* EPARAB;
61  TArrayD* GLOBCC;
62 
63  // by MNEMAT command
64  TMatrixD* ERRORMATRIX;
65 
66  // contour plot
67  TArrayD* CONTOX;
68  TArrayD* CONTOY;
69  TArrayC* CONTOCH;
70 
71  private:
72 
73  ClassDef(TGo4FitMinuitResult,1)
74 };
75 #endif // TGO4FITMINUITRESULT_H
void GetContourPlot(TMinuit *fMinuit)
virtual void Print(Option_t *option) const
void CallMNERRS(TMinuit *fMinuit, Int_t nPars)
void CallMNEMAT(TMinuit *fMinuit, Int_t nPars, Bool_t DoTransform=kTRUE)
void CallMNSTAT(TMinuit *fMinuit)
void CallMNPOUT(TMinuit *fMinuit, Int_t nPars)