1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import FWCore.ParameterSet.Config as cms
from ..modules.hltPhase2L3FromL1TkMuonPixelLayerQuadruplets_cfi import *
from ..modules.hltPhase2L3FromL1TkMuonPixelTracks_cfi import *
from ..modules.hltPhase2L3FromL1TkMuonPixelTracksHitDoublets_cfi import *
from ..modules.hltPhase2L3FromL1TkMuonPixelTracksHitQuadruplets_cfi import *
from ..modules.hltPhase2L3FromL1TkMuonPixelTracksTrackingRegions_cfi import *
from ..modules.hltPhase2L3FromL1TkMuonPixelVertices_cfi import *
from ..modules.hltPhase2L3FromL1TkMuonTrimmedPixelVertices_cfi import *
HLTPhase2L3FromL1TkSequence = cms.Sequence(
hltPhase2L3FromL1TkMuonPixelLayerQuadruplets
+ hltPhase2L3FromL1TkMuonPixelTracksTrackingRegions
+ hltPhase2L3FromL1TkMuonPixelTracksHitDoublets
+ hltPhase2L3FromL1TkMuonPixelTracksHitQuadruplets
+ hltPhase2L3FromL1TkMuonPixelTracks
+ hltPhase2L3FromL1TkMuonPixelVertices
+ hltPhase2L3FromL1TkMuonTrimmedPixelVertices
)
|