CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/SimTracker/TrackHistory/python/TrackHistory_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # Magnetic Field, Geometry, TransientTracks
00004 from Configuration.StandardSequences.MagneticField_cff import *
00005 
00006 # Track Associators
00007 from SimTracker.TrackAssociation.TrackAssociatorByChi2_cfi import *
00008 from SimTracker.TrackAssociation.TrackAssociatorByHits_cfi import *
00009 
00010 # Track history parameters
00011 trackHistory = cms.PSet(
00012     bestMatchByMaxValue = cms.untracked.bool(True),
00013     trackingTruth = cms.untracked.InputTag("mergedtruth","MergedTrackTruth"),
00014     trackAssociator = cms.untracked.string('TrackAssociatorByHits'),
00015     trackProducer = cms.untracked.InputTag("generalTracks"),
00016     enableRecoToSim = cms.untracked.bool(True),
00017     enableSimToReco = cms.untracked.bool(False)
00018 )
00019 
00020