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