#include "MvdDigiPixel.h" MvdDigiPixel::MvdDigiPixel(){ fIndex = -1; fCol = fRow = -1; fCharge = -1; } MvdDigiPixel::MvdDigiPixel(Int_t index, Int_t detID, TString detName, Int_t fe, Int_t col, Int_t row, Double_t charge){ fIndex = index; fDetID = detID; fDetName= detName; fFE = fe; fCol = col; fRow = row; fCharge = charge; } ClassImp(MvdDigiPixel)