CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/SimTracker/TrackHistory/python/VertexHistory_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 from SimTracker.VertexAssociation.VertexAssociatorByTracks_cfi import *
00010 
00011 # Track history parameters
00012 vertexHistory = cms.PSet(
00013     bestMatchByMaxValue = cms.untracked.bool(True),
00014     trackingTruth = cms.untracked.InputTag('mergedtruth','MergedTrackTruth'),
00015     trackAssociator = cms.untracked.string('TrackAssociatorByHits'),
00016     trackProducer = cms.untracked.InputTag('generalTracks'),
00017     vertexAssociator = cms.untracked.string('VertexAssociatorByTracks'),
00018     vertexProducer = cms.untracked.InputTag('offlinePrimaryVertices'),
00019     enableRecoToSim = cms.untracked.bool(True),
00020     enableSimToReco = cms.untracked.bool(False)
00021 )
00022 
00023