CMS 3D CMS Logo

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