]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STAT/TKDSpline.h
Merge branch 'master' of https://git.cern.ch/reps/AliRoot
[u/mrichter/AliRoot.git] / STAT / TKDSpline.h
1 #ifndef ROOT_TKDSpline
2 #define ROOT_TKDSpline
3
4 #ifndef ROOT_TKDInterpolator
5 #include "TKDInterpolator.h"
6 #endif
7
8 class TKDSpline : public TKDInterpolator
9 {
10 public:
11         TKDSpline();
12         TKDSpline(Int_t npoints, Int_t ndim);
13
14 private:
15         Bool_t          Build(Int_t ndim=0){return Bool_t(ndim);}
16         
17 protected:
18
19 private:
20
21         ClassDef(TKDSpline, 1)   // spline fitter based on KD tree
22 };
23
24
25 #endif
26