#ifndef PNDMVDPIXELBACKMAPPING_H #define PNDMVDPIXELBACKMAPPING_H #include "PndMvdDigiPixel.h" #include "PndMvdHit.h" #include "PndGeoHandling.h" #include class PndMvdPixelBackMapping { public : PndMvdPixelBackMapping(); PndMvdPixelBackMapping(std::vector digiArray, std::vector params); ~PndMvdPixelBackMapping(); void SetVerbose (Int_t level) {fVerbose = level;}; virtual PndMvdHit GetCluster() = 0; std::vector fDigiArray; std::vector fParams; PndGeoHandling* fGeoH; Int_t fVerbose; }; #endif