// // C++ Interface: MvdDigiPar // // Description: // // // Author: t.stockmanns , (C) 2007 // // Copyright: See COPYING file that comes with this distribution // // #ifndef MVDDIGIPAR_H #define MVDDIGIPAR_H #include "CbmParGenericSet.h" #include "CbmParamList.h" class MvdDigiPar : public CbmParGenericSet { public : Double_t dimX; // PixelDimension in x Double_t dimY; // PixelDimension in y Double_t skew; // skewing angle if one exists Double_t threshold; // Discriminator threshold Double_t noise; // Complete noise including threshold dispersion // Text_t sensName; // Sensor name (Strip, Pixel, etc...) // Text_t feName; // Frontend name (APV25, nyxiter, ...) MvdDigiPar (const char* name="MvdParTest", const char* title="Mvd digi parameter", const char* context="TestDefaultContext"); ~MvdDigiPar(void){}; void clear(void){}; void putParams(CbmParamList* list); Bool_t getParams(CbmParamList* list); ClassDef(MvdDigiPar,2); }; #endif