|
| GSLIntegrator (const char *type, int rule, double absTol, double relTol, size_t size) |
| constructor of GSL Integrator. More...
|
|
| GSLIntegrator (const Integration::Type type, const Integration::GKRule rule, double absTol=1.E-9, double relTol=1E-6, size_t size=1000) |
| generic constructor for GSL Integrator More...
|
|
| GSLIntegrator (const Integration::Type type, double absTol=1.E-9, double relTol=1E-6, size_t size=1000) |
| constructor of GSL Integrator. More...
|
|
| GSLIntegrator (double absTol=1.E-9, double relTol=1E-6, size_t size=1000) |
| Default constructor of GSL Integrator for Adaptive Singular integration. More...
|
|
virtual | ~GSLIntegrator () |
|
double | Error () const |
| return the estimate of the absolute Error of the last Integral calculation More...
|
|
IntegrationOneDim::Type | GetType () const |
| get type name More...
|
|
const char * | GetTypeName () const |
| return the name More...
|
|
double | Integral () |
| evaluate the Integral over the infinite interval (-inf,+inf) using the function previously set with GSLIntegrator::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 GSLIntegrator::SetFunction method. More...
|
|
double | Integral (double a, double b) |
| evaluate the Integral over the defined interval (a,b) using the function previously set with GSLIntegrator::SetFunction method More...
|
|
double | Integral (GSLFuncPointer f, void *p) |
| evaluate the Integral of a function f over the infinite interval (-inf,+inf) passing a free function pointer More...
|
|
double | Integral (GSLFuncPointer f, void *p, const std::vector< double > &pts) |
| evaluate the Integral of a function f with knows singular points over the over a defined interval passing a free function pointer More...
|
|
double | Integral (GSLFuncPointer f, void *p, double a, double b) |
| signature for function pointers used by GSL 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 previously defined 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 GSLIntegrator::SetFunction method. More...
|
|
double | IntegralLow (GSLFuncPointer f, void *p, double b) |
| evaluate the Integral of a function f over the over the semi-infinite interval (-inf,b) passing a free function pointer 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 GSLIntegrator::SetFunction method. More...
|
|
double | IntegralUp (GSLFuncPointer f, void *p, double a) |
| evaluate the Integral of a function f over the semi-infinite interval (a,+inf) passing a free function pointer More...
|
|
int | NEval () const |
| return number of function evaluations in calculating the integral More...
|
|
virtual ROOT::Math::IntegratorOneDimOptions | Options () const |
| get the option used for the integration 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) |
| method to set the a generic integration function More...
|
|
void | SetFunction (GSLFuncPointer f, void *p=0) |
| Set function from a GSL pointer function type. More...
|
|
void | SetIntegrationRule (Integration::GKRule) |
| set the integration rule (Gauss-Kronrod rule). More...
|
|
virtual 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...
|
|
virtual | ~VirtualIntegratorOneDim () |
| destructor: no operation More...
|
|
virtual double | Integral ()=0 |
| evaluate un-defined integral (between -inf, + inf) More...
|
|
virtual double | Integral (const std::vector< double > &pts)=0 |
| evaluate integral with singular points More...
|
|
virtual double | Integral (double a, double b)=0 |
| evaluate integral More...
|
|
virtual double | IntegralCauchy (double a, double b, double c)=0 |
| evaluate Cauchy integral More...
|
|
virtual double | IntegralLow (double b)=0 |
| evaluate integral over the (-inf, b) More...
|
|
virtual double | IntegralUp (double a)=0 |
| evaluate integral over the (a, +inf) More...
|
|
virtual ROOT::Math::IntegratorOneDimOptions | Options () const =0 |
| get the option used for the integration must be implemented by derived class More...
|
|
virtual void | SetFunction (const IGenFunction &)=0 |
| set integration function More...
|
|
virtual void | SetOptions (const ROOT::Math::IntegratorOneDimOptions &opt) |
| set the options (should be re-implemented by derived classes -if more options than tolerance exist More...
|
|
virtual ROOT::Math::IntegrationOneDim::Type | Type () const |
|
virtual | ~VirtualIntegrator () |
|
virtual double | Error () const =0 |
| return the estimate of the absolute Error of the last Integral calculation More...
|
|
virtual int | NEval () const |
| return number of function evaluations in calculating the integral (if integrator do not implement this function returns -1) More...
|
|
virtual double | Result () const =0 |
| return the Result of the last Integral calculation More...
|
|
virtual void | SetAbsTolerance (double)=0 |
| set the desired absolute Error More...
|
|
virtual void | SetRelTolerance (double)=0 |
| set the desired relative Error More...
|
|
virtual int | Status () const =0 |
| return the Error Status of the last Integral calculation More...
|
|