![]() |
ROOT
6.06/09
Reference Guide
|
#include "RooFit.h"#include <assert.h>#include <stdlib.h>#include "TClass.h"#include "Riostream.h"#include "RooAdaptiveGaussKronrodIntegrator1D.h"#include "RooArgSet.h"#include "RooRealVar.h"#include "RooNumber.h"#include "RooNumIntFactory.h"#include "RooIntegratorBinding.h"#include "TMath.h"#include "RooMsgService.h"
Include dependency graph for RooAdaptiveGaussKronrodIntegrator1D.cxx:Go to the source code of this file.
Macros | |
| #define | GSL_FN_EVAL(F, x) (*((F)->function))(x,(F)->params) |
| #define | GSL_SUCCESS 0 |
| #define | GSL_EDOM 1 /* input domain error, e.g sqrt(-1) */ |
| #define | GSL_ENOMEM 8 /* malloc failed */ |
| #define | GSL_EBADTOL 13 /* user specified an invalid tolerance */ |
| #define | GSL_ETOL 14 /* failed to reach the specified tolerance */ |
| #define | GSL_ERROR(a, b) oocoutE((TObject*)0,Integration) << "RooAdaptiveGaussKronrodIntegrator1D::integral() ERROR: " << a << endl ; return b ; |
| #define | GSL_DBL_MIN 2.2250738585072014e-308 |
| #define | GSL_DBL_MAX 1.7976931348623157e+308 |
| #define | GSL_DBL_EPSILON 2.2204460492503131e-16 |
| #define | GSL_EINVAL 2 |
| #define | GSL_EMAXITER 3 |
| #define | GSL_ESING 4 |
| #define | GSL_EFAILED 5 |
| #define | GSL_EDIVERGE 6 |
| #define | GSL_EROUND 7 |
| #define | GSL_ERROR_VAL(reason, gsl_errno, value) return value ; |
| #define | GSL_MAX(a, b) ((a) > (b) ? (a) : (b)) |
| #define | GSL_COERCE_DBL(x) (gsl_coerce_double(x)) |
Typedefs | |
| typedef struct gsl_function_struct | gsl_function |
| typedef void | gsl_integration_rule(const gsl_function *f, double a, double b, double *result, double *abserr, double *defabs, double *resabs) |
Enumerations | |
| enum | { GSL_INTEG_GAUSS15 = 1, GSL_INTEG_GAUSS21 = 2, GSL_INTEG_GAUSS31 = 3, GSL_INTEG_GAUSS41 = 4, GSL_INTEG_GAUSS51 = 5, GSL_INTEG_GAUSS61 = 6 } |
Functions | |
| ClassImp (RooAdaptiveGaussKronrodIntegrator1D) | |
| gsl_integration_workspace * | gsl_integration_workspace_alloc (const size_t n) |
| void | gsl_integration_workspace_free (gsl_integration_workspace *w) |
| int | gsl_integration_qag (const gsl_function *f, double a, double b, double epsabs, double epsrel, size_t limit, int key, gsl_integration_workspace *workspace, double *result, double *abserr) |
| int | gsl_integration_qags (const gsl_function *f, double a, double b, double epsabs, double epsrel, size_t limit, gsl_integration_workspace *workspace, double *result, double *abserr) |
| int | gsl_integration_qagi (gsl_function *f, double epsabs, double epsrel, size_t limit, gsl_integration_workspace *workspace, double *result, double *abserr) |
| int | gsl_integration_qagil (gsl_function *f, double b, double epsabs, double epsrel, size_t limit, gsl_integration_workspace *workspace, double *result, double *abserr) |
| int | gsl_integration_qagiu (gsl_function *f, double a, double epsabs, double epsrel, size_t limit, gsl_integration_workspace *workspace, double *result, double *abserr) |
| double | RooAdaptiveGaussKronrodIntegrator1D_GSL_GlueFunction (double x, void *data) |
| Glue function interacing to GSL code. More... | |
| double | GSL_MAX_DBL (double a, double b) |
| double | gsl_coerce_double (const double x) |
| void | gsl_integration_qk15 (const gsl_function *f, double a, double b, double *result, double *abserr, double *resabs, double *resasc) |
| void | gsl_integration_qk21 (const gsl_function *f, double a, double b, double *result, double *abserr, double *resabs, double *resasc) |
| void | gsl_integration_qk31 (const gsl_function *f, double a, double b, double *result, double *abserr, double *resabs, double *resasc) |
| void | gsl_integration_qk41 (const gsl_function *f, double a, double b, double *result, double *abserr, double *resabs, double *resasc) |
| void | gsl_integration_qk51 (const gsl_function *f, double a, double b, double *result, double *abserr, double *resabs, double *resasc) |
| void | gsl_integration_qk61 (const gsl_function *f, double a, double b, double *result, double *abserr, double *resabs, double *resasc) |
| void | gsl_integration_qcheb (gsl_function *f, double a, double b, double *cheb12, double *cheb24) |
| void | gsl_integration_qk (const int n, const double xgk[], const double wg[], const double wgk[], double fv1[], double fv2[], const gsl_function *f, double a, double b, double *result, double *abserr, double *resabs, double *resasc) |
| static void | initialise (gsl_integration_workspace *workspace, double a, double b) |
| static void | set_initial_result (gsl_integration_workspace *workspace, double result, double error) |
| static void | qpsrt (gsl_integration_workspace *workspace) |
| static void | update (gsl_integration_workspace *workspace, double a1, double b1, double area1, double error1, double a2, double b2, double area2, double error2) |
| static void | retrieve (const gsl_integration_workspace *workspace, double *a, double *b, double *r, double *e) |
| static double | sum_results (const gsl_integration_workspace *workspace) |
| static int | subinterval_too_small (double a1, double a2, double b2) |
| static int | qag (const gsl_function *f, const double a, const double b, const double epsabs, const double epsrel, const size_t limit, gsl_integration_workspace *workspace, double *result, double *abserr, gsl_integration_rule *q) |
| static double | rescale_error (double err, const double result_abs, const double result_asc) |
| static void | reset_nrmax (gsl_integration_workspace *workspace) |
| static int | increase_nrmax (gsl_integration_workspace *workspace) |
| static int | large_interval (gsl_integration_workspace *workspace) |
| static void | initialise_table (struct extrapolation_table *table) |
| static void | append_table (struct extrapolation_table *table, double y) |
| static void | qelg (struct extrapolation_table *table, double *result, double *abserr) |
| static int | test_positivity (double result, double resabs) |
| static int | qags (const gsl_function *f, const double a, const double b, const double epsabs, const double epsrel, const size_t limit, gsl_integration_workspace *workspace, double *result, double *abserr, gsl_integration_rule *q) |
| static double | i_transform (double t, void *params) |
| static double | il_transform (double t, void *params) |
| static double | iu_transform (double t, void *params) |
Variables | |
| static const double | xgkA [8] |
| static const double | wgA [4] |
| static const double | wgkA [8] |
| static const double | xgkB [11] |
| static const double | wgB [5] |
| static const double | wgkB [11] |
| static const double | xgkC [16] |
| static const double | wgC [8] |
| static const double | wgkC [16] |
| static const double | xgkD [21] |
| static const double | wgD [11] |
| static const double | wgkD [21] |
| static const double | xgkE [26] |
| static const double | wgE [13] |
| static const double | wgkE [26] |
| static const double | xgkF [31] |
| static const double | wgF [15] |
| static const double | wgkF [31] |
| #define GSL_COERCE_DBL | ( | x | ) | (gsl_coerce_double(x)) |
Definition at line 419 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by qag().
| #define GSL_DBL_EPSILON 2.2204460492503131e-16 |
Definition at line 392 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by qag(), qags(), qelg(), rescale_error(), subinterval_too_small(), and test_positivity().
| #define GSL_DBL_MAX 1.7976931348623157e+308 |
Definition at line 391 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
| #define GSL_DBL_MIN 2.2250738585072014e-308 |
Definition at line 390 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by rescale_error(), and subinterval_too_small().
| #define GSL_EBADTOL 13 /* user specified an invalid tolerance */ |
Definition at line 387 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
| #define GSL_EDIVERGE 6 |
Definition at line 398 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by qags().
| #define GSL_EDOM 1 /* input domain error, e.g sqrt(-1) */ |
Definition at line 385 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by gsl_integration_workspace_alloc().
| #define GSL_EFAILED 5 |
Definition at line 397 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
| #define GSL_EINVAL 2 |
Definition at line 394 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
| #define GSL_EMAXITER 3 |
Definition at line 395 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
| #define GSL_ENOMEM 8 /* malloc failed */ |
Definition at line 386 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by gsl_integration_workspace_alloc().
| #define GSL_EROUND 7 |
Definition at line 399 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
| #define GSL_ERROR | ( | a, | |
| b | |||
| ) | oocoutE((TObject*)0,Integration) << "RooAdaptiveGaussKronrodIntegrator1D::integral() ERROR: " << a << endl ; return b ; |
Definition at line 389 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Definition at line 401 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by gsl_integration_workspace_alloc().
| #define GSL_ESING 4 |
Definition at line 396 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
| #define GSL_ETOL 14 /* failed to reach the specified tolerance */ |
Definition at line 388 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Definition at line 74 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by gsl_integration_qk(), i_transform(), il_transform(), iu_transform(), and ROOT::Math::GSLFunctionWrapper::operator()().
Definition at line 403 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by GSL_MAX_DBL(), and gsl_poly_complex_solve_quartic().
| #define GSL_SUCCESS 0 |
Definition at line 384 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by ROOT::Math::GSLMultiFit::CovarMatrix(), ROOT::Math::GSLNLSMinimizer::CovMatrixStatus(), ROOT::Math::Polynomial::FindNumRoots(), ROOT::Math::GSLMinimizer::Minimize(), ROOT::Math::GSLMinimizer1D::Minimize(), ROOT::Math::GSLNLSMinimizer::Minimize(), qag(), qags(), ROOT::Math::GSLPlainIntegrationWorkspace::ReInit(), ROOT::Math::GSLRootFinder::SetFunction(), ROOT::Math::GSLRootFinderDeriv::SetFunction(), ROOT::Math::GSLMinimizer1D::SetFunction(), ROOT::Math::GSLRootFinder::Solve(), ROOT::Math::GSLRootFinderDeriv::Solve(), ROOT::Math::GSLMultiRootFinder::Solve(), and testGSLPermute().
| typedef struct gsl_function_struct gsl_function |
Definition at line 73 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
| typedef void gsl_integration_rule(const gsl_function *f, double a, double b, double *result, double *abserr, double *defabs, double *resabs) |
Definition at line 430 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
| anonymous enum |
| Enumerator | |
|---|---|
| GSL_INTEG_GAUSS15 | |
| GSL_INTEG_GAUSS21 | |
| GSL_INTEG_GAUSS31 | |
| GSL_INTEG_GAUSS41 | |
| GSL_INTEG_GAUSS51 | |
| GSL_INTEG_GAUSS61 | |
Definition at line 465 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Definition at line 1768 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by qags().
| ClassImp | ( | RooAdaptiveGaussKronrodIntegrator1D | ) |
Definition at line 413 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
| int gsl_integration_qag | ( | const gsl_function * | f, |
| double | a, | ||
| double | b, | ||
| double | epsabs, | ||
| double | epsrel, | ||
| size_t | limit, | ||
| int | key, | ||
| gsl_integration_workspace * | workspace, | ||
| double * | result, | ||
| double * | abserr | ||
| ) |
Definition at line 753 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by RooAdaptiveGaussKronrodIntegrator1D::integral(), and ROOT::Math::GSLIntegrator::Integral().
| int gsl_integration_qagi | ( | gsl_function * | f, |
| double | epsabs, | ||
| double | epsrel, | ||
| size_t | limit, | ||
| gsl_integration_workspace * | workspace, | ||
| double * | result, | ||
| double * | abserr | ||
| ) |
Definition at line 1998 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by RooAdaptiveGaussKronrodIntegrator1D::integral(), and ROOT::Math::GSLIntegrator::Integral().
| int gsl_integration_qagil | ( | gsl_function * | f, |
| double | b, | ||
| double | epsabs, | ||
| double | epsrel, | ||
| size_t | limit, | ||
| gsl_integration_workspace * | workspace, | ||
| double * | result, | ||
| double * | abserr | ||
| ) |
Definition at line 2041 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by RooAdaptiveGaussKronrodIntegrator1D::integral(), and ROOT::Math::GSLIntegrator::IntegralLow().
| int gsl_integration_qagiu | ( | gsl_function * | f, |
| double | a, | ||
| double | epsabs, | ||
| double | epsrel, | ||
| size_t | limit, | ||
| gsl_integration_workspace * | workspace, | ||
| double * | result, | ||
| double * | abserr | ||
| ) |
Definition at line 2090 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by RooAdaptiveGaussKronrodIntegrator1D::integral(), and ROOT::Math::GSLIntegrator::IntegralUp().
| int gsl_integration_qags | ( | const gsl_function * | f, |
| double | a, | ||
| double | b, | ||
| double | epsabs, | ||
| double | epsrel, | ||
| size_t | limit, | ||
| gsl_integration_workspace * | workspace, | ||
| double * | result, | ||
| double * | abserr | ||
| ) |
Definition at line 1975 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by RooAdaptiveGaussKronrodIntegrator1D::integral(), and ROOT::Math::GSLIntegrator::Integral().
| void gsl_integration_qcheb | ( | gsl_function * | f, |
| double | a, | ||
| double | b, | ||
| double * | cheb12, | ||
| double * | cheb24 | ||
| ) |
| void gsl_integration_qk | ( | const int | n, |
| const double | xgk[], | ||
| const double | wg[], | ||
| const double | wgk[], | ||
| double | fv1[], | ||
| double | fv2[], | ||
| const gsl_function * | f, | ||
| double | a, | ||
| double | b, | ||
| double * | result, | ||
| double * | abserr, | ||
| double * | resabs, | ||
| double * | resasc | ||
| ) |
Definition at line 1009 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by gsl_integration_qk15(), gsl_integration_qk21(), gsl_integration_qk31(), gsl_integration_qk41(), gsl_integration_qk51(), and gsl_integration_qk61().
| void gsl_integration_qk15 | ( | const gsl_function * | f, |
| double | a, | ||
| double | b, | ||
| double * | result, | ||
| double * | abserr, | ||
| double * | resabs, | ||
| double * | resasc | ||
| ) |
Definition at line 1126 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by gsl_integration_qag(), gsl_integration_qagi(), gsl_integration_qagil(), and gsl_integration_qagiu().
| void gsl_integration_qk21 | ( | const gsl_function * | f, |
| double | a, | ||
| double | b, | ||
| double * | result, | ||
| double * | abserr, | ||
| double * | resabs, | ||
| double * | resasc | ||
| ) |
Definition at line 1183 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by gsl_integration_qag(), and gsl_integration_qags().
| void gsl_integration_qk31 | ( | const gsl_function * | f, |
| double | a, | ||
| double | b, | ||
| double * | result, | ||
| double * | abserr, | ||
| double * | resabs, | ||
| double * | resasc | ||
| ) |
Definition at line 1252 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by gsl_integration_qag().
| void gsl_integration_qk41 | ( | const gsl_function * | f, |
| double | a, | ||
| double | b, | ||
| double * | result, | ||
| double * | abserr, | ||
| double * | resabs, | ||
| double * | resasc | ||
| ) |
Definition at line 1333 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by gsl_integration_qag().
| void gsl_integration_qk51 | ( | const gsl_function * | f, |
| double | a, | ||
| double | b, | ||
| double * | result, | ||
| double * | abserr, | ||
| double * | resabs, | ||
| double * | resasc | ||
| ) |
Definition at line 1429 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by gsl_integration_qag().
| void gsl_integration_qk61 | ( | const gsl_function * | f, |
| double | a, | ||
| double | b, | ||
| double * | result, | ||
| double * | abserr, | ||
| double * | resabs, | ||
| double * | resasc | ||
| ) |
Definition at line 1535 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by gsl_integration_qag().
| gsl_integration_workspace * gsl_integration_workspace_alloc | ( | const size_t | n | ) |
Definition at line 1545 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by ROOT::Math::GSLIntegrationWorkspace::GSLIntegrationWorkspace(), and RooAdaptiveGaussKronrodIntegrator1D::initialize().
| void gsl_integration_workspace_free | ( | gsl_integration_workspace * | w | ) |
Definition at line 1648 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by ROOT::Math::GSLIntegrationWorkspace::~GSLIntegrationWorkspace(), and RooAdaptiveGaussKronrodIntegrator1D::~RooAdaptiveGaussKronrodIntegrator1D().
Definition at line 405 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Definition at line 2020 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by gsl_integration_qagi().
Definition at line 2068 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by gsl_integration_qagil().
|
static |
Definition at line 1682 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by qags().
Definition at line 498 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
|
static |
Definition at line 1753 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by qags().
Definition at line 2117 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by gsl_integration_qagiu().
|
static |
Definition at line 1721 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by qags().
|
static |
Definition at line 803 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by gsl_integration_qag().
|
static |
Definition at line 2130 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by gsl_integration_qagi(), gsl_integration_qagil(), gsl_integration_qagiu(), and gsl_integration_qags().
Definition at line 1785 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by qags().
|
inlinestatic |
Definition at line 532 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by update().
Definition at line 977 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by gsl_integration_qk().
|
inlinestatic |
Definition at line 1666 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by qags().
|
inlinestatic |
Definition at line 691 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by TProofProgressLog::DoLog(), TProof::Finalize(), TXProofMgr::GetMssUrl(), TProofMgrLite::GetSessionLogs(), TXProofMgr::GetSessionLogs(), qag(), and qags().
Glue function interacing to GSL code.
Definition at line 307 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
|
inlinestatic |
Definition at line 519 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Definition at line 730 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
|
inlinestatic |
Definition at line 710 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Definition at line 1962 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by qags().
|
inlinestatic |
Definition at line 636 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by TDocOutput::AddLink(), ClassImp(), TNetFile::Create(), TLinearFitter::Eval(), TListOfFunctionTemplates::Get(), TListOfDataMembers::Get(), TEveManager::LoadVizDB(), MainWindow::mouseMoveEvent(), TAlienFile::Open(), TXNetFile::Open(), qag(), qags(), Rcpp::RCPP_API_CLASS(), MainWindow::resizeEvent(), MainWindow::scalarImage(), ROOT::Internal::TBranchProxyDirector::SetTree(), TFile::TFile(), TMapFile::TMapFile(), TMemFile::TMemFile(), TSQLFile::TSQLFile(), TXMLFile::TXMLFile(), TListOfDataMembers::Update(), and MainWindow::vcImage().
|
static |
Definition at line 1105 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by gsl_integration_qk15().
|
static |
Definition at line 1157 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by gsl_integration_qk21().
|
static |
Definition at line 1219 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by gsl_integration_qk31().
|
static |
Definition at line 1293 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by gsl_integration_qk41().
|
static |
Definition at line 1379 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by gsl_integration_qk51().
|
static |
Definition at line 1480 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by gsl_integration_qk61().
|
static |
Definition at line 1113 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by gsl_integration_qk15().
|
static |
Definition at line 1166 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by gsl_integration_qk21().
|
static |
Definition at line 1231 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by gsl_integration_qk31().
|
static |
Definition at line 1307 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by gsl_integration_qk41().
|
static |
Definition at line 1396 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by gsl_integration_qk51().
|
static |
Definition at line 1499 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by gsl_integration_qk61().
|
static |
Definition at line 1090 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by gsl_integration_qk15().
|
static |
Definition at line 1139 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by gsl_integration_qk21().
|
static |
Definition at line 1196 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by gsl_integration_qk31().
|
static |
Definition at line 1265 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by gsl_integration_qk41().
|
static |
Definition at line 1346 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by gsl_integration_qk51().
|
static |
Definition at line 1442 of file RooAdaptiveGaussKronrodIntegrator1D.cxx.
Referenced by gsl_integration_qk61().