31#ifndef ROOT_Math_GSL_RootFinderDeriv
32#define ROOT_Math_GSL_RootFinderDeriv
48 class GSLRootFdFSolver;
49 class GSLFunctionDerivWrapper;
89#if defined(__MAKECINT__) || defined(G__DICTIONARY)
91 std::cerr <<
"GSLRootFinderDeriv - Error : Algorithm requirs derivatives" << std::endl;
114 bool Solve(
int maxIter = 100,
double absTol = 1E-8,
double relTol = 1E-10);
124 const char *
Name()
const;
typedef void(GLAPIENTRYP _GLUfuncptr)(void)
Class for adapting any C++ functor class to C function pointers used by GSL.
class to wrap a gsl_function_fdf (with derivatives)
Root-Finder with derivatives implementation class using GSL.
Base class for GSL Root-Finding algorithms for one dimensional functions which use function derivativ...
GSLFunctionDerivWrapper * fFunction
int Iterations() const
Return number of iterations.
virtual ~GSLRootFinderDeriv()
bool Solve(int maxIter=100, double absTol=1E-8, double relTol=1E-10)
Find the root (return false if failed)
double Root() const
Returns the previously calculated root.
GSLRootFinderDeriv & operator=(const GSLRootFinderDeriv &)
bool SetFunction(const IGradFunction &f, double xstart)
Sets the function for algorithms using derivatives.
void SetSolver(GSLRootFdFSolver *s)
int Iterate()
iterate (return GSL_SUCCESS in case of successful iteration)
int Status() const
Return the status of last root finding.
const char * Name() const
Return name of root finder algorithm.
double(* GSLFuncPointer)(double, void *)
void(* GSLFdFPointer)(double, void *, double *, double *)
Interface (abstract class) for generic functions objects of one-dimension Provides a method to evalua...
Interface (abstract class) for one-dimensional functions providing a gradient calculation.
Interface for finding function roots of one-dimensional functions.
virtual bool SetFunction(const ROOT::Math::IGradFunction &, double)
Sets the function for algorithms using derivatives.
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...