File indexing completed on 2024-12-05 02:47:55
0001 import FWCore.ParameterSet.Config as cms
0002
0003 from ..modules.hltHighPtTripletStepTrackCandidates_cfi import *
0004 from ..modules.hltHighPtTripletStepTrackCutClassifier_cfi import *
0005 from ..modules.hltHighPtTripletStepTracks_cfi import *
0006 from ..modules.hltHighPtTripletStepTrackSelectionHighPurity_cfi import *
0007 from ..sequences.HLTHighPtTripletStepSeedingSequence_cfi import *
0008
0009 HLTHighPtTripletStepSequence = cms.Sequence(
0010 HLTHighPtTripletStepSeedingSequence
0011 +hltHighPtTripletStepTrackCandidates
0012 +hltHighPtTripletStepTracks
0013 +hltHighPtTripletStepTrackCutClassifier
0014 +hltHighPtTripletStepTrackSelectionHighPurity
0015 )
0016
0017 from Configuration.ProcessModifiers.trackingLST_cff import trackingLST
0018 trackingLST.toReplaceWith(HLTHighPtTripletStepSequence, HLTHighPtTripletStepSequence.copyAndExclude([HLTHighPtTripletStepSeedingSequence]))
0019
0020 from ..modules.hltHighPtTripletStepTrackCandidatespLSTCLST_cfi import *
0021 from ..modules.hltHighPtTripletStepTrackspLSTCLST_cfi import *
0022 from ..modules.hltHighPtTripletStepTrackCutClassifierpLSTCLST_cfi import *
0023 from ..modules.hltHighPtTripletStepTrackSelectionHighPuritypLSTCLST_cfi import *
0024 _HLTHighPtTripletStepSequenceLSTSeeding = cms.Sequence(
0025 hltHighPtTripletStepTrackCandidatespLSTCLST
0026 +hltHighPtTripletStepTrackspLSTCLST
0027 +hltHighPtTripletStepTrackCutClassifierpLSTCLST
0028 +hltHighPtTripletStepTrackSelectionHighPuritypLSTCLST
0029 )
0030
0031 from Configuration.ProcessModifiers.seedingLST_cff import seedingLST
0032 (seedingLST & trackingLST).toReplaceWith(HLTHighPtTripletStepSequence, _HLTHighPtTripletStepSequenceLSTSeeding)