#ifndef HRICHIPUPARLOCMAX_H #define HRICHIPUPARLOCMAX_H #include "hparcond.h" class HParamList; class HRichIPUParLocMax : public HParCond { private: Int_t locmax; Int_t locmax_flag; public: HRichIPUParLocMax(const Char_t* name="RichIPUParLocMax", const Char_t* title="Parameters for Rich IPU LocMax ", const Char_t* context="RICHIPUEmulation"); ~HRichIPUParLocMax(void); Int_t getLocMax(){return locmax;} void setLocMax(Int_t lm){locmax=lm;} Int_t getLocMaxFlag(){return locmax_flag;} void setLocMaxFlag(Int_t fl){locmax_flag=fl;} void putParams(HParamList*); Bool_t getParams(HParamList*); void clear(); void printParam(); void setDefaults(void); ClassDef(HRichIPUParLocMax,1) // Container for the RICH IPU LocMax parameters }; #endif /* !HRICHIPUPARLOCMAX_H */