CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
GlobalMixedTracking_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # Global Mixed seeding
6 # TrackCandidates
7 globalMixedTrackCandidates = FastSimulation.Tracking.TrackCandidateProducer_cfi.trackCandidateProducer.clone()
9 # reco::Tracks
10 globalMixedWithMaterialTracks = RecoTracker.TrackProducer.CTFFinalFitWithMaterial_cfi.ctfWithMaterialTracks.clone()
11 
12 # The sequence
13 ctfTracking = cms.Sequence(globalMixedSeeds*globalMixedTrackCandidates*globalMixedWithMaterialTracks*ctfWithMaterialTracks)
14 globalMixedTrackCandidates.src = cms.InputTag("globalMixedSeeds")
15 globalMixedTrackCandidates.TrackProducers = ['globalPixelWithMaterialTracks']
16 globalMixedWithMaterialTracks.src = 'globalMixedTrackCandidates'
17 globalMixedWithMaterialTracks.TTRHBuilder = 'WithoutRefit'
18 globalMixedWithMaterialTracks.Fitter = 'KFFittingSmootherWithOutlierRejection'
19 globalMixedWithMaterialTracks.Propagator = 'PropagatorWithMaterial'