00001 #ifndef CandUtils_CandSelector_h 00002 #define CandUtils_CandSelector_h 00003 00015 namespace reco { 00016 class Candidate; 00017 } 00018 00019 class CandSelector { 00020 public: 00022 virtual ~CandSelector(); 00024 virtual bool operator()( const reco::Candidate & c ) const = 0; 00025 }; 00026 00027 #endif