CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TrackHistory_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # Magnetic Field, Geometry, TransientTracks
5 
6 # Track Associators
8 
9 # Track history parameters
10 trackHistory = cms.PSet(
11  bestMatchByMaxValue = cms.untracked.bool(True),
12  trackingTruth = cms.untracked.InputTag("mix","MergedTrackTruth"),
13  trackAssociator = cms.untracked.InputTag('quickTrackAssociatorByHits'),
14  trackProducer = cms.untracked.InputTag("generalTracks"),
15  enableRecoToSim = cms.untracked.bool(True),
16  enableSimToReco = cms.untracked.bool(False)
17 )
18 
19