CMS 3D CMS Logo

globalMuonsMCMatch_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 globalMuonsMCMatch = cms.EDProducer("MCTrackMatcher",
4  trackingParticles = cms.InputTag("mix","MergedTrackTruth"),
5  tracks = cms.InputTag("globalMuons"),
6  genParticles = cms.InputTag("genParticles"),
7  associator = cms.string('trackAssociatorByHits'),
8  throwOnMissingTPCollection = cms.bool(True)
9 )
10 
11