CMS 3D CMS Logo

allElectronsGenParticlesMatch_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 allElectronsGenParticlesMatch = cms.EDFilter("MCTruthDeltaRMatcher",
4  src = cms.InputTag("allElectrons"),
5  distMin = cms.double(0.15),
6  matchPDGId = cms.vint32(11),
7  matched = cms.InputTag("genParticleCandidates")
8 )
9 
10