130   if (function == 
nullptr) {
 
  131      MATH_ERROR_MSG(
"GSLMinimizer::Minimize",
"Function has not been set");
 
  136   unsigned int ndim = 
NDim();
 
  142      MATH_WARN_MSGVAL(
"GSLMinimizer::Minimize",
"number of parameters larger than function dimension - ignore extra parameters",
npar);
 
  145   const double eps = std::numeric_limits<double>::epsilon();
 
  159      MATH_INFO_MSG(
"GSLMinimizer::Minimize",
"There are no free parameter - just compute the function value");
 
  160      double fval = (*function)((
double*)
nullptr);   
 
  169   for (
unsigned int i = 0; i < 
steps.size(); ++i)
 
  190   unsigned  int iter = 0;
 
  207         std::cout << 
"----------> Iteration " << std::setw(4) << iter;
 
  208         int pr = std::cout.precision(18);
 
  210         std::cout.precision(
pr);
 
  212            std::cout << 
"            Parameter Values : ";
 
  214            std::cout << std::endl;
 
  218            for (
unsigned int i = 0; i < 
NDim(); ++i) {
 
  223            std::cout << std::endl;
 
  237   if (
x == 
nullptr) 
return false;
 
  248         std::cout << 
"GSLMinimizer: Minimum Found" << std::endl;
 
  249         int pr = std::cout.precision(18);
 
  250         std::cout << 
"FVAL         = " << 
MinValue() << std::endl;
 
  251         std::cout.precision(
pr);
 
  253         std::cout << 
"Niterations  = " << iter << std::endl;
 
  255         if (
ncalls) std::cout << 
"NCalls     = " << 
ncalls << std::endl;
 
  256         for (
unsigned int i = 0; i < 
NDim(); ++i)
 
  257            std::cout << 
VariableName(i) << 
"\t  = " << 
X()[i] << std::endl;
 
  263         std::cout << 
"GSLMinimizer: Minimization did not converge" << std::endl;
 
  266               std::cout << 
"\t Iteration is not making progress towards solution" << std::endl;
 
  268               std::cout << 
"\t Iteration failed with status " << status << std::endl;
 
  273               for (
unsigned int i = 0; i < 
NDim(); ++i) 
dg2 += 
g[i] * 
g[1];
 
  274               std::cout << 
"Grad module is " << std::sqrt(
dg2) << std::endl;
 
  275               for (
unsigned int i = 0; i < 
NDim(); ++i)
 
  276                  std::cout << 
VariableName(i) << 
"\t  = " << 
X()[i] << std::endl;
 
  277               std::cout << 
"FVAL         = " << 
MinValue() << std::endl;
 
  278               std::cout << 
"Niterations  = " << iter << std::endl;
 
 
#define MATH_INFO_MSG(loc, str)
Pre-processor macro to report messages which can be configured to use ROOT error or simply an std::io...
 
#define MATH_ERROR_MSGVAL(loc, txt, x)
 
#define MATH_ERROR_MSG(loc, str)
 
#define MATH_WARN_MSGVAL(loc, txt, x)
 
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
 
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char Pixmap_t Pixmap_t PictureAttributes_t attr const char char ret_data h unsigned char height h Atom_t Int_t ULong_t ULong_t unsigned char prop_list Atom_t Atom_t Atom_t Time_t type
 
FitMethodFunction class Interface for objective functions (like chi2 and likelihood used in the fit) ...
 
virtual unsigned int NPar() const
total number of parameter defined
 
unsigned int NFree() const override
number of free variables (real dimension of the problem)
 
unsigned int NDim() const override
number of dimensions
 
void SetMinValue(double val)
 
void SetFinalValues(const double *x, const MinimTransformFunction *func=nullptr)
 
double MinValue() const override
return minimum function value
 
MinimTransformFunction * CreateTransformation(std::vector< double > &startValues, const ROOT::Math::IMultiGradFunction *func=nullptr)
 
virtual const double * StepSizes() const
accessor methods
 
void SetFunction(const ROOT::Math::IMultiGenFunction &func) override
set the function to minimize
 
const ROOT::Math::IMultiGenFunction * ObjFunction() const
return pointer to used objective function
 
const ROOT::Math::IMultiGradFunction * GradObjFunction() const
return pointer to used gradient object function (NULL if gradient is not supported)
 
const double * X() const override
return pointer to X values at the minimum
 
std::string VariableName(unsigned int ivar) const override
get name of variables (override if minimizer support storing of variable names)
 
const double * MinGradient() const override
return pointer to gradient values at the minimum
 
ROOT::Math::GSLMultiMinimizer * fGSLMultiMin
 
void SetFunction(const ROOT::Math::IMultiGenFunction &func) override
set the function to minimize
 
~GSLMinimizer() override
Destructor.
 
unsigned int NCalls() const override
number of function calls to reach the minimum
 
GSLMinimizer(ROOT::Math::EGSLMinimizerType type=ROOT::Math::kConjugateFR)
Default constructor.
 
bool Minimize() override
method to perform the minimization
 
GSLMultiMinimizer class , for minimizing multi-dimensional function using derivatives.
 
int Set(const ROOT::Math::IMultiGradFunction &func, const double *x, double stepSize, double tol)
set the function to be minimize the initial minimizer parameters, step size and tolerance in the line...
 
double Minimum() const
function value at the minimum
 
double * Gradient() const
gradient value at the minimum
 
double * X() const
x values at the minimum
 
int TestGradient(double absTol) const
test gradient (ask from minimizer gradient vector)
 
Documentation for the abstract class IBaseFunctionMultiDim.
 
Interface (abstract class) for multi-dimensional functions providing a gradient calculation.
 
static int DefaultPrintLevel()
 
static int DefaultMaxIterations()
 
double Tolerance() const
Absolute tolerance.
 
void SetMaxIterations(unsigned int maxiter)
Set maximum iterations (one iteration can have many function calls).
 
int fStatus
status of minimizer
 
unsigned int MaxIterations() const
Max iterations.
 
void SetPrintLevel(int level)
Set print level.
 
int PrintLevel() const
Set print level.
 
MultiNumGradFunction class to wrap a normal function in a gradient function using numerical gradient ...
 
const_iterator begin() const
 
const_iterator end() const
 
EGSLMinimizerType
enumeration specifying the types of GSL minimizers
 
Namespace for new Math classes and functions.
 
tbb::task_arena is an alias of tbb::interface7::task_arena, which doesn't allow to forward declare tb...