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