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 from FastSimulation.Tracking.GlobalPixelTracking_cff import *
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041 import FastSimulation.Tracking.TrackCandidateProducer_cfi
00042 hltCkfL1IsoLargeWindowTrackCandidates = FastSimulation.Tracking.TrackCandidateProducer_cfi.trackCandidateProducer.clone()
00043 hltCkfL1IsoLargeWindowTrackCandidates.SeedProducer = cms.InputTag("hltL1IsoLargeWindowElectronPixelSeeds")
00044 hltCkfL1IsoLargeWindowTrackCandidates.TrackProducers = cms.VInputTag(cms.InputTag("hltCtfL1IsoWithMaterialTracks"))
00045 hltCkfL1IsoLargeWindowTrackCandidates.MaxNumberOfCrossedLayers = 999
00046 hltCkfL1IsoLargeWindowTrackCandidates.SeedCleaning = True
00047 hltCkfL1IsoLargeWindowTrackCandidates.SplitHits = False
00048
00049
00050
00051 import RecoTracker.TrackProducer.CTFFinalFitWithMaterial_cfi
00052 ctfL1IsoLargeWindowTracks = RecoTracker.TrackProducer.CTFFinalFitWithMaterial_cfi.ctfWithMaterialTracks.clone()
00053 ctfL1IsoLargeWindowTracks.src = 'hltCkfL1IsoLargeWindowTrackCandidates'
00054 ctfL1IsoLargeWindowTracks.TTRHBuilder = 'WithoutRefit'
00055 ctfL1IsoLargeWindowTracks.Fitter = 'KFFittingSmootherForElectrons'
00056 ctfL1IsoLargeWindowTracks.Propagator = 'PropagatorWithMaterial'
00057
00058
00059
00060 hltCtfL1IsoLargeWindowWithMaterialTracks = cms.EDProducer("FastTrackMerger",
00061 SaveTracksOnly = cms.untracked.bool(True),
00062 TrackProducers = cms.VInputTag(cms.InputTag("ctfL1IsoLargeWindowTracks"),
00063 cms.InputTag("hltCtfL1IsoWithMaterialTracks"))
00064 )
00065
00066
00067
00068 HLTPixelMatchLargeWindowElectronL1IsoTrackingSequence = cms.Sequence(hltCkfL1IsoLargeWindowTrackCandidates+
00069 ctfL1IsoLargeWindowTracks+
00070 hltCtfL1IsoLargeWindowWithMaterialTracks+
00071 cms.SequencePlaceholder("hltPixelMatchLargeWindowElectronsL1Iso"))
00072
00073
00074 hltL1IsoLargeWindowElectronPixelSeedsSequence = cms.Sequence(globalPixelTracking+
00075 cms.SequencePlaceholder("hltL1IsoLargeWindowElectronPixelSeeds"))