73 TAttLine::operator=(
sp);
74 TAttFill::operator=(
sp);
75 TAttMarker::operator=(
sp);
169 for (i=0;i<=
fNpx;i++) {
181 for (i=1;i<=
fNpx;i++) {
199 char *o = (
char *) opt.
Data();
204 if(o[i]==
'p') graph=
kTRUE ;
else o[
j++]=o[i];
233 if (
R__b.IsReading()) {
362 fValBeg(
valbeg), fValEnd(
valend), fBegCond(0), fEndCond(0)
372 for (
Int_t i=0; i<
n; ++i) {
392 fBegCond(0), fEndCond(0)
402 for (
Int_t i=0; i<
n; ++i) {
421 fBegCond(0), fEndCond(0)
431 for (
Int_t i=0; i<
n; ++i) {
447 const TF1 *func,
Int_t n,
const char *opt,
451 fBegCond(0), fEndCond(0)
464 for (
Int_t i=0; i<
n; ++i) {
480 const TGraph *
g,
const char *opt,
484 fBegCond(0), fEndCond(0)
496 g->GetPoint(i,
xx,
yy);
514 fBegCond(0), fEndCond(0)
525 fPoly[i].
X()=
h->GetXaxis()->GetBinCenter(i+1);
526 fPoly[i].
Y()=
h->GetBinContent(i+1);
539 :
TSpline(
sp3), fValBeg(
sp3.fValBeg), fValEnd(
sp3.fValEnd), fBegCond(
sp3.fBegCond), fEndCond(
sp3.fEndCond)
576 const char *b1 =
strstr(opt,
"b1");
578 const char *b2 =
strstr(opt,
"b2");
581 Error(
"SetCond",
"Cannot specify first and second derivative at first point");
583 Error(
"SetCond",
"Cannot specify first and second derivative at last point");
623 printf(
"1 TEST OF TSpline3 WITH NONEQUIDISTANT KNOTS\n");
640 for (i = 0; i <
n; ++i)
641 spline->GetCoeff(i,
hx,
a[i],
a[i+200],
a[i+400],
a[i+600]);
643 for (i = 0; i <
mm1; ++i)
diff[i] =
com[i] = 0;
644 for (k = 0; k <
n; ++k) {
645 for (i = 0; i < mm; ++i)
c[i] =
a[k+i*200];
646 printf(
" ---------------------------------------%3d --------------------------------------------\n",k+1);
651 for (i = 0; i < mm; ++i)
printf(
"%16.8f",
c[i]);
653 for (i = 0; i <
mm1; ++i)
656 for (i = 1; i < mm; ++i)
657 for (
jj = i;
jj < mm; ++
jj) {
661 for (i = 0; i < mm; ++i)
printf(
"%16.8f",
c[i]);
663 for (i = 0; i <
mm1; ++i)
664 if (!(k >=
n-2 && i != 0))
669 printf(
" MAXIMUM ABSOLUTE VALUES OF DIFFERENCES \n");
672 printf(
" MAXIMUM ABSOLUTE VALUES OF COEFFICIENTS \n");
678 for (
n = 10;
n <= 100;
n += 10) {
682 for (i = 0; i <
nm1; i += 2) {
694 for (i = 0; i <
n; ++i)
697 for (i = 0; i <
mm1; ++i)
699 for (k = 0; k <
n; ++k) {
700 for (i = 0; i < mm; ++i)
703 printf(
" ---------------------------------------%3d --------------------------------------------\n",k+1);
705 if (k ==
n-1)
printf(
"%16.8f\n",
c[0]);
709 for (i = 0; i < mm; ++i)
printf(
"%16.8f",
c[i]);
712 for (i = 0; i <
mm1; ++i)
716 for (i = 1; i < mm; ++i)
717 for (
jj = i;
jj < mm; ++
jj) {
722 for (i = 0; i < mm; ++i)
printf(
"%16.8f",
c[i]);
725 for (i = 0; i <
mm1; ++i)
726 if (!(k >=
n-2 && i != 0))
730 printf(
" MAXIMUM ABSOLUTE VALUES OF DIFFERENCES \n");
733 printf(
" MAXIMUM ABSOLUTE VALUES OF COEFFICIENTS \n");
776 "Binary search failed x(%d) = %f < x= %f < x(%d) = %f\n",
810 std::ofstream *
f =
new std::ofstream(
filename,std::ios::out);
820 char *dot =
strstr(buffer,
".");
822 strlcat(buffer,
"(double x) {\n",512);
831 snprintf(buffer,512,
" const double fX[%d] = {",
fNp);
836 for (i=0;i<
fNp;i++) {
841 if (i%5 == 4 || i ==
fNp-1) {
849 snprintf(buffer,512,
" const double fY[%d] = {",
fNp);
852 for (i=0;i<
fNp;i++) {
857 if (i%5 == 4 || i ==
fNp-1) {
865 snprintf(buffer,512,
" const double fB[%d] = {",
fNp);
868 for (i=0;i<
fNp;i++) {
873 if (i%5 == 4 || i ==
fNp-1) {
881 snprintf(buffer,512,
" const double fC[%d] = {",
fNp);
884 for (i=0;i<
fNp;i++) {
889 if (i%5 == 4 || i ==
fNp-1) {
897 snprintf(buffer,512,
" const double fD[%d] = {",
fNp);
900 for (i=0;i<
fNp;i++) {
905 if (i%5 == 4 || i ==
fNp-1) {
914 snprintf(buffer,512,
" int klow=0;\n");
917 snprintf(buffer,512,
" // If out of boundaries, extrapolate. It may be badly wrong\n");
918 snprintf(buffer,512,
" if(x<=fXmin) klow=0;\n");
920 snprintf(buffer,512,
" else if(x>=fXmax) klow=fNp-1;\n");
924 snprintf(buffer,512,
" if(fKstep) {\n");
927 snprintf(buffer,512,
" // Equidistant knots, use histogramming\n");
929 snprintf(buffer,512,
" klow = int((x-fXmin)/fDelta);\n");
931 snprintf(buffer,512,
" if (klow > fNp-1) klow = fNp-1;\n");
935 snprintf(buffer,512,
" int khig=fNp-1, khalf;\n");
938 snprintf(buffer,512,
" // Non equidistant knots, binary search\n");
940 snprintf(buffer,512,
" while(khig-klow>1)\n");
942 snprintf(buffer,512,
" if(x>fX[khalf=(klow+khig)/2]) klow=khalf;\n");
944 snprintf(buffer,512,
" else khig=khalf;\n");
950 snprintf(buffer,512,
" // Evaluate now\n");
952 snprintf(buffer,512,
" double dx=x-fX[klow];\n");
954 snprintf(buffer,512,
" return (fY[klow]+dx*(fB[klow]+dx*(fC[klow]+dx*fD[klow])));\n");
960 if (
f) {
f->close();
delete f;}
983 if (
fNpx != 100) out<<
" spline3->SetNpx("<<
fNpx<<
");"<<std::endl;
986 out<<
" spline3->SetPoint("<<i<<
","<<
fPoly[i].
X()<<
","<<
fPoly[i].
Y()<<
");"<<std::endl;
987 out<<
" spline3->SetPointCoeff("<<i<<
","<<
fPoly[i].
B()<<
","<<
fPoly[i].
C()<<
","<<
fPoly[i].
D()<<
");"<<std::endl;
1092 for (
m=1;
m<
l; ++
m) {
1161 for (i=1; i<
fNp; ++i) {
1175 if (
R__b.IsReading()) {
1229 for (
Int_t i=0; i<
n; ++i) {
1263 for (
Int_t i=0; i<
n; ++i) {
1296 for (
Int_t i=0; i<
n; i++) {
1330 for (
Int_t i=0; i<
n; ++i) {
1367 g->GetPoint(i,
xx,
yy);
1400 fPoly[i+
beg].
X()=
h->GetXaxis()->GetBinCenter(i+1);
1448 const char *&
cb1,
const char *&
ce1,
1449 const char *&
cb2,
const char *&
ce2)
1479 const char *
cb1,
const char *
ce1,
const char *
cb2,
1554 "Binary search failed x(%d) = %f < x(%d) = %f\n",
1585 std::ofstream *
f =
new std::ofstream(
filename,std::ios::out);
1595 char *dot =
strstr(buffer,
".");
1597 strlcat(buffer,
"(double x) {\n",512);
1606 snprintf(buffer,512,
" const double fX[%d] = {",
fNp);
1611 for (i=0;i<
fNp;i++) {
1616 if (i%5 == 4 || i ==
fNp-1) {
1624 snprintf(buffer,512,
" const double fY[%d] = {",
fNp);
1627 for (i=0;i<
fNp;i++) {
1632 if (i%5 == 4 || i ==
fNp-1) {
1640 snprintf(buffer,512,
" const double fB[%d] = {",
fNp);
1643 for (i=0;i<
fNp;i++) {
1648 if (i%5 == 4 || i ==
fNp-1) {
1656 snprintf(buffer,512,
" const double fC[%d] = {",
fNp);
1659 for (i=0;i<
fNp;i++) {
1664 if (i%5 == 4 || i ==
fNp-1) {
1672 snprintf(buffer,512,
" const double fD[%d] = {",
fNp);
1675 for (i=0;i<
fNp;i++) {
1680 if (i%5 == 4 || i ==
fNp-1) {
1688 snprintf(buffer,512,
" const double fE[%d] = {",
fNp);
1691 for (i=0;i<
fNp;i++) {
1696 if (i%5 == 4 || i ==
fNp-1) {
1704 snprintf(buffer,512,
" const double fF[%d] = {",
fNp);
1707 for (i=0;i<
fNp;i++) {
1712 if (i%5 == 4 || i ==
fNp-1) {
1721 snprintf(buffer,512,
" int klow=0;\n");
1724 snprintf(buffer,512,
" // If out of boundaries, extrapolate. It may be badly wrong\n");
1725 snprintf(buffer,512,
" if(x<=fXmin) klow=0;\n");
1727 snprintf(buffer,512,
" else if(x>=fXmax) klow=fNp-1;\n");
1731 snprintf(buffer,512,
" if(fKstep) {\n");
1734 snprintf(buffer,512,
" // Equidistant knots, use histogramming\n");
1736 snprintf(buffer,512,
" klow = int((x-fXmin)/fDelta);\n");
1738 snprintf(buffer,512,
" if (klow > fNp-1) klow = fNp-1;\n");
1740 snprintf(buffer,512,
" } else {\n");
1742 snprintf(buffer,512,
" int khig=fNp-1, khalf;\n");
1745 snprintf(buffer,512,
" // Non equidistant knots, binary search\n");
1747 snprintf(buffer,512,
" while(khig-klow>1)\n");
1749 snprintf(buffer,512,
" if(x>fX[khalf=(klow+khig)/2]) klow=khalf;\n");
1751 snprintf(buffer,512,
" else khig=khalf;\n");
1757 snprintf(buffer,512,
" // Evaluate now\n");
1759 snprintf(buffer,512,
" double dx=x-fX[klow];\n");
1761 snprintf(buffer,512,
" return (fY[klow]+dx*(fB[klow]+dx*(fC[klow]+dx*(fD[klow]+dx*(fE[klow]+dx*fF[klow])))));\n");
1767 if (
f) {
f->close();
delete f;}
1776 out<<
" "<<std::endl;
1788 <<b1<<
","<<
e1<<
","<<b2<<
","<<
e2<<
");"<<std::endl;
1794 if (
fNpx != 100) out<<
" spline5->SetNpx("<<
fNpx<<
");"<<std::endl;
1797 out<<
" spline5->SetPoint("<<i<<
","<<
fPoly[i].
X()<<
","<<
fPoly[i].
Y()<<
");"<<std::endl;
1798 out<<
" spline5->SetPointCoeff("<<i<<
","<<
fPoly[i].
B()<<
","<<
fPoly[i].
C()<<
","<<
fPoly[i].
D()<<
","<<
fPoly[i].
E()<<
","<<
fPoly[i].
F()<<
");"<<std::endl;
1928 for (i = 1; i <
m; ++i) {
1958 for (i = 1; i <
fNp; ++i) {
1967 for (i = 2; i <
fNp; ++i) {
1985 for (i = 2; i <
m; ++i) {
1998 for (i=
fNp-3; i > 0; --i)
2016 for (i = 1; i <
m; ++i) {
2094 printf(
"1 TEST OF TSpline5 WITH NONEQUIDISTANT KNOTS\n");
2111 for (i = 0; i <
n; ++i)
2113 a[i+600],
a[i+800],
a[i+1000]);
2115 for (i = 0; i <
mm1; ++i)
diff[i] =
com[i] = 0;
2116 for (k = 0; k <
n; ++k) {
2117 for (i = 0; i < mm; ++i)
c[i] =
a[k+i*200];
2118 printf(
" ---------------------------------------%3d --------------------------------------------\n",k+1);
2123 for (i = 0; i < mm; ++i)
printf(
"%16.8f",
c[i]);
2125 for (i = 0; i <
mm1; ++i)
2128 for (i = 1; i < mm; ++i)
2129 for (
jj = i;
jj < mm; ++
jj) {
2131 c[
j-2] =
c[
j-1]*z+
c[
j-2];
2133 for (i = 0; i < mm; ++i)
printf(
"%16.8f",
c[i]);
2135 for (i = 0; i <
mm1; ++i)
2136 if (!(k >=
n-2 && i != 0))
2141 printf(
" MAXIMUM ABSOLUTE VALUES OF DIFFERENCES \n");
2144 printf(
" MAXIMUM ABSOLUTE VALUES OF COEFFICIENTS \n");
2150 for (
n = 10;
n <= 100;
n += 10) {
2154 for (i = 0; i <
nm1; i += 2) {
2166 for (i = 0; i <
n; ++i)
2168 a[i+600],
a[i+800],
a[i+1000]);
2170 for (i = 0; i <
mm1; ++i)
2172 for (k = 0; k <
n; ++k) {
2173 for (i = 0; i < mm; ++i)
2176 printf(
" ---------------------------------------%3d --------------------------------------------\n",k+1);
2178 if (k ==
n-1)
printf(
"%16.8f\n",
c[0]);
2180 if (k ==
n-1)
break;
2182 for (i = 0; i < mm; ++i)
printf(
"%16.8f",
c[i]);
2185 for (i = 0; i <
mm1; ++i)
2189 for (i = 1; i < mm; ++i)
2190 for (
jj = i;
jj < mm; ++
jj) {
2192 c[
j-2] =
c[
j-1]*z+
c[
j-2];
2195 for (i = 0; i < mm; ++i)
printf(
"%16.8f",
c[i]);
2198 for (i = 0; i <
mm1; ++i)
2199 if (!(k >=
n-2 && i != 0))
2203 printf(
" MAXIMUM ABSOLUTE VALUES OF DIFFERENCES \n");
2206 printf(
" MAXIMUM ABSOLUTE VALUES OF COEFFICIENTS \n");
2214 printf(
"1 TEST OF TSpline5 WITH NONEQUIDISTANT DOUBLE KNOTS\n");
2242 for (i = 0; i < nn; ++i)
2244 a[i+600],
a[i+800],
a[i+1000]);
2246 for (i = 0; i <
mm1; ++i)
2248 for (k = 0; k < nn; ++k) {
2249 for (i = 0; i < mm; ++i)
2251 printf(
" ---------------------------------------%3d --------------------------------------------\n",k+1);
2257 for (i = 0; i < mm; ++i)
printf(
"%16.8f",
c[i]);
2259 for (i = 0; i <
mm1; ++i)
2262 for (i = 1; i < mm; ++i)
2263 for (
jj = i;
jj < mm; ++
jj) {
2265 c[
j-2] =
c[
j-1]*z+
c[
j-2];
2267 for (i = 0; i < mm; ++i)
printf(
"%16.8f",
c[i]);
2269 for (i = 0; i <
mm1; ++i)
2270 if (!(k >= nn-2 && i != 0))
2274 printf(
" MAXIMUM ABSOLUTE VALUES OF DIFFERENCES \n");
2275 for (i = 1; i <=
mm1; ++i) {
2281 printf(
" MAXIMUM ABSOLUTE VALUES OF COEFFICIENTS \n");
2285 for (
n = 10;
n <= 100;
n += 10) {
2290 for (i = 0; i <
n; ++i) {
2299 for (i = 0; i < nn; ++i)
2301 a[i+600],
a[i+800],
a[i+1000]);
2303 for (i = 0; i <
mm1; ++i)
2305 for (k = 0; k < nn; ++k) {
2306 for (i = 0; i < mm; ++i)
2309 printf(
" ---------------------------------------%3d --------------------------------------------\n",k+1);
2311 if (k == nn-1)
printf(
"%16.8f\n",
c[0]);
2313 if (k == nn-1)
break;
2315 for (i = 0; i < mm; ++i)
printf(
"%16.8f",
c[i]);
2318 for (i = 0; i <
mm1; ++i)
2321 for (i = 1; i < mm; ++i) {
2322 for (
jj = i;
jj < mm; ++
jj) {
2324 c[
j-2] =
c[
j-1]*z+
c[
j-2];
2328 for (i = 0; i < mm; ++i)
printf(
"%16.8f",
c[i]);
2331 for (i = 0; i <
mm1; ++i)
2332 if (!(k >= nn-2 && i != 0))
2336 printf(
" MAXIMUM ABSOLUTE VALUES OF DIFFERENCES \n");
2339 printf(
" MAXIMUM ABSOLUTE VALUES OF COEFFICIENTS \n");
2348 printf(
"1 TEST OF TSpline5 WITH NONEQUIDISTANT KNOTS,\n");
2349 printf(
" ONE DOUBLE, ONE TRIPLE KNOT\n");
2372 for (i = 0; i <
n; ++i)
2374 a[i+600],
a[i+800],
a[i+1000]);
2376 for (i = 0; i <
mm1; ++i)
2378 for (k = 0; k <
n; ++k) {
2379 for (i = 0; i < mm; ++i)
2381 printf(
" ---------------------------------------%3d --------------------------------------------\n",k+1);
2387 for (i = 0; i < mm; ++i)
printf(
"%16.8f",
c[i]);
2389 for (i = 0; i <
mm1; ++i)
2392 for (i = 1; i < mm; ++i)
2393 for (
jj = i;
jj < mm; ++
jj) {
2395 c[
j-2] =
c[
j-1]*z+
c[
j-2];
2397 for (i = 0; i < mm; ++i)
printf(
"%16.8f",
c[i]);
2399 for (i = 0; i <
mm1; ++i)
2400 if (!(k >=
n-2 && i != 0))
2404 printf(
" MAXIMUM ABSOLUTE VALUES OF DIFFERENCES \n");
2407 printf(
" MAXIMUM ABSOLUTE VALUES OF COEFFICIENTS \n");
2415 printf(
"1 TEST OF TSpline5 WITH NONEQUIDISTANT KNOTS,\n");
2416 printf(
" TWO DOUBLE, ONE TRIPLE KNOT\n");
2443 for (i = 0; i <
n; ++i)
2445 a[i+600],
a[i+800],
a[i+1000]);
2447 for (i = 0; i <
mm1; ++i)
2449 for (k = 0; k <
n; ++k) {
2450 for (i = 0; i < mm; ++i)
2452 printf(
" ---------------------------------------%3d --------------------------------------------\n",k+1);
2458 for (i = 0; i < mm; ++i)
printf(
"%16.8f",
c[i]);
2460 for (i = 0; i <
mm1; ++i)
2463 for (i = 1; i < mm; ++i)
2464 for (
jj = i;
jj < mm; ++
jj) {
2466 c[
j-2] =
c[
j-1]*z+
c[
j-2];
2468 for (i = 0; i < mm; ++i)
printf(
"%16.8f",
c[i]);
2470 for (i = 0; i <
mm1; ++i)
2471 if (!(k >=
n-2 && i != 0))
2475 printf(
" MAXIMUM ABSOLUTE VALUES OF DIFFERENCES \n");
2478 printf(
" MAXIMUM ABSOLUTE VALUES OF COEFFICIENTS \n");
2490 if (
R__b.IsReading()) {
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 Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char filename
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
R__EXTERN TSystem * gSystem
Fill Area Attributes class.
virtual void Streamer(TBuffer &)
virtual Color_t GetFillColor() const
Return the fill area color.
virtual Style_t GetFillStyle() const
Return the fill area style.
virtual void SetFillColor(Color_t fcolor)
Set the fill area color.
virtual void SetFillStyle(Style_t fstyle)
Set the fill area style.
virtual void SaveFillAttributes(std::ostream &out, const char *name, Int_t coldef=1, Int_t stydef=1001)
Save fill attributes as C++ statement(s) on output stream out.
virtual void Streamer(TBuffer &)
virtual Color_t GetLineColor() const
Return the line color.
virtual void SetLineStyle(Style_t lstyle)
Set the line style.
virtual Width_t GetLineWidth() const
Return the line width.
virtual void SetLineWidth(Width_t lwidth)
Set the line width.
virtual void SetLineColor(Color_t lcolor)
Set the line color.
virtual Style_t GetLineStyle() const
Return the line style.
virtual void SaveLineAttributes(std::ostream &out, const char *name, Int_t coldef=1, Int_t stydef=1, Int_t widdef=1)
Save line attributes as C++ statement(s) on output stream out.
virtual void SaveMarkerAttributes(std::ostream &out, const char *name, Int_t coldef=1, Int_t stydef=1, Int_t sizdef=1)
Save line attributes as C++ statement(s) on output stream out.
virtual Style_t GetMarkerStyle() const
Return the marker style.
virtual void SetMarkerColor(Color_t mcolor=1)
Set the marker color.
virtual Color_t GetMarkerColor() const
Return the marker color.
virtual Size_t GetMarkerSize() const
Return the marker size.
virtual void SetMarkerStyle(Style_t mstyle=1)
Set the marker style.
virtual void Streamer(TBuffer &)
virtual void SetMarkerSize(Size_t msize=1)
Set the marker size.
virtual void SetLimits(Double_t xmin, Double_t xmax)
Buffer base class used for serializing objects.
A TGraph is an object made of two arrays X and Y with npoints each.
void Paint(Option_t *chopt="") override
Draw this graph with its current attributes.
1-D histogram with a float per channel (see TH1 documentation)
TH1 is the base class of all histogram classes in ROOT.
virtual void SetDirectory(TDirectory *dir)
By default, when a histogram is created, it is added to the list of histogram objects in the current ...
virtual Double_t GetBinCenter(Int_t bin) const
Return bin center for 1D histogram.
Int_t DistancetoPrimitive(Int_t px, Int_t py) override
Compute distance from point px,py to a line.
@ kLogX
X-axis in log scale.
@ kNoStats
Don't draw stats box.
virtual void SetBinContent(Int_t bin, Double_t content)
Set bin content see convention for numbering bins in TH1::GetBin In case the bin number is greater th...
void Paint(Option_t *option="") override
Control routine to paint any kind of histograms.
void ExecuteEvent(Int_t event, Int_t px, Int_t py) override
Execute action corresponding to one event.
The TNamed class is the base class for all named ROOT classes.
const char * GetName() const override
Returns name of object.
void Streamer(TBuffer &) override
Stream an object of class TObject.
const char * GetTitle() const override
Returns title of object.
TNamed & operator=(const TNamed &rhs)
TNamed assignment operator.
TObject & operator=(const TObject &rhs)
TObject assignment operator.
R__ALWAYS_INLINE Bool_t TestBit(UInt_t f) const
virtual void AppendPad(Option_t *option="")
Append graphics object to current pad.
void SetBit(UInt_t f, Bool_t set)
Set or unset the user status bits as specified in f.
virtual void Error(const char *method, const char *msgfmt,...) const
Issue error message.
Class to create third splines to interpolate knots Arbitrary conditions can be introduced for first a...
void SaveAs(const char *filename="", Option_t *option="") const override
Write this spline as a C++ function that can be executed without ROOT the name of the function is the...
Int_t fEndCond
0=no end cond, 1=first derivative, 2=second derivative
Int_t fBegCond
0=no beg cond, 1=first derivative, 2=second derivative
Int_t FindX(Double_t x) const
Find X.
void SavePrimitive(std::ostream &out, Option_t *option="") override
Save primitive as a C++ statement(s) on output stream out.
static void Test()
Test method for TSpline5.
Double_t fValBeg
Initial value of first or second derivative.
void BuildCoeff() override
Build coefficients.
void Streamer(TBuffer &) override
Stream an object of class TSpline3.
Double_t Eval(Double_t x) const override
Eval this spline at x.
Double_t fValEnd
End value of first or second derivative.
void SetCond(const char *opt)
Check the boundary conditions.
Double_t Derivative(Double_t x) const
Derivative.
TSplinePoly3 * fPoly
[fNp] Array of polynomial terms
TSpline3 & operator=(const TSpline3 &)
Assignment operator.
virtual void SetPoint(Int_t i, Double_t x, Double_t y)
Set point number i.
virtual void SetPointCoeff(Int_t i, Double_t b, Double_t c, Double_t d)
Set point coefficient number i.
Class to create quintic natural splines to interpolate knots Arbitrary conditions can be introduced f...
static void Test()
Test method for TSpline5.
Double_t Eval(Double_t x) const override
Eval this spline at x.
void Streamer(TBuffer &) override
Stream an object of class TSpline5.
void BuildCoeff() override
Algorithm 600, collected algorithms from acm.
TSplinePoly5 * fPoly
[fNp] Array of polynomial terms
virtual void SetPointCoeff(Int_t i, Double_t b, Double_t c, Double_t d, Double_t e, Double_t f)
Set point coefficient number i.
void SaveAs(const char *filename="", Option_t *option="") const override
Write this spline as a C++ function that can be executed without ROOT the name of the function is the...
Double_t Derivative(Double_t x) const
Derivative.
void BoundaryConditions(const char *opt, Int_t &beg, Int_t &end, const char *&cb1, const char *&ce1, const char *&cb2, const char *&ce2)
Check the boundary conditions and the amount of extra double knots needed.
void SavePrimitive(std::ostream &out, Option_t *option="") override
Save primitive as a C++ statement(s) on output stream out.
void SetBoundaries(Double_t b1, Double_t e1, Double_t b2, Double_t e2, const char *cb1, const char *ce1, const char *cb2, const char *ce2)
Set the boundary conditions at double/triple knots.
Int_t FindX(Double_t x) const
Find X.
virtual void SetPoint(Int_t i, Double_t x, Double_t y)
Set point number i.
TSpline5 & operator=(const TSpline5 &)
Assignment operator.
Double_t fC
Second order expansion coefficient : fC*2! is the second derivative at x.
Double_t Eval(Double_t x) const override
Double_t fD
Third order expansion coefficient : fD*3! is the third derivative at x.
Double_t Derivative(Double_t x) const
Double_t fB
First order expansion coefficient : fB*1! is the first derivative at x.
void CopyPoly(TSplinePoly3 const &other)
Utility called by the copy constructors and = operator.
TSplinePoly3 & operator=(TSplinePoly3 const &other)
Assignment operator.
void Streamer(TBuffer &) override
Stream an object of class TObject.
void CopyPoly(TSplinePoly5 const &other)
Utility called by the copy constructors and = operator.
TSplinePoly5 & operator=(TSplinePoly5 const &other)
Assignment operator.
Double_t fF
Fifth order expansion coefficient : fF*5! is the fifth derivative at x.
Double_t Derivative(Double_t x) const
void Streamer(TBuffer &) override
Stream an object of class TObject.
Double_t fB
First order expansion coefficient : fB*1! is the first derivative at x.
Double_t fC
Second order expansion coefficient : fC*2! is the second derivative at x.
Double_t fD
Third order expansion coefficient : fD*3! is the third derivative at x.
Double_t Eval(Double_t x) const override
Double_t fE
Fourth order expansion coefficient : fE*4! is the fourth derivative at x.
Base class for TSpline knot.
void CopyPoly(TSplinePoly const &other)
Utility called by the copy constructors and = operator.
TSplinePoly & operator=(TSplinePoly const &other)
Assignment operator.
Double_t fY
Constant term.
Base class for spline implementation containing the Draw/Paint methods.
void Streamer(TBuffer &) override
Stream an object of class TSpline.
virtual Double_t Eval(Double_t x) const =0
void ExecuteEvent(Int_t event, Int_t px, Int_t py) override
Execute action corresponding to one event.
TGraph * fGraph
Graph for drawing the knots.
Int_t DistancetoPrimitive(Int_t px, Int_t py) override
Compute distance from point px,py to a spline.
Double_t fXmin
Minimum value of abscissa.
TClass * IsA() const override
TH1F * fHistogram
Temporary histogram.
void Draw(Option_t *option="") override
Draw this function with its current attributes.
Double_t fDelta
Distance between equidistant knots.
virtual void GetKnot(Int_t i, Double_t &x, Double_t &y) const =0
TSpline & operator=(const TSpline &)
Assignment operator.
void Paint(Option_t *option="") override
Paint this function with its current attributes.
Bool_t fKstep
True of equidistant knots.
Int_t fNp
Number of knots.
~TSpline() override
Destructor.
Double_t fXmax
Maximum value of abscissa.
Int_t fNpx
Number of points used for graphical representation.
void ToLower()
Change string to lower-case.
const char * Data() const
Bool_t Contains(const char *pat, ECaseCompare cmp=kExact) const
virtual Bool_t AccessPathName(const char *path, EAccessMode mode=kFileExists)
Returns FALSE if one can access a file using the specified access mode.
Short_t Max(Short_t a, Short_t b)
Returns the largest of a and b.
Int_t FloorNint(Double_t x)
Returns the nearest integer of TMath::Floor(x).
Short_t Min(Short_t a, Short_t b)
Returns the smallest of a and b.
Double_t Cos(Double_t)
Returns the cosine of an angle of x radians.
Double_t Sin(Double_t)
Returns the sine of an angle of x radians.
Double_t Log10(Double_t x)
Returns the common (base-10) logarithm of x.
Short_t Abs(Short_t d)
Returns the absolute value of parameter Short_t d.