//----------------------------------------------------------- // File and Version Information: // $Id$ // // Description: // Functor for comparison of pointers to TpcClusters // that uses track information. // uses slow extrapolation stuff // // Environment: // Software developed for the PANDA Detector at FAIR. // // Author List: // Rumpel Stielzchen TUM (original author) // Ra Punzel TUM (original author) // //----------------------------------------------------------- #ifndef TPCCLUSTERTRACK_HH #define TPCCLUSTERTRACK_HH class TpcCluster; class GFTrack; #include class TpcClusterTrack: public std::binary_function { public: // Constructors/Destructors --------- TpcClusterTrack(GFTrack *track):_track(track){;} ~TpcClusterTrack(){;} // Operators bool operator()(TpcCluster* s1, TpcCluster* s2) const; private: GFTrack *_track; }; #endif