//----------------------------------------------------------- // File and Version Information: // $Id$ // // Description: // Functor for comparison of pointers to TpcClusters // // // Environment: // Software developed for the PANDA Detector at FAIR. // // Author List: // Sebastian Neubert TUM (original author) // // //----------------------------------------------------------- #ifndef TPCCLUSTERRADIUS_HH #define TPCCLUSTERRADIUS_HH class TpcCluster; class TpcClusterRadius { public: // Constructors/Destructors --------- TpcClusterRadius(){;} ~TpcClusterRadius(){;} // Operators bool operator()(TpcCluster* s1, TpcCluster* s2); }; #endif //-------------------------------------------------------------- // $Log$ //--------------------------------------------------------------