Hello,
When I execute the command
fitr->Print();
ROOT prints the following statistics
MinFCN
Chi2
NDf
Edm
NCalls
What are MinFCN, Edm, and NCalls?
Hello,
When I execute the command
fitr->Print();
ROOT prints the following statistics
MinFCN
Chi2
NDf
Edm
NCalls
What are MinFCN, Edm, and NCalls?
Hi,
MinFCN minimum value of the objective function used for fitting (chi2 for a least square fit or negative log-likelihood for a maximum likelihood fit)Chi2 chi2 value obtained using the fitting funciton. It is equal to MinFCN when doing a least square fit.NDf number of degree of freedom of the fit. Equal to Number of bins - number of fit parameters when fitting an histogramEdm expected distance from the minimum. It is used to check if the found minimum is reliable. IfNCalls number of time the objective function is called during minimization.Thank you!