Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003
00004
00005
00006
00007 electronMatch = cms.EDProducer("MCMatcher",
00008 src = cms.InputTag("gsfElectrons"),
00009 matched = cms.InputTag("genParticles"),
00010 mcPdgId = cms.vint32(11),
00011 checkCharge = cms.bool(True),
00012 mcStatus = cms.vint32(1),
00013 maxDeltaR = cms.double(0.5),
00014 maxDPtRel = cms.double(0.5),
00015 resolveAmbiguities = cms.bool(True),
00016 resolveByMatchQuality = cms.bool(False),
00017 )
00018
00019