#ifndef HRTSAVGOLMANAGER_H
#define HRTSAVGOLMANAGER_H
#include "hsavitzkygolay.h"
#include "hrtmatrix.h"
class HRtSavGolManager : public TObject {
public:
HRtSavGolManager(Int_t nLeft,Int_t nRight,Int_t ld,Int_t m);
~HRtSavGolManager(void);
const HRtVector *getCoefficients(Int_t nl,Int_t nr) {
if ( !(nl<fMaxLeft && nr<fMaxRight) ) return 0;
return fTable[nl*fMaxRight+nr];
}
void print(void);
protected:
Int_t fSize;
HRtVector **fTable;
Int_t fMaxLeft,fMaxRight,fM;
HSavitzkyGolay fSavGol;
public:
ClassDef(HRtSavGolManager,1)
};
#endif
Last change: Sat May 22 13:12:05 2010
Last generated: 2010-05-22 13:12
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.