GSI Object Oriented Online Offline (Go4)  GO4-6.3.0
TGo4FitMinuitResult.h
Go to the documentation of this file.
1 // $Id$
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 fuer 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 
17 #include "TNamed.h"
18 #include "TMatrixD.h"
19 
20 class TMinuit;
21 class TArrayD;
22 class TArrayC;
23 
33 class TGo4FitMinuitResult : public TNamed {
34  public:
36  TGo4FitMinuitResult(const char *iName, const char *iTitle);
37  virtual ~TGo4FitMinuitResult();
38 
39  void CallMNSTAT(TMinuit *fMinuit);
40  void CallMNPOUT(TMinuit *fMinuit, Int_t nPars);
41  void CallMNERRS(TMinuit *fMinuit, Int_t nPars);
42  void CallMNEMAT(TMinuit *fMinuit, Int_t nPars, Bool_t DoTransform = kTRUE);
43  void GetContourPlot(TMinuit *fMinuit);
44 
45  void Print(Option_t *option = "") const override;
46 
47  // by MNSTAT command
48  Double_t FMIN{0.};
49  Double_t FEDM{0.};
50  Double_t ERRDEF{0.};
51  Int_t NPARI{0};
52  Int_t NPARX{0};
53  Int_t ISTAT{0};
54 
55  // by MNPOUT command
56  TArrayD *ParValues{nullptr};
57  TArrayD *ParError{nullptr};
58 
59  // by MNERRS command
60  TArrayD *EPLUS{nullptr};
61  TArrayD *EMINUS{nullptr};
62  TArrayD *EPARAB{nullptr};
63  TArrayD *GLOBCC{nullptr};
64 
65  // by MNEMAT command
66  TMatrixD *ERRORMATRIX{nullptr};
67 
68  // contour plot
69  TArrayD *CONTOX{nullptr};
70  TArrayD *CONTOY{nullptr};
71  TArrayC *CONTOCH{nullptr};
72 
73  ClassDefOverride(TGo4FitMinuitResult,1)
74 };
75 
76 #endif // TGO4FITMINUITRESULT_H
void Print(Option_t *option="") const override
void GetContourPlot(TMinuit *fMinuit)
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)