#ifndef PNDMVDRATESPIXEL_H #define PNDMVDRATESPIXEL_H #include "TObject.h" #include "PndSdsDigiPixel.h" #include "PndSdsMCPoint.h" #include "PndMvdRatesPixelBase.h" #include "TString.h" #include class PndMvdRatesPixel : public PndMvdRatesPixelBase { public: PndMvdRatesPixel(); PndMvdRatesPixel(Int_t name, Int_t fe, Int_t row, Int_t col, Double_t charge, Double_t tof); PndMvdRatesPixel(PndSdsDigiPixel *digi, PndSdsMCPoint *mc); PndMvdRatesPixel(PndSdsDigiPixel *digi, PndSdsMCPoint *mc, Double_t EvtStart, Bool_t status); void SetStored(Bool_t sto); Bool_t GetStored(){return fStored;}; ~PndMvdRatesPixel(){}; Int_t GetDetName() {return fDetName;}; private : Int_t fDetName; Bool_t fStored; // true if the digi can be accepted by the FEE ClassDef(PndMvdRatesPixel,1); }; #endif