#include "PndMvdRatesPixelBase.h" #include "PndSdsDigiPixel.h" #include "PndSdsMCPoint.h" PndMvdRatesPixelBase::PndMvdRatesPixelBase() { fCharge = -1.; fFE = -1; fRow = -1; fCol = -1; fTof = -1.; } PndMvdRatesPixelBase::PndMvdRatesPixelBase(Int_t fe, Int_t row, Int_t col, Double_t charge, Double_t tof) { fCharge = charge; fFE = fe; fRow = row; fCol = col; fTof = tof; } PndMvdRatesPixelBase::PndMvdRatesPixelBase(PndSdsDigiPixel *digi, PndSdsMCPoint *mc) { fCharge = digi->GetCharge(); fFE = digi->GetFE(); fRow = digi->GetPixelRow(); fCol = digi->GetPixelColumn(); fTof = mc -> GetTime(); } ClassImp(PndMvdRatesPixelBase);