1 |
auterman |
1.1 |
/* \class CandPtIsolationProducer
|
2 |
|
|
*
|
3 |
|
|
* computes and stores isolation using PtAlgo for Candidates
|
4 |
|
|
*
|
5 |
|
|
*/
|
6 |
|
|
#include "FWCore/Framework/interface/MakerMacros.h"
|
7 |
|
|
#include "DataFormats/Candidate/interface/Candidate.h"
|
8 |
|
|
#include "PhysicsTools/LeptonIsolation/interface/IsolationProducer.h"
|
9 |
|
|
#include "PhysicsTools/LeptonIsolation/interface/PtIsolationAlgo.h"
|
10 |
|
|
|
11 |
|
|
typedef IsolationProducer<reco::CandidateCollection, reco::CandidateCollection,
|
12 |
|
|
PtIsolationAlgo<reco::Candidate,reco::CandidateCollection> >
|
13 |
|
|
CandPtIsolationProducer;
|
14 |
|
|
|
15 |
|
|
DEFINE_FWK_MODULE( CandPtIsolationProducer );
|