41 _function(&function), _valid(function.isValid()),
42 _tol(2.2204460492503131e-16)
45 oocoutE(
nullptr,Eval) <<
"RooBrentRootFinder:: cannot find roots for function of dimension "
46 <<
_function->getDimension() << std::endl;
65 double fa= (*_function)(&
a) -
value;
66 double fb= (*_function)(&
b) -
value;
68 oocxcoutD((
TObject*)
nullptr,Eval) <<
"RooBrentRootFinder::findRoot(" <<
_function->getName() <<
"): initial interval does not bracket a root: ("
69 <<
a <<
"," <<
b <<
"), value = " <<
value <<
" f[xlo] = " << fa <<
" f[xhi] = " << fb << std::endl;
80 if ((fb < 0 &&
fc < 0) || (fb > 0 &&
fc > 0)) {
89 if (std::abs(
fc) < std::abs(fb)) {
99 double tol = 0.5 *
_tol * std::abs(
b);
100 double m = 0.5 * (
c -
b);
103 if (fb == 0 || std::abs(
m) <=
tol) {
110 if (std::abs(
e) <
tol || std::abs(fa) <= std::abs(fb)) {
129 p = s * (2 *
m *
q * (
q -
r) - (
b -
a) * (
r - 1));
130 q = (
q - 1) * (
r - 1) * (s - 1);
141 double min2= std::abs(
e *
q);
157 if (std::abs(
d) >
tol) {
163 fb= (*_function)(&
b) -
value;
167 oocoutE(
nullptr,Eval) <<
"RooBrentRootFinder::findRoot(" <<
_function->getName() <<
"): maximum iterations exceeded." << std::endl;
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
winID h TVirtualViewer3D TVirtualGLPainter p
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t r
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t result
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void value
Abstract interface for evaluating a real-valued function of one real variable and performing numerica...
const RooAbsFunc * _function
Pointer to input function.
bool findRoot(double &result, double xlo, double xhi, double value=0) const
Do the root finding using the Brent-Decker method.
static constexpr int MaxIterations
RooBrentRootFinder(const RooAbsFunc &function)
Constructor taking function binding as input.
bool _valid
True if current state is valid.
Mother of all ROOT objects.