Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:31:01

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 trackMCMatch = cms.EDProducer("MCTrackMatcher",
0004     trackingParticles = cms.InputTag("mix","MergedTrackTruth"),
0005     tracks = cms.InputTag("generalTracks"),
0006     genParticles = cms.InputTag("genParticles"),
0007     associator = cms.string('trackAssociatorByHits'),
0008     throwOnMissingTPCollection = cms.bool(True)
0009 )
0010 
0011