|
| IntegratorOneDim (const IGenFunction &f, IntegrationOneDim::Type type=IntegrationOneDim::kDEFAULT, double absTol=-1, double relTol=-1, unsigned int size=0, int rule=0) |
| Constructor of one dimensional Integrator passing a function interface. More...
|
|
template<class Function > |
| IntegratorOneDim (Function &f, IntegrationOneDim::Type type=IntegrationOneDim::kDEFAULT, double absTol=-1, double relTol=-1, unsigned int size=0, int rule=0) |
| Template Constructor of one dimensional Integrator passing a generic function object. More...
|
|
| IntegratorOneDim (IntegrationOneDim::Type type=IntegrationOneDim::kDEFAULT, double absTol=-1, double relTol=-1, unsigned int size=0, unsigned int rule=0) |
| Constructor of one dimensional Integrator, default type is adaptive. More...
|
|
virtual | ~IntegratorOneDim () |
| destructor (will delete contained pointers) More...
|
|
double | Error () const |
| return the estimate of the absolute Error of the last Integral calculation More...
|
|
VirtualIntegratorOneDim * | GetIntegrator () |
| return a pointer to integrator object More...
|
|
double | Integral () |
| evaluate the Integral over the infinite interval (-inf,+inf) using the function previously set with Integrator::SetFunction method. More...
|
|
double | Integral (const IGenFunction &f) |
| evaluate the Integral of a function f over the infinite interval (-inf,+inf) More...
|
|
double | Integral (const IGenFunction &f, const std::vector< double > &pts) |
| evaluate the Integral of a function f with known singular points over the defined Integral (a,b) More...
|
|
double | Integral (const IGenFunction &f, double a, double b) |
| evaluate the Integral of a function f over the defined interval (a,b) More...
|
|
double | Integral (const std::vector< double > &pts) |
| evaluate the Integral over the defined interval (a,b) using the function previously set with Integrator::SetFunction method. More...
|
|
double | Integral (double a, double b) |
| evaluate the Integral over the defined interval (a,b) using the function previously set with Integrator::SetFunction method More...
|
|
template<class Function > |
double | Integral (Function &f, const std::vector< double > &pts) |
| evaluate the Integral of a function f with known singular points over the defined Integral (a,b) More...
|
|
template<class Function > |
double | Integral (Function &f, double a, double b) |
| evaluate the Integral of a function f over the defined interval (a,b) More...
|
|
double | IntegralCauchy (const IGenFunction &f, double a, double b, double c) |
| evaluate the Cauchy principal value of the integral of a function f over the defined interval (a,b) with a singularity at c More...
|
|
double | IntegralCauchy (double a, double b, double c) |
| evaluate the Cauchy principal value of the integral of a function f over the defined interval (a,b) with a singularity at c More...
|
|
template<class Function > |
double | IntegralCauchy (Function &f, double a, double b, double c) |
| evaluate the Cauchy principal value of the integral of a function f over the defined interval (a,b) with a singularity at c More...
|
|
double | IntegralLow (const IGenFunction &f, double b) |
| evaluate the Integral of a function f over the over the semi-infinite interval (-inf,b) More...
|
|
double | IntegralLow (double b) |
| evaluate the Integral of a function f over the over the semi-infinite interval (-inf,b) using the function previously set with Integrator::SetFunction method. More...
|
|
double | IntegralUp (const IGenFunction &f, double a) |
| evaluate the Integral of a function f over the semi-infinite interval (a,+inf) More...
|
|
double | IntegralUp (double a) |
| evaluate the Integral of a function f over the semi-infinite interval (a,+inf) using the function previously set with Integrator::SetFunction method. More...
|
|
std::string | Name () const |
| return name of integrator More...
|
|
int | NEval () const |
| return number of function evaluations in calculating the integral (if integrator do not implement this function returns -1) More...
|
|
double | operator() (double x) |
| define operator() for IntegralLow More...
|
|
ROOT::Math::IntegratorOneDimOptions | Options () const |
| retrieve the options More...
|
|
double | Result () const |
| return the Result of the last Integral calculation More...
|
|
void | SetAbsTolerance (double absTolerance) |
| set the desired absolute Error More...
|
|
void | SetFunction (const IGenFunction &f, bool copy=false) |
| set one dimensional function for 1D integration More...
|
|
void | SetFunction (const IMultiGenFunction &f, unsigned int icoord, const double *x) |
| Set integration function from a multi-dim function type. More...
|
|
template<class Function > |
void | SetFunction (Function &f) |
| method to set the a generic integration function More...
|
|
void | SetOptions (const ROOT::Math::IntegratorOneDimOptions &opt) |
| set the options More...
|
|
void | SetRelTolerance (double relTolerance) |
| set the desired relative Error More...
|
|
int | Status () const |
| return the Error Status of the last Integral calculation More...
|
|