]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STAT/TKDSpline.cxx
Fixing small memory leaks (Hans)
[u/mrichter/AliRoot.git] / STAT / TKDSpline.cxx
index 7f00d278c42216eca8201a8dd7250ba4265a5354..ecaef9dfe878b9a5308ed250907a838eb78df370 100644 (file)
@@ -1,39 +1,20 @@
 #include "TKDSpline.h"
 
 
-
 ClassImp(TKDSpline)
 
-/////////////////////////////////////////////////////////////////////
-// Memory setup of protected data memebers
-// fRefPoints : evaluation point of PDF for each terminal node of underlying KD Tree.
-// | 1st terminal node (fNDim point coordinates) | 2nd terminal node (fNDim point coordinates) | ...
-//
-// fRefValues : evaluation value/error of PDF for each terminal node of underlying KD Tree.
-// | 1st terminal node (value) | 2nd terminal node (value) | ... | 1st terminal node (error) | 2nd terminal node (error) | ...
-/////////////////////////////////////////////////////////////////////
 
 //_________________________________________________________________
-TKDSpline::TKDSpline() : TKDInterpolator()
+TKDSpline::TKDSpline() :
+       TKDInterpolator()
 {
 }
 
 //_________________________________________________________________
-TKDSpline::TKDSpline(Int_t npoints, Int_t ndim, UInt_t bsize, Float_t **data) : TKDInterpolator(npoints, ndim, bsize, data)
+TKDSpline::TKDSpline(Int_t npoints, Int_t ndim) :
+       TKDInterpolator(npoints, ndim)
 {
        Build();
 }
 
 
-//_________________________________________________________________
-TKDSpline::TKDSpline(TTree *t, const Char_t *var, const Char_t *cut, UInt_t bsize) : TKDInterpolator(t, var, cut, bsize)
-{
-       Build();
-}
-
-
-//_________________________________________________________________
-void TKDSpline::Build()
-{
-}
-