//----------------------------------------------------------- // File and Version Information: // $Id$ // // Description: // an xyz reco hit (z being considered as a free parameter) // hitCoord=(x,y)^T // s=z // // Environment: // Software developed for the PANDA Detector at FAIR. // // Author List: // Sebastian Neubert TUM (original author) // Ralf Kliemt TUD (application to Mvd) // //----------------------------------------------------------- #ifndef MVDRECOHIT_HH #define MVDRECOHIT_HH // Base Class Headers ---------------- #include "RecoHitIfc.h" #include "PlanarHitPolicy.h" // Collaborating Class Headers ------- #include // remove if you do not need streaming op // Collaborating Class Declarations -- class CbmMCPoint; typedef RecoHitIfc PlanarRecoHit; class MvdRecoHit : public PlanarRecoHit { public: // Constructors/Destructors --------- MvdRecoHit(); MvdRecoHit(double x, double y, double z, double sigx, double sigy); MvdRecoHit(const TVector3& pos, double sigx, double sigy); MvdRecoHit(CbmMCPoint* point); virtual ~MvdRecoHit(); virtual AbsRecoHit* clone(); // Operations ---------------------- virtual void setHMatrix(const AbsTrackRep* stateVector, const TMatrixT& state); virtual double residualScalar(const AbsTrackRep* stateVector, const TMatrixT& state); private: // Private Data Members ------------ static const int NparHitRep = 2; // Private Methods ----------------- public: ClassDef(MvdRecoHit,1) }; #endif //-------------------------------------------------------------- // $Log$ //--------------------------------------------------------------