//----------------------------------------------------------- // File and Version Information: // $Id$ // // Description: // a planar (x,y) reco hit & its sensor plane // // Environment: // Software developed for the PANDA Detector at FAIR. // // Author List: // Sebastian Neubert TUM (original author) // Ralf Kliemt TUD (application to PndSds) // modified by Elisabetta Prencipe 19/5/2014 //----------------------------------------------------------- //! A planar (x,y) reco hit & its sensor plane /** @author Ralf Kliemt TUD */ #ifndef PNDSDSRECOHIT_H #define PNDSDSRECOHIT_H // Base Class Headers ---------------- #include "PlanarMeasurement.h" #include "PndGeoHandling.h" #include "AbsMeasurement.h" // Collaborating Class Headers ------- #include // remove if you do not need streaming op // Collaborating Class Declarations -- class FairMCPoint; class PndSdsMCPoint; class PndSdsHit; class PndSdsRecoHit : public genfit::PlanarMeasurement{ public: // Constructors/Destructors --------- PndSdsRecoHit(); PndSdsRecoHit(PndSdsMCPoint* point);//from lab MC points PndSdsRecoHit(PndSdsHit* hit);//from lab cluster hits virtual ~PndSdsRecoHit(); virtual AbsMeasurement* clone(){return new PndSdsRecoHit(*this);}; // Operations ---------------------- virtual TMatrixT getHMatrix(const genfit::AbsTrackRep* stateVector); virtual Double_t residualScalar(genfit::AbsTrackRep* stateVector, const TMatrixT& state); private: // Private Data Members ------------ static const Int_t fNparHitRep = 2;//3; PndGeoHandling* fGeoH; //! // Private Methods ----------------- //public: ClassDef(PndSdsRecoHit,2); }; #endif //-------------------------------------------------------------- // $Log$ //--------------------------------------------------------------