#ifndef PNDMVDRATESPIXELBASE_H #define PNDMVDRATESPIXELBASE_H #include "TObject.h" #include "PndSdsDigiPixel.h" #include "PndSdsMCPoint.h" #include class PndMvdRatesPixelBase : public TObject { public: PndMvdRatesPixelBase(); PndMvdRatesPixelBase(Int_t fe, Int_t row, Int_t col, Double_t charge, Double_t tof); PndMvdRatesPixelBase(PndSdsDigiPixel *digi, PndSdsMCPoint *mc); ~PndMvdRatesPixelBase(){}; Double_t GetTof() {return fTof;}; Int_t GetFE() const { return fFE;} Double_t GetCharge() const { return fCharge; } Int_t GetRow() const { return fRow; } Int_t GetCol() const { return fCol; } protected : Double_t fCharge; Int_t fFE; Int_t fRow; Int_t fCol; Double_t fTof; // time of flight ClassDef(PndMvdRatesPixelBase,1); }; #endif