Interface (abstract class) defining the function to be minimized, which has to be implemented by the user.
Public Member Functions | |
| virtual | ~FCNBase ()=default |
| virtual double | ErrorDef () const |
| Error definition of the function. | |
| virtual std::vector< double > | G2 (std::vector< double > const &) const |
| Return the diagonal elements of the Hessian (second derivatives). | |
| virtual std::vector< double > | Gradient (std::vector< double > const &) const |
| 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 std::vector< double > | GradientWithPrevResult (std::vector< double > const ¶meters, double *previous_grad, double *previous_g2, double *previous_gstep, double) const |
Variant of GradientWithPrevResult() that additionally receives the already-known function value at parameters (e.g. | |
| virtual GradientParameterSpace | gradParameterSpace () const |
| virtual bool | HasG2 () const |
| virtual bool | HasGradient () const |
| virtual bool | HasHessian () const |
| virtual std::vector< double > | Hessian (std::vector< double > const &) const |
| Return the full Hessian matrix of the function. | |
| virtual double | operator() (std::vector< double > const &v) const =0 |
| 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. | |
| virtual bool | SecondDerivativeAlwaysVanishes (unsigned int, unsigned int) const |
| Indicate whether the mixed second order derivative with respect to parameters i and j is identically zero, i.e. | |
| virtual void | SetErrorDef (double) |
| add interface to set dynamically a new error definition Re-implement this function if needed. | |
| virtual double | Up () const =0 |
| Error definition of the function. | |
#include <Minuit2/FCNBase.h>
|
virtualdefault |
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!!!!!!!!!!!!!!!!!
|
inlinevirtual |
Return the diagonal elements of the Hessian (second derivatives).
By default, returns an empty vector. Override this method if analytic second derivatives (per-parameter curvature) are available.
| v | Parameter vector. |
Reimplemented in ROOT::Minuit2::FCNAdapter.
|
inlinevirtual |
Return the gradient vector of the function at the given parameter point.
By default, returns an empty vector (no analytic gradient provided). Override this method if an analytic gradient is available.
| v | Parameter vector. |
Reimplemented in ROOT::Minuit2::FumiliFCNBase, and ROOT::Minuit2::FCNAdapter.
|
inlinevirtual |
Variant of GradientWithPrevResult() that additionally receives the already-known function value at parameters (e.g.
from the line search that preceded the gradient request), so implementations can avoid re-evaluating the function at the central point.
|
inlinevirtual |
Reimplemented in ROOT::Minuit2::FCNAdapter.
Reimplemented in ROOT::Minuit2::FCNGradientBase, ROOT::Minuit2::FCNAdapter, and ROOT::Minuit2::FumiliFCNBase.
Reimplemented in ROOT::Minuit2::FCNAdapter.
|
inlinevirtual |
Return the full Hessian matrix of the function.
By default, returns an empty vector. Override this method if the full analytic Hessian (matrix of second derivatives) is available.
| v | Parameter vector. |
Reimplemented in ROOT::Minuit2::FumiliFCNBase, and ROOT::Minuit2::FCNAdapter.
|
pure virtual |
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.
| v | function parameters as defined by the user. |
Implemented in ROOT::Minuit2::FumiliChi2FCN, ROOT::Minuit2::FumiliMaximumLikelihoodFCN, ROOT::Minuit2::FCNAdapter, ROOT::Minuit2::FumiliFCNAdapter< Function >, and ROOT::Minuit2::ParametricFunction.
|
inlinevirtual |
Indicate whether the mixed second order derivative with respect to parameters i and j is identically zero, i.e.
zero for all parameter values. This can help to avoid expensive function calls in numerical Hessian evaluations (see MnHesse).
The contract for implementations:
true if the second derivative vanishes for any value of the parameters: the result may be cached and is used at arbitrary points in parameter space.Reimplemented in ROOT::Minuit2::FCNAdapter.
add interface to set dynamically a new error definition Re-implement this function if needed.
Reimplemented in ROOT::Minuit2::FCNAdapter, and ROOT::Minuit2::FumiliFCNAdapter< Function >.
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.
Implemented in ROOT::Minuit2::FCNAdapter, ROOT::Minuit2::FumiliChi2FCN, ROOT::Minuit2::FumiliFCNAdapter< Function >, and ROOT::Minuit2::FumiliMaximumLikelihoodFCN.