CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/FastSimulation/Tracking/python/GlobalMixedTracking_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # Global Mixed seeding
00004 from FastSimulation.Tracking.GlobalMixedSeedProducer_cff import *
00005 import FastSimulation.Tracking.TrackCandidateProducer_cfi
00006 # TrackCandidates
00007 globalMixedTrackCandidates = FastSimulation.Tracking.TrackCandidateProducer_cfi.trackCandidateProducer.clone()
00008 import RecoTracker.TrackProducer.CTFFinalFitWithMaterial_cfi
00009 # reco::Tracks
00010 globalMixedWithMaterialTracks = RecoTracker.TrackProducer.CTFFinalFitWithMaterial_cfi.ctfWithMaterialTracks.clone()
00011 # Merging
00012 ctfWithMaterialTracks = cms.EDProducer("FastTrackMerger",
00013     TrackProducers = cms.VInputTag(cms.InputTag("globalMixedTrackCandidates"), cms.InputTag("globalMixedWithMaterialTracks"))
00014 )
00015 
00016 # The sequence
00017 ctfTracking = cms.Sequence(globalMixedSeeds*globalMixedTrackCandidates*globalMixedWithMaterialTracks*ctfWithMaterialTracks)
00018 globalMixedTrackCandidates.SeedProducer = cms.InputTag("globalMixedSeeds","GlobalMixed")
00019 globalMixedTrackCandidates.TrackProducers = ['globalPixelWithMaterialTracks']
00020 globalMixedWithMaterialTracks.src = 'globalMixedTrackCandidates'
00021 globalMixedWithMaterialTracks.TTRHBuilder = 'WithoutRefit'
00022 globalMixedWithMaterialTracks.Fitter = 'KFFittingSmootherWithOutlierRejection'
00023 globalMixedWithMaterialTracks.Propagator = 'PropagatorWithMaterial'
00024