Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:03:49

0001 #ifndef Candidate_OverlapChecker_h
0002 #define Candidate_OverlapChecker_h
0003 /** \class OverlapChecker

0004  *

0005  * Functor that checks the overlap of two Candidate objects

0006  *

0007  * \author Luca Lista, INFN

0008  *

0009  *

0010  *

0011  */
0012 
0013 namespace reco {
0014   class Candidate;
0015 }
0016 
0017 class OverlapChecker {
0018 public:
0019   /// return true if two candidates overlap

0020   bool operator()(const reco::Candidate &, const reco::Candidate &) const;
0021 };
0022 
0023 #endif