#include <TRadSpline.h>
Definition at line 78 of file TRadSpline.h.
◆ TRadSplinePoly5() [1/2]
| TRadSplinePoly5::TRadSplinePoly5 |
( |
| ) |
|
|
inline |
Definition at line 86 of file TRadSpline.h.
86: fB( 0 ), fC( 0 ), fD( 0 ), fE( 0 ), fF( 0 ) {}
◆ TRadSplinePoly5() [2/2]
| TRadSplinePoly5::TRadSplinePoly5 |
( |
double | x, |
|
|
double | y, |
|
|
double | b, |
|
|
double | c, |
|
|
double | d, |
|
|
double | e, |
|
|
double | f ) |
|
inline |
Definition at line 87 of file TRadSpline.h.
TFile f("ana_bhabha660a_dqa_mcPat_zy_old.root")
◆ B()
| double & TRadSplinePoly5::B |
( |
| ) |
|
|
inline |
◆ C()
| double & TRadSplinePoly5::C |
( |
| ) |
|
|
inline |
◆ D()
| double & TRadSplinePoly5::D |
( |
| ) |
|
|
inline |
◆ Derivative()
| double TRadSplinePoly5::Derivative |
( |
double | x | ) |
const |
|
inline |
Definition at line 98 of file TRadSpline.h.
98 {
100 return ( fB + 2 * fC * dx + 3 * fD * dx * dx + 4 * fE * dx * dx * dx +
101 5 * fF * dx * dx * dx * dx );
102 }
◆ E()
| double & TRadSplinePoly5::E |
( |
| ) |
|
|
inline |
◆ Eval()
| double TRadSplinePoly5::Eval |
( |
double | x | ) |
const |
|
inlinevirtual |
Reimplemented from TRadSplinePoly.
Definition at line 94 of file TRadSpline.h.
94 {
96 return (
fY + dx * ( fB + dx * ( fC + dx * ( fD + dx * ( fE + dx * fF ) ) ) ) );
97 }
◆ F()
| double & TRadSplinePoly5::F |
( |
| ) |
|
|
inline |
The documentation for this class was generated from the following file: