template<class
Function>
class ROOT::Minuit2::FumiliFCNAdapter< Function >
template wrapped class for adapting to FumiliFCNBase signature
- Author
- Lorenzo Moneta
Definition at line 43 of file FumiliFCNAdapter.h.
|
| | FumiliFCNAdapter (const Function &f, unsigned int ndim, double up=1.) |
| virtual unsigned int | Dimension () |
| | return number of function variable (parameters) , i.e.
|
| virtual double | ErrorDef () const |
| | Error definition of the function.
|
| void | EvaluateAll (std::vector< double > const &v) override |
| | evaluate gradient hessian and function value needed by Fumili
|
| virtual std::vector< double > | G2 (std::vector< double > const &) const |
| | Return the diagonal elements of the Hessian (second derivatives).
|
| virtual const std::vector< double > & | Gradient () const |
| | Return cached Value of function Gradient estimated previously using the FumiliFCNBase::EvaluateAll method.
|
| std::vector< double > | Gradient (std::vector< double > const &) const override |
| | Return the gradient vector of the function at the given parameter point.
|
| virtual std::vector< double > | GradientWithPrevResult (std::vector< double > const ¶meters, double *, double *, double *) const |
| virtual GradientParameterSpace | gradParameterSpace () const |
| virtual bool | HasG2 () const |
| bool | HasGradient () const override |
| virtual bool | HasHessian () const |
| std::vector< double > | Hessian (std::vector< double > const &) const override |
| | Return Value of the i-th j-th element of the Hessian matrix estimated previously using the FumiliFCNBase::EvaluateAll method.
|
| virtual double | Hessian (unsigned int row, unsigned int col) const |
| double | operator() (const double *v) const |
| double | operator() (std::vector< double > const &v) const override |
| | The meaning of the vector of parameters is of course defined by the user, who uses the values of those parameters to calculate their function Value.
|
| void | SetErrorDef (double up) override |
| | add interface to set dynamically a new error definition Re-implement this function if needed.
|
| double | Up () const override |
| | Error definition of the function.
|
| virtual double | Value () const |
| | Return cached Value of objective function estimated previously using the FumiliFCNBase::EvaluateAll method.
|
| virtual double ROOT::Minuit2::FCNBase::ErrorDef |
( |
| ) |
const |
|
inlinevirtualinherited |
Error definition of the function.
MINUIT defines Parameter errors as the change in Parameter Value required to change the function Value by up. Normally, for chisquared fits it is 1, and for negative log likelihood, its Value is 0.5. If the user wants instead the 2-sigma errors for chisquared fits, it becomes 4, as Chi2(x+n*sigma) = Chi2(x) + n*n.
Comment a little bit better with links!!!!!!!!!!!!!!!!!
Definition at line 70 of file FCNBase.h.
The meaning of the vector of parameters is of course defined by the user, who uses the values of those parameters to calculate their function Value.
The order and the position of these parameters is strictly the one specified by the user when supplying the starting values for minimization. The starting values must be specified by the user, either via an std::vector<double> or the MnUserParameters supplied as input to the MINUIT minimizers such as VariableMetricMinimizer or MnMigrad. Later values are determined by MINUIT as it searches for the Minimum or performs whatever analysis is requested by the user.
- Parameters
-
| v | function parameters as defined by the user. |
- Returns
- the Value of the function.
- See also
- MnUserParameters
-
VariableMetricMinimizer
-
MnMigrad
Implements ROOT::Minuit2::FCNBase.
Definition at line 51 of file FumiliFCNAdapter.h.
Error definition of the function.
MINUIT defines Parameter errors as the change in Parameter Value required to change the function Value by up. Normally, for chisquared fits it is 1, and for negative log likelihood, its Value is 0.5. If the user wants instead the 2-sigma errors for chisquared fits, it becomes 4, as Chi2(x+n*sigma) = Chi2(x) + n*n.
Implements ROOT::Minuit2::FCNBase.
Definition at line 53 of file FumiliFCNAdapter.h.