//----------------------------------------------------------- // 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 TPCSAMPLEAMP_HH #define TPCSAMPLEAMP_HH class TpcSample; class TpcSampleAmp { public: // Constructors/Destructors --------- TpcSampleAmp(){;} ~TpcSampleAmp(){;} // Operators bool operator()(TpcSample* s1, TpcSample* s2); }; #endif //-------------------------------------------------------------- // $Log$ //--------------------------------------------------------------