CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
trackMCMatch_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 trackMCMatch = cms.EDProducer("MCTrackMatcher",
4  trackingParticles = cms.InputTag("mix","MergedTrackTruth"),
5  tracks = cms.InputTag("generalTracks"),
6  genParticles = cms.InputTag("genParticles"),
7  associator = cms.string('TrackAssociatorByHits'),
8  throwOnMissingTPCollection = cms.bool(True)
9 )
10 
11