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