Line data Source code
1 : #ifndef ROOT_TKDSpline
2 : #define ROOT_TKDSpline
3 :
4 : #ifndef ROOT_TKDInterpolator
5 : #include "TKDInterpolator.h"
6 : #endif
7 :
8 0 : class TKDSpline : public TKDInterpolator
9 : {
10 : public:
11 : TKDSpline();
12 : TKDSpline(Int_t npoints, Int_t ndim);
13 :
14 : private:
15 0 : Bool_t Build(Int_t ndim=0){return Bool_t(ndim);}
16 :
17 : protected:
18 :
19 : private:
20 :
21 128 : ClassDef(TKDSpline, 1) // spline fitter based on KD tree
22 : };
23 :
24 :
25 : #endif
26 :
|