#ifndef PNDMVDRATESSTRIPBASE_H #define PNDMVDRATESSTRIPBASE_H #include "TObject.h" #include "TString.h" #include #include "PndSdsDigiStrip.h" #include "PndSdsMCPoint.h" class PndMvdRatesStripBase : public TObject { public : PndMvdRatesStripBase(); PndMvdRatesStripBase(Int_t fe, Int_t channel, Double_t charge, Double_t tof); PndMvdRatesStripBase(PndSdsDigiStrip *digi, PndSdsMCPoint *mc); ~PndMvdRatesStripBase(){}; Double_t GetTof(){return fTof;}; Int_t GetFE() const { return fFE;} Double_t GetCharge() const { return fCharge; } Int_t GetChannel() const { return fChannel; } protected : Double_t fCharge; Int_t fFE; Int_t fChannel; Double_t fTof; // time of flight ClassDef(PndMvdRatesStripBase,1); }; #endif