//----------------------------------------------------------- // File and Version Information: // $Id$ // // Description: // abstract interface for a hit-track correlator // for the riemann track finder // // // Environment: // Software developed for the PANDA Detector at FAIR. // // Author List: // Sebastian Neubert TUM (original author) // // //----------------------------------------------------------- #ifndef TPCABSHITTRACKCORRELATOR_HH #define TPCABSHITTRACKCORRELATOR_HH // Base Class Headers ---------------- // Collaborating Class Headers ------- // Collaborating Class Declarations -- class PndTpcRiemannTrack; class PndTpcRiemannHit; class PndTpcAbsHitTrackCorrelator { public: // Constructors/Destructors --------- PndTpcAbsHitTrackCorrelator(){} virtual ~PndTpcAbsHitTrackCorrelator(){} virtual bool corr(PndTpcRiemannTrack* trk, PndTpcRiemannHit* rhit, double& matchQuality)=0; }; #endif //-------------------------------------------------------------- // $Log$ //--------------------------------------------------------------