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