]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STAT/TKDSpline.h
Major update of the CMake compilation:
[u/mrichter/AliRoot.git] / STAT / TKDSpline.h
CommitLineData
f2040a8f 1#ifndef ROOT_TKDSpline
2#define ROOT_TKDSpline
3
4#ifndef ROOT_TKDInterpolator
5#include "TKDInterpolator.h"
6#endif
7
8class TKDSpline : public TKDInterpolator
9{
10public:
11 TKDSpline();
a3408ed3 12 TKDSpline(Int_t npoints, Int_t ndim);
f2040a8f 13
14private:
1a439134 15 void Build(Int_t ndim = 0);
f2040a8f 16
17protected:
18
19private:
20
21 ClassDef(TKDSpline, 1) // spline fitter based on KD tree
22};
23
24
25#endif
26