16#ifndef ROO_BIN_INTEGRATOR
17#define ROO_BIN_INTEGRATOR
35 double integral(
const double *yvec=
nullptr)
override ;
48 mutable std::vector<double>
_xmin;
49 mutable std::vector<double>
_xmax;
50 std::vector<std::vector<double>>
_binb;
55 double*
xvec(
double xx) {
_x[0] = xx ;
return _x.data(); }
56 double*
xvec(
double xx,
double yy) {
_x[0] = xx ;
_x[1] = yy ;
return _x.data(); }
57 double*
xvec(
double xx,
double yy,
double zz) {
_x[0] = xx ;
_x[1] = yy ;
_x[2] = zz ;
return _x.data(); }
59 std::vector<double>
_x ;
#define ClassDefOverride(name, id)
Abstract interface for evaluating a real-valued function of one real variable and performing numerica...
Abstract interface for integrators of real-valued functions that implement the RooAbsFunc interface.
virtual bool setLimits(double *, double *)
Computes the integral over a binned distribution by summing the bin contents of all bins.
double * xvec(double xx, double yy)
std::vector< double > _xmax
! Upper integration bound
static void registerIntegrator(RooNumIntFactory &fact)
Register RooBinIntegrator, is parameters and capabilities with RooNumIntFactory.
RooBinIntegrator(const RooBinIntegrator &)
double * xvec(double xx, double yy, double zz)
Int_t _numBins
! Size of integration range
bool setLimits(double *xmin, double *xmax) override
Change our integration limits.
std::vector< std::vector< double > > _binb
! list of bin boundaries
std::vector< double > _xmin
! Lower integration bound
std::vector< double > _x
! do not persist
bool _useIntegrandLimits
If true limits of function binding are ued.
bool checkLimits() const override
Check that our integration range is finite and otherwise return false.
double integral(const double *yvec=nullptr) override
Calculate numeric integral at given set of function binding parameters.
~RooBinIntegrator() override
Destructor.
bool setUseIntegrandLimits(bool flag) override
Interface function that allows to defer limit definition to integrand definition.
RooNumIntConfig holds the configuration parameters of the various numeric integrators used by RooReal...
RooNumIntFactory is a factory to instantiate numeric integrators from a given function binding and a ...