12 #ifndef ROOT_TFitResult
13 #define ROOT_TFitResult
32 class TFitResult:
public TNamed,
public ROOT::Fit::FitResult {
37 TFitResult(
int status = 0): TNamed(
"TFitResult",
"TFitResult"),
38 ROOT::Fit::FitResult() {
43 TFitResult(
const char * name,
const char * title) :
45 ROOT::Fit::FitResult()
49 TFitResult(
const ROOT::Fit::FitResult& f);
51 virtual ~TFitResult() {}
54 virtual void Print(Option_t *option=
"")
const;
56 TMatrixDSym GetCovarianceMatrix()
const;
58 TMatrixDSym GetCorrelationMatrix()
const;
61 using ROOT::Fit::FitResult::Scan;
62 bool Scan(
unsigned int ipar, TGraph * gr,
double xmin = 0,
double xmax = 0);
66 using ROOT::Fit::FitResult::Contour;
67 bool Contour(
unsigned int ipar,
unsigned int jpar, TGraph * gr ,
double confLevel = 0.683);
72 double Error(
unsigned int i)
const {
77 ClassDef(TFitResult, 0);
81 std::string printValue(
const TFitResult* val);