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