File indexing completed on 2024-12-21 03:54:46
0001 import FWCore.ParameterSet.Config as cms
0002
0003 from ..modules.hltPhase2L3FromL1TkMuonPixelLayerQuadruplets_cfi import *
0004 from ..modules.hltPhase2L3FromL1TkMuonPixelTracks_cfi import *
0005 from ..modules.hltPhase2L3FromL1TkMuonPixelTracksHitDoublets_cfi import *
0006 from ..modules.hltPhase2L3FromL1TkMuonPixelTracksHitQuadruplets_cfi import *
0007 from ..modules.hltPhase2L3FromL1TkMuonPixelTracksTrackingRegions_cfi import *
0008 from ..modules.hltPhase2L3FromL1TkMuonPixelVertices_cfi import *
0009 from ..modules.hltPhase2L3FromL1TkMuonTrimmedPixelVertices_cfi import *
0010
0011 HLTPhase2L3FromL1TkSequence = cms.Sequence(
0012 hltPhase2L3FromL1TkMuonPixelLayerQuadruplets
0013 + hltPhase2L3FromL1TkMuonPixelTracksTrackingRegions
0014 + hltPhase2L3FromL1TkMuonPixelTracksHitDoublets
0015 + hltPhase2L3FromL1TkMuonPixelTracksHitQuadruplets
0016 + hltPhase2L3FromL1TkMuonPixelTracks
0017 + hltPhase2L3FromL1TkMuonPixelVertices
0018 + hltPhase2L3FromL1TkMuonTrimmedPixelVertices
0019 )