CMS 3D CMS Logo

allStandAloneMuonTracksGenParticlesLeptonMatch_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 allStandAloneMuonTracksGenParticlesLeptonMatch = cms.EDFilter("MCTruthDeltaRMatcher",
4  src = cms.InputTag("allStandAloneMuonTracks"),
5  # note the unusually large value due to
6  # poor resolution
7  distMin = cms.double(0.5),
8  matchPDGId = cms.vint32(13),
9  matched = cms.InputTag("genParticleCandidates")
10 )
11 
12