CMS 3D CMS Logo

pfNoElectron_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 import CommonTools.ParticleFlow.tppfCandidatesOnPFCandidates_cfi as _mod
3 
4 pfNoElectron = _mod.tppfCandidatesOnPFCandidates.clone(
5  enable = True,
6  name = "noElectron",
7  topCollection = "pfIsolatedElectrons",
8  bottomCollection = "pfNoMuon",
9 )
10 
11 pfNoElectronJME = pfNoElectron.clone(
12  bottomCollection = "pfNoMuonJME",
13 )
14 
15 pfNoElectronJMEClones = cms.EDProducer("PFCandidateFromFwdPtrProducer",
16  src=cms.InputTag('pfNoElectronJME')
17  )