//----------------------------------------------------------- // File and Version Information: // $Id$ // // Description: // Policy class for spacepoint hits // // // Environment: // Software developed for the PANDA Detector at FAIR. // // Author List: // Sebastian Neubert TUM (original author) // Christian Hoeppner TUM (original author) // // //----------------------------------------------------------- #ifndef SPACEPOINTHITPOLICY_HH #define SPACEPOINTHITPOLICY_HH // Base Class Headers ---------------- // Collaborating Class Headers ------- #include "DetPlane.h" #include "TMatrixT.h" // Collaborating Class Declarations -- class AbsRecoHit; class AbsTrackRep; class SpacepointHitPolicy { public: SpacepointHitPolicy(){;} // Modifiers ----------------------- // void setDetPlane(const DetPlane& p){_physicalDetPlane=p;} // Operations ---------------------- const DetPlane& detPlane(AbsRecoHit*,AbsTrackRep*); TMatrixT hitCoord(AbsRecoHit*,const DetPlane&); TMatrixT hitCov(AbsRecoHit*,const DetPlane&); protected: // policy destructors have to be protected // see Alexandrescu virtual ~SpacepointHitPolicy(){;} private: // Private Data Members ------------ DetPlane _detPlane; // Private Methods ----------------- }; #endif //-------------------------------------------------------------- // $Log$ //--------------------------------------------------------------