Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035 from FastSimulation.Tracking.GlobalPixelTracking_cff import *
00036
00037
00038 import FastSimulation.Tracking.TrackCandidateProducer_cfi
00039
00040 hltCkfL1NonIsoLargeWindowTrackCandidates = FastSimulation.Tracking.TrackCandidateProducer_cfi.trackCandidateProducer.clone()
00041 hltCkfL1NonIsoLargeWindowTrackCandidates.SeedProducer = cms.InputTag("hltL1NonIsoLargeWindowElectronPixelSeeds")
00042 hltCkfL1NonIsoLargeWindowTrackCandidates.TrackProducers = cms.VInputTag(cms.InputTag("hltCtfL1NonIsoWithMaterialTracks"))
00043 hltCkfL1NonIsoLargeWindowTrackCandidates.MaxNumberOfCrossedLayers = 999
00044 hltCkfL1NonIsoLargeWindowTrackCandidates.SeedCleaning = True
00045 hltCkfL1NonIsoLargeWindowTrackCandidates.SplitHits = False
00046
00047
00048
00049 import RecoTracker.TrackProducer.CTFFinalFitWithMaterial_cfi
00050
00051 ctfL1NonIsoLargeWindowTracks = RecoTracker.TrackProducer.CTFFinalFitWithMaterial_cfi.ctfWithMaterialTracks.clone()
00052 ctfL1NonIsoLargeWindowTracks.src = 'hltCkfL1NonIsoLargeWindowTrackCandidates'
00053 ctfL1NonIsoLargeWindowTracks.TTRHBuilder = 'WithoutRefit'
00054 ctfL1NonIsoLargeWindowTracks.Fitter = 'KFFittingSmootherForElectrons'
00055 ctfL1NonIsoLargeWindowTracks.Propagator = 'PropagatorWithMaterial'
00056
00057
00058 hltCtfL1NonIsoLargeWindowWithMaterialTracks = cms.EDProducer("FastTrackMerger",
00059 SaveTracksOnly = cms.untracked.bool(True),
00060 TrackProducers = cms.VInputTag(cms.InputTag("ctfL1NonIsoLargeWindowTracks"),
00061 cms.InputTag("hltCtfL1NonIsoWithMaterialTracks"))
00062 )
00063
00064
00065 HLTPixelMatchLargeWindowElectronL1NonIsoTrackingSequence = cms.Sequence(hltCkfL1NonIsoLargeWindowTrackCandidates+
00066 ctfL1NonIsoLargeWindowTracks+
00067 hltCtfL1NonIsoLargeWindowWithMaterialTracks+
00068 cms.SequencePlaceholder("hltPixelMatchLargeWindowElectronsL1NonIso"))
00069
00070 hltL1NonIsoLargeWindowElectronPixelSeedsSequence = cms.Sequence(globalPixelTracking+
00071 cms.SequencePlaceholder("hltL1NonIsoLargeWindowElectronPixelSeeds"))