CMS 3D CMS Logo

pfAllElectrons_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 pfAllElectrons = cms.EDFilter("PFCandidateFwdPtrCollectionPdgIdFilter",
4  src = cms.InputTag("pfNoMuon"),
5  pdgId = cms.vint32(11,-11),
6  makeClones = cms.bool(True)
7 )
8 
9 
10 pfAllElectronsClones = cms.EDProducer("PFCandidateProductFromFwdPtrProducer",
11  src = cms.InputTag("pfAllElectrons")
12  )
13 
14 
15 
16 
17