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