55  RooRealVar maxEval2D(
"maxEval2D",
"Max number of function evaluations for 2-dim integrals",100000) ;
 
   56  RooRealVar maxEval3D(
"maxEval3D",
"Max number of function evaluations for 3-dim integrals",1000000) ;
 
   57  RooRealVar maxEvalND(
"maxEvalND",
"Max number of function evaluations for >3-dim integrals",10000000) ;
 
   58  RooRealVar maxWarn(
"maxWarn",
"Max number of warnings on precision not reached that is printed",5) ;
 
   95  case 1: 
throw string(
Form(
"RooAdaptiveIntegratorND::ctor ERROR dimension of function must be at least 2")) ;
 
  136    coutW(NumIntegration) << 
"RooAdaptiveIntegratorND::dtor(" << 
_intName 
  137           << 
") WARNING: Number of suppressed warningings about integral evaluations where target precision was not reached is " << 
_nError-
_nWarn << endl ;
 
  174    oocoutE(
nullptr,Integration) << 
"RooAdaptiveIntegratorND::setLimits: cannot override integrand's limits" << endl;
 
  197      coutW(NumIntegration) << 
"RooAdaptiveIntegratorND::integral(" << 
integrand()->
getName() << 
") WARNING: target rel. precision not reached due to nEval limit of " 
  202             << 
") Further warnings on target precision are suppressed conform specification in integrator specification" << endl ;
 
char * Form(const char *fmt,...)
Formats a string in a circular formatting buffer.
 
Class for adaptive quadrature integration in multi-dimensions using rectangular regions.
 
int Status() const override
return status of integration
 
double Integral(const double *xmin, const double *xmax) override
evaluate the integral with the previously given function between xmin[] and xmax[]
 
void SetFunction(const IMultiGenFunction &f) override
set the integration function (must implement multi-dim function interface: IBaseFunctionMultiDim)
 
double RelError() const
return relative error
 
double getRealValue(const char *name, double defVal=0.0, bool verbose=false) const
Get value of a RooAbsReal stored in set with given name.
 
Abstract interface for evaluating a real-valued function of one real variable and performing numerica...
 
virtual double getMaxLimit(UInt_t dimension) const =0
 
virtual double getMinLimit(UInt_t dimension) const =0
 
virtual const char * getName() const
Name of function binding.
 
RooAbsIntegrator is the abstract interface for integrators of real-valued functions that implement th...
 
const RooAbsFunc * integrand() const
Return integrand function binding.
 
RooAdaptiveIntegratorND implements an adaptive one-dimensional numerical integration algorithm.
 
Int_t _nmax
Max number of divisions.
 
bool checkLimits() const override
Check that our integration range is finite and otherwise return false.
 
RooAdaptiveIntegratorND()
Default ctor.
 
bool _useIntegrandLimits
If true limits of function binding are used.
 
double integral(const double *yvec=nullptr) override
Evaluate integral at given function binding parameter values.
 
RooAbsIntegrator * clone(const RooAbsFunc &function, const RooNumIntConfig &config) const override
Virtual constructor with given function and configuration. Needed by RooNumIntFactory.
 
bool setLimits(double *xmin, double *xmax) override
Change our integration limits.
 
std::vector< double > _xmin
Lower bound in each dimension.
 
double _epsRel
Relative precision.
 
double _epsAbs
Absolute precision.
 
TString _intName
Integrand name.
 
~RooAdaptiveIntegratorND() override
Destructor.
 
static void registerIntegrator(RooNumIntFactory &fact)
Register RooAdaptiveIntegratorND, its parameters, dependencies and capabilities with RooNumIntFactory...
 
RooMultiGenFunction * _func
! ROOT::Math multi-parameter function binding
 
Int_t _nError
Number of error occurrences.
 
ROOT::Math::AdaptiveIntegratorMultiDim * _integrator
 
std::vector< double > _xmax
Upper bound in each dimension.
 
Int_t _nWarn
Max number of warnings to be issued ;.
 
RooArgSet is a container object that can hold multiple RooAbsArg objects.
 
Lightweight interface adaptor that exports a RooAbsReal as a ROOT::Math::IMultiGenFunction.
 
unsigned int NDim() const override
Retrieve the dimension of the function.
 
RooNumIntConfig holds the configuration parameters of the various numeric integrators used by RooReal...
 
const RooArgSet & getConfigSection(const char *name) const
Retrieve configuration information specific to integrator with given name.
 
RooNumIntFactory is a factory to instantiate numeric integrators from a given function binding and a ...
 
bool storeProtoIntegrator(RooAbsIntegrator *proto, const RooArgSet &defConfig, const char *depName="")
Method accepting registration of a prototype numeric integrator along with a RooArgSet of its default...
 
RooRealVar represents a variable that can be changed from the outside.