Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:23:25

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 allStandAloneMuonTracksGenParticlesLeptonMatch = cms.EDFilter("MCTruthDeltaRMatcher",
0004     src = cms.InputTag("allStandAloneMuonTracks"),
0005     # note the unusually large value due to 
0006     # poor resolution
0007     distMin = cms.double(0.5),
0008     matchPDGId = cms.vint32(13),
0009     matched = cms.InputTag("genParticleCandidates")
0010 )
0011 
0012