1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef Candidate_OverlapChecker_h
#define Candidate_OverlapChecker_h
/** \class OverlapChecker
*
* Functor that checks the overlap of two Candidate objects
*
* \author Luca Lista, INFN
*
*
*
*/
namespace reco {
class Candidate;
}
class OverlapChecker {
public:
/// return true if two candidates overlap
bool operator()(const reco::Candidate &, const reco::Candidate &) const;
};
#endif
|