#include "CbmMvdProtoState.h" //##################################################################### // methods CbmMvdProtoState::CbmMvdProtoState() { fEventNumber=0; fFrameCount=0; fFrameNumber=0; fSensorID=-1; // flag that the object was not initialized fRow=-1; fColumn=-1; fNextNeighbours=-1; fOverFlow=kFALSE; } CbmMvdProtoState::CbmMvdProtoState(UInt_t eventNumber, UInt_t frameCount, UInt_t frameNumber, Short_t sensorID, Short_t row, Short_t column, Short_t nextNeighbours, Bool_t overFlow) { fEventNumber =eventNumber; fFrameCount =frameCount; fFrameNumber =frameNumber; fSensorID =sensorID; // flag that the object was not initialized fRow =row; fColumn =column; fNextNeighbours=nextNeighbours; fOverFlow = overFlow; } ClassImp(CbmMvdProtoState);