Implements the Gauss-Kronrod integration algorithm.
An adaptive Gaussian quadrature method for numerical integration in which error is estimated based on evaluation at special points known as the "Kronrod points". By suitably picking these points, abscissas from previous iterations can be reused as part of the new set of points, whereas usual Gaussian quadrature would require recomputation of all abscissas at each iteration.
This class automatically handles (-inf,+inf) integrals by dividing the integration in three regions (-inf,-1), (-1,1), (1,inf) and calculating the 1st and 3rd term using a \( x \rightarrow 1/x \) coordinate transformation.
This class embeds the adaptive Gauss-Kronrod integrator from the GNU Scientific Library version 1.5 and applies a chosen rule ( 10-, 21-, 31-, 41, 51- or 61-point). The integration domain is subdivided and recursively integrated until the required precision is reached.
For integrands with integrable singularities the Wynn epsilon rule can be selected to speed up the convergence of these integrals.
Definition at line 24 of file RooAdaptiveGaussKronrodIntegrator1D.h.
Public Member Functions | |
| RooAdaptiveGaussKronrodIntegrator1D (const RooAbsFunc &function, const RooNumIntConfig &config) | |
| Constructor taking a function binding and a configuration object. | |
| RooAdaptiveGaussKronrodIntegrator1D (const RooAbsFunc &function, double xmin, double xmax, const RooNumIntConfig &config) | |
| Constructor taking a function binding, an integration range and a configuration object. | |
| ~RooAdaptiveGaussKronrodIntegrator1D () override | |
| Destructor. | |
| double | calculate (const double *yvec=nullptr) |
| Calculate integral value with given array of parameter values. | |
| bool | checkLimits () const override |
| Check that our integration range is finite and otherwise return false. | |
| double | integral (const double *yvec=nullptr) override |
| Calculate and return integral at at given parameter values. | |
| const RooAbsFunc * | integrand () const |
| Return integrand function binding. | |
| double | integrand (const double x[]) const |
| Return value of integrand at given observable values. | |
| bool | isValid () const |
| Is integrator in valid state. | |
| bool | printEvalCounter () const |
| bool | setLimits (double *xmin, double *xmax) override |
| Change our integration limits. | |
| virtual bool | setLimits (double xmin, double xmax) |
| Interface to set limits on integration. | |
| void | setPrintEvalCounter (bool value) |
| bool | setUseIntegrandLimits (bool flag) override |
| Interface function that allows to defer limit definition to integrand definition. | |
Protected Types | |
| enum | DomainType { Closed , OpenLo , OpenHi , Open } |
Protected Member Functions | |
| bool | initialize () |
| Initialize integrator allocate buffers and setup GSL workspace. | |
| double * | xvec (double &xx) |
Static Protected Member Functions | |
| static void | registerIntegrator (RooNumIntFactory &fact) |
| Register this class with RooNumIntConfig as a possible choice of numeric integrator for one-dimensional integrals over finite and infinite domains. | |
Protected Attributes | |
| DomainType | _domainType |
| double | _epsAbs |
| double | _epsRel |
| const RooAbsFunc * | _function = nullptr |
| Pointer to function binding of integrand. | |
| Int_t | _maxSeg |
| Int_t | _methodKey |
| bool | _printEvalCounter = false |
| If true print number of function evaluation required for integration. | |
| bool | _useIntegrandLimits |
| bool | _valid = false |
| Is integrator in valid state? | |
| void * | _workspace = nullptr |
| std::vector< double > | _x |
| ! Current coordinate | |
| double | _xmax |
| ! Upper integration bound | |
| double | _xmin |
| ! Lower integration bound | |
Friends | |
| double | RooAdaptiveGaussKronrodIntegrator1D_GSL_GlueFunction (double x, void *data) |
| Glue function interacing to GSL code. | |
| class | RooNumIntFactory |
#include </home/stephan/code/root-2/roofit/roofitmore/src/RooAdaptiveGaussKronrodIntegrator1D.h>
|
protected |
| Enumerator | |
|---|---|
| Closed | |
| OpenLo | |
| OpenHi | |
| Open | |
Definition at line 48 of file RooAdaptiveGaussKronrodIntegrator1D.h.
| RooAdaptiveGaussKronrodIntegrator1D::RooAdaptiveGaussKronrodIntegrator1D | ( | const RooAbsFunc & | function, |
| const RooNumIntConfig & | config ) |
Constructor taking a function binding and a configuration object.
Definition at line 186 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
| RooAdaptiveGaussKronrodIntegrator1D::RooAdaptiveGaussKronrodIntegrator1D | ( | const RooAbsFunc & | function, |
| double | xmin, | ||
| double | xmax, | ||
| const RooNumIntConfig & | config ) |
Constructor taking a function binding, an integration range and a configuration object.
Definition at line 203 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
|
override |
Destructor.
Definition at line 238 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Calculate integral value with given array of parameter values.
Definition at line 49 of file RooAbsIntegrator.cxx.
|
overridevirtual |
Check that our integration range is finite and otherwise return false.
Update the limits from the integrand if requested.
Reimplemented from RooAbsIntegrator.
Definition at line 270 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
|
protected |
Initialize integrator allocate buffers and setup GSL workspace.
Definition at line 224 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
|
overridevirtual |
Calculate and return integral at at given parameter values.
Implements RooAbsIntegrator.
Definition at line 312 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
|
inlineinherited |
Return integrand function binding.
Definition at line 39 of file RooAbsIntegrator.h.
Return value of integrand at given observable values.
Definition at line 34 of file RooAbsIntegrator.h.
|
inlineinherited |
Is integrator in valid state.
Definition at line 29 of file RooAbsIntegrator.h.
|
inlineinherited |
Definition at line 51 of file RooAbsIntegrator.h.
|
staticprotected |
Register this class with RooNumIntConfig as a possible choice of numeric integrator for one-dimensional integrals over finite and infinite domains.
Definition at line 156 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
|
overridevirtual |
Change our integration limits.
Return true if the new limits are ok, or otherwise false. Always returns false and does nothing if this object was constructed to always use our integrand's limits.
Reimplemented from RooAbsIntegrator.
Definition at line 252 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
|
virtual |
Interface to set limits on integration.
Reimplemented from RooAbsIntegrator.
Definition at line 55 of file RooAbsIntegrator.cxx.
|
inlineinherited |
Definition at line 52 of file RooAbsIntegrator.h.
Interface function that allows to defer limit definition to integrand definition.
Reimplemented from RooAbsIntegrator.
Definition at line 37 of file RooAdaptiveGaussKronrodIntegrator1D.h.
Definition at line 57 of file RooAdaptiveGaussKronrodIntegrator1D.h.
Glue function interacing to GSL code.
Definition at line 301 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
|
friend |
Definition at line 45 of file RooAdaptiveGaussKronrodIntegrator1D.h.
|
mutableprotected |
Definition at line 49 of file RooAdaptiveGaussKronrodIntegrator1D.h.
|
protected |
Definition at line 65 of file RooAdaptiveGaussKronrodIntegrator1D.h.
|
protected |
Definition at line 66 of file RooAdaptiveGaussKronrodIntegrator1D.h.
|
protectedinherited |
Pointer to function binding of integrand.
Definition at line 60 of file RooAbsIntegrator.h.
|
protected |
Definition at line 68 of file RooAdaptiveGaussKronrodIntegrator1D.h.
|
protected |
Definition at line 67 of file RooAdaptiveGaussKronrodIntegrator1D.h.
|
protectedinherited |
If true print number of function evaluation required for integration.
Definition at line 62 of file RooAbsIntegrator.h.
|
protected |
Definition at line 55 of file RooAdaptiveGaussKronrodIntegrator1D.h.
|
protectedinherited |
Is integrator in valid state?
Definition at line 61 of file RooAbsIntegrator.h.
|
protected |
Definition at line 69 of file RooAdaptiveGaussKronrodIntegrator1D.h.
|
protected |
! Current coordinate
Definition at line 63 of file RooAdaptiveGaussKronrodIntegrator1D.h.
|
mutableprotected |
! Upper integration bound
Definition at line 72 of file RooAdaptiveGaussKronrodIntegrator1D.h.
|
mutableprotected |
! Lower integration bound
Definition at line 71 of file RooAdaptiveGaussKronrodIntegrator1D.h.