#ifndef HRTSAVGOLPAR_H
#define HRTSAVGOLPAR_H

#include "hparcond.h"

class HParIo;
class HParamList;

class HRtSavGolPar : public HParCond {
  public:
    HRtSavGolPar(const Char_t *name="RtSavGolPar",
	const Char_t *title="Savitzky-Golay parameters",
	const Char_t *context="RtProduction");
    virtual ~HRtSavGolPar(void) { }
    Bool_t init(HParIo *inp, Int_t *set);
    Int_t write(HParIo *io);
    void putParams(HParamList*);
    Bool_t getParams(HParamList*);
    Int_t getNLeft(void) { return fNLeft; }
    Int_t getNRight(void) { return fNRight; }
    Int_t getM(void) { return fM; }
    void setParams(Int_t nl,Int_t nr,Int_t m) {fNLeft=nl; fNRight=nr; fM=m;}
    void readFrom(const HRtSavGolPar &o);
  protected:
    Int_t fNLeft, fNRight;
    Int_t fM;
  public:
    ClassDef(HRtSavGolPar,1)
};

#endif

Last change: Sat May 22 13:12:06 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.