10#ifndef ROOT_Minuit2_FCNGradAdapter
11#define ROOT_Minuit2_FCNGradAdapter
33template <
class Function>
44 double Up()
const {
return fUp; }
46 std::vector<double>
Gradient(
const std::vector<double> &
v)
const
51 os <<
"gradient in FCNAdapter = {";
52 for (
unsigned int i = 0; i <
fGrad.size(); ++i)
53 os <<
fGrad[i] << (i ==
fGrad.size() - 1 ?
'}' :
'\t');
64 mutable std::vector<double>
fGrad;
Double_t(* Function)(Double_t)
template wrapped class for adapting to FCNBase signature a IGradFunction
double operator()(const std::vector< double > &v) const
The meaning of the vector of parameters is of course defined by the user, who uses the values of thos...
bool CheckGradient() const
FCNGradAdapter(const Function &f, double up=1.)
double operator()(const double *v) const
std::vector< double > Gradient(const std::vector< double > &v) const
double Up() const
Error definition of the function.
std::vector< double > fGrad
Extension of the FCNBase for providing the analytical Gradient of the function.
void Debug(const Ts &... args)
tbb::task_arena is an alias of tbb::interface7::task_arena, which doesn't allow to forward declare tb...