//----------------------------------------------------------- // File and Version Information: // $Id$ // // Description: // Implementation of class TpcClusterRadius // see TpcClusterRadius.h for details // // Environment: // Software developed for the PANDA Detector at FAIR. // // Author List: // Sebastian Neubert TUM (original author) // // //----------------------------------------------------------- // This Class' Header ------------------ #include "TpcClusterRadius.h" #include "TpcCluster.h" bool TpcClusterRadius::operator()(TpcCluster* s1, TpcCluster* s2) { double r1=s1->pos().Perp(); double r2=s2->pos().Perp(); return r1>r2; }