#ifndef PNDSDSPIXELBACKMAPPING_H #define PNDSDSPIXELBACKMAPPING_H #include "PndSdsDigiPixel.h" #include "PndSdsHit.h" #include "PndGeoHandling.h" #include class PndSdsPixelBackMapping { public : PndSdsPixelBackMapping(); PndSdsPixelBackMapping(PndGeoHandling* geo); virtual ~PndSdsPixelBackMapping(); void SetVerbose (Int_t level) {fVerbose = level;}; virtual PndSdsHit GetCluster(std::vector pixelArray) = 0; std::vector fDigiArray; PndGeoHandling* fGeoH; Int_t fVerbose; }; #endif