1 |
gpetrucc |
1.3 |
#include "UserCode/GPetrucc/plugins/DataNTupler.h"
|
2 |
gpetrucc |
1.1 |
|
3 |
|
|
#include "FWCore/Framework/interface/MakerMacros.h"
|
4 |
|
|
|
5 |
|
|
#include "DataFormats/PatCandidates/interface/Muon.h"
|
6 |
|
|
#include "DataFormats/PatCandidates/interface/GenericParticle.h"
|
7 |
|
|
#include "DataFormats/HepMCCandidate/interface/GenParticle.h"
|
8 |
|
|
|
9 |
|
|
//define this as a plug-in
|
10 |
|
|
typedef DataNTupler<pat::Muon> PATMuonNTupler;
|
11 |
|
|
typedef DataNTupler<pat::GenericParticle> PATGenericParticleNTupler;
|
12 |
|
|
typedef DataNTupler<reco::GenParticle> GenParticleNTupler;
|
13 |
|
|
DEFINE_FWK_MODULE(GenParticleNTupler);
|
14 |
gpetrucc |
1.2 |
DEFINE_FWK_MODULE(PATMuonNTupler);
|
15 |
gpetrucc |
1.1 |
DEFINE_FWK_MODULE(PATGenericParticleNTupler);
|