Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003
00004 from FastSimulation.Tracking.GlobalMixedSeedProducer_cff import *
00005 import FastSimulation.Tracking.TrackCandidateProducer_cfi
00006
00007 globalMixedTrackCandidates = FastSimulation.Tracking.TrackCandidateProducer_cfi.trackCandidateProducer.clone()
00008 import RecoTracker.TrackProducer.CTFFinalFitWithMaterial_cfi
00009
00010 globalMixedWithMaterialTracks = RecoTracker.TrackProducer.CTFFinalFitWithMaterial_cfi.ctfWithMaterialTracks.clone()
00011
00012 ctfWithMaterialTracks = cms.EDProducer("FastTrackMerger",
00013 TrackProducers = cms.VInputTag(cms.InputTag("globalMixedTrackCandidates"), cms.InputTag("globalMixedWithMaterialTracks"))
00014 )
00015
00016
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