14 #ifndef ROOT_Math_Functor 15 #define ROOT_Math_Functor 17 #ifndef ROOT_Math_IFunction 44 template<
class IBaseFunc>
77 template<
class ParentFunctor,
class Func >
121 inline double DoEval (
const double *
x)
const {
126 return fFunc.Derivative(x);
130 return fFunc.Derivative(x,icoord);
153 template<
class ParentFunctor,
class Func,
class GradFunc >
196 inline double DoEval (
const double *
x)
const {
205 return fGradFunc(x, icoord);
225 template <
class ParentFunctor,
typename PointerToObj,
226 typename PointerToMemFn>
237 : fDim(1), fObj(pObj), fMemFn(pMemFn)
241 MemFunHandler(
unsigned int dim,
const PointerToObj& pObj, PointerToMemFn pMemFn)
242 : fDim(dim), fObj(pObj), fMemFn(pMemFn)
261 return ((*fObj).*fMemFn)(
x);
264 inline double DoEval (
const double *
x)
const {
265 return ((*fObj).*fMemFn)(
x);
285 template <
class ParentFunctor,
typename PointerToObj,
286 typename PointerToMemFn,
typename PointerToGradMemFn>
296 MemGradFunHandler(
const PointerToObj& pObj, PointerToMemFn pMemFn, PointerToGradMemFn pGradMemFn)
300 fGradMemFn(pGradMemFn)
305 const PointerToObj& pObj,
306 PointerToMemFn pMemFn,
307 PointerToGradMemFn pGradMemFn )
311 fGradMemFn(pGradMemFn)
330 return ((*fObj).*fMemFn)(
x);
333 inline double DoEval (
const double *
x)
const {
334 return ((*fObj).*fMemFn)(
x);
338 return ((*fObj).*fGradMemFn)(
x);
342 return ((*fObj).*fGradMemFn)(
x,icoord);
411 template <
class PtrObj,
typename MemFn>
412 Functor(
const PtrObj& p, MemFn memFn,
unsigned int dim )
422 template <
typename Func>
439 if (rhs.
fImpl.get() != 0)
440 fImpl = std::auto_ptr<Impl>( (rhs.
fImpl)->Copy() );
451 Impl * p = fImpl.release();
452 fImpl.reset(copy.
fImpl.release());
462 unsigned int NDim()
const {
return fImpl->NDim(); }
467 inline double DoEval (
const double *
x)
const {
509 template <
typename Func>
518 template <
class PtrObj,
typename MemFn>
537 if (rhs.
fImpl.get() != 0)
538 fImpl = std::auto_ptr<Impl>( (rhs.
fImpl)->Copy() );
548 Impl * p = fImpl.release();
549 fImpl.reset(copy.
fImpl.release());
609 template <
typename Func>
617 template <
class PtrObj,
typename MemFn,
typename GradMemFn>
618 GradFunctor(
const PtrObj& p, MemFn memFn, GradMemFn gradFn,
unsigned int dim )
627 template <
typename Func,
typename GradFunc>
645 if (rhs.
fImpl.get() != 0)
646 fImpl = std::auto_ptr<Impl>( rhs.
fImpl->Copy() );
655 Impl * p = fImpl.release();
656 fImpl.reset(copy.
fImpl.release());
666 unsigned int NDim()
const {
return fImpl->NDim(); }
671 inline double DoEval (
const double *
x)
const {
677 return fImpl->Derivative(x,icoord);
724 template <
typename Func>
735 template <
class PtrObj,
typename MemFn,
typename GradMemFn>
745 template <
typename Func,
typename GradFunc>
763 if (rhs.
fImpl.get() != 0)
764 fImpl = std::auto_ptr<Impl>( rhs.
fImpl->Copy() );
774 Impl * p = fImpl.release();
775 fImpl.reset(copy.
fImpl.release());
794 return fImpl->Derivative(x);
double DoDerivative(double x) const
FunctorHandler(const Func &fun)
Interface (abstract class) for multi-dimensional functions providing a gradient calculation.
GradFunctor1D(const Func &f, const GradFunc &g)
construct from two 1D function objects
double DoEval(double x) const
implementation of the evaluation function. Must be implemented by derived classes ...
FunctorImpl< IBaseFunctionMultiDim > Impl
unsigned int NDim() const
Retrieve the dimension of the function.
Functor Handler class is responsible for wrapping any other functor and pointer to free C functions...
std::auto_ptr< Impl > fImpl
double DoEval(double x) const
Interface (abstract class) for generic functions objects of one-dimension Provides a method to evalua...
FunctorImpl< IGradientFunctionMultiDim > Impl
std::auto_ptr< Impl > fImpl
double DoDerivative(const double *x, unsigned int icoord) const
MemFunHandler(const PointerToObj &pObj, PointerToMemFn pMemFn)
constructor from a pointer to the class and a pointer to the function
virtual ~FunctorGradHandler()
Namespace for new ROOT classes and functions.
std::auto_ptr< Impl > fImpl
GradFunctor class for Multidimensional gradient functions.
GradFunctor1D class for one-dimensional gradient functions.
FunctorImpl< IGradientFunctionOneDim > Impl
GradFunctor1D(const GradFunctor1D &rhs)
Copy constructor for Functor based on ROOT::Math::IGradFunction.
Documentation for class Functor class.
double DoEval(const double *x) const
virtual FunctorImpl * Copy() const =0
double DoEval(const double *x) const
ImplBase * Clone() const
Clone a function.
IBaseFunctionOneDim::BaseFunc ImplBase
GradFunctor1D(const Func &f)
construct from an object with the right signature implementing both operator() (double x) and Derivat...
virtual ~MemGradFunHandler()
double DoEval(const double *x) const
GradFunctor()
Default constructor.
double DoDerivative(const double *x, unsigned int icoord) const
unsigned int NDim() const
ImplBase * Clone() const
Clone a function.
unsigned int NDim() const
FunctorHandler(unsigned int dim, const Func &fun)
MemGradFunHandler(const PointerToObj &pObj, PointerToMemFn pMemFn, PointerToGradMemFn pGradMemFn)
constructor from a pointer to the class and a pointer to the function
Interface (abstract class) for one-dimensional functions providing a gradient calculation.
GradFunctor(const Func &f, const GradFunc &g, int dim)
construct for Gradient Functions of multi-dimension Func gives the function evaluatiion, GradFunc the partial derivatives The function dimension is required
double DoEval(double x) const
double DoEval(const double *x) const
GradFunctor(const Func &f, unsigned int dim)
construct from a callable object of multi-dimension implementing operator()(const double *x) and Deri...
std::auto_ptr< Impl > fImpl
double DoDerivative(const double *x, unsigned int icoord) const
function to evaluate the derivative with respect each coordinate.
double DoDerivative(double x) const
ImplFunc::BaseFunc BaseFunc
FunctorGradHandler(unsigned int dim, const Func &fun, const GradFunc &gfun)
virtual ~GradFunctor()
Destructor (no operations)
Functor(const Func &f, unsigned int dim)
construct from a callable object of multi-dimension with the right signature (implementing operator()...
ParentFunctor::Impl ImplFunc
double DoEval(double x) const
Functor1D(const Functor1D &rhs)
Copy constructor for Functor based on ROOT::Math::IGenFunction.
ParentFunctor::Impl ImplFunc
GradFunctor1D()
Default constructor.
Functor Handler to Wrap pointers to member functions The member function type must be (XXX means any ...
Functor1D(const PtrObj &p, MemFn memFn)
construct from a pointer to member function (1D type)
Functor(const PtrObj &p, MemFn memFn, unsigned int dim)
construct from a pointer to member function (multi-dim type)
double DoEval(double x) const
MemGradFunHandler(unsigned int dim, const PointerToObj &pObj, PointerToMemFn pMemFn, PointerToGradMemFn pGradMemFn)
constructor from a pointer to the class and a pointer to the function
Functor(const Functor &rhs)
Copy constructor for functor based on ROOT::Math::IMultiGenFunction.
FunctorImpl is a base class for the functor handler implementation class.
IParamFunction interface (abstract class) describing multi-dimensional parameteric functions It is a ...
Functor1D()
Default constructor.
ImplBase * Clone() const
Clone a function.
GradFunctor(const GradFunctor &rhs)
Copy constructor for functor based on ROOT::Math::IMultiGradFunction.
double DoEval(double x) const
implementation of the evaluation function. Must be implemented by derived classes ...
GradFunctor(const PtrObj &p, MemFn memFn, GradMemFn gradFn, unsigned int dim)
construct from a pointer to member function and member function types for function and derivative eva...
unsigned int NDim() const
double DoDerivative(double x) const
ImplBase * Clone() const
Clone a function.
Functor()
Default constructor.
virtual ~FunctorHandler()
virtual ~Functor1D()
Destructor (no operations)
GradFunctor1D(const PtrObj &p, MemFn memFn, GradMemFn gradFn)
construct from a pointer to class and two pointers to member functions, one for the function evaluati...
double DoEval(const double *x) const
Implementation of the evaluation function.
double DoDerivative(const double *x, unsigned int icoord) const
IGradientFunctionOneDim::BaseFunc ImplBase
unsigned int NDim() const
Functor1D(const Func &f)
construct from a callable object with the right signature implementing operator() (double x) ...
virtual ~Functor()
Destructor (no operations)
Namespace for new Math classes and functions.
PointerToGradMemFn fGradMemFn
Binding & operator=(OUT(*fun)(void))
ImplFunc::BaseFunc BaseFunc
ParentFunctor::Impl ImplFunc
MemFunHandler(unsigned int dim, const PointerToObj &pObj, PointerToMemFn pMemFn)
constructor from a pointer to the class and a pointer to the function
virtual ~GradFunctor1D()
Destructor (no operations)
ParentFunctor::Impl ImplFunc
double DoDerivative(double x) const
function to evaluate the derivative with respect each coordinate.
Functor Handler to Wrap pointers to member functions for the evaluation of the function and the gradi...
FunctorGradHandler(const Func &fun, const GradFunc &gfun)
double DoEval(const double *x) const
Implementation of the evaluation function.
Functor1D class for one-dimensional functions.
IGradientFunctionMultiDim::BaseFunc ImplBase
ImplFunc::BaseFunc BaseFunc
Documentation for the abstract class IBaseFunctionMultiDim.
ImplFunc::BaseFunc BaseFunc
IBaseFunctionMultiDim::BaseFunc ImplBase
FunctorImpl< IBaseFunctionOneDim > Impl
Functor Handler class for gradient functions where both callable objects are provided for the functio...
unsigned int NDim() const
Retrieve the dimension of the function.