-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #46828 from SegmentLinking/CMSSW_14_2_0_pre4_singl…
…eIter_LST_HLT Addition of single iteration Patatrack and LST HLT configurations and workflows
- Loading branch information
Showing
37 changed files
with
370 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
# This modifier sets the LST (Phase-2 line segment tracking) used for track seeding | ||
# Needs to be used on top of the trackingLST modifier | ||
seedingLST = cms.Modifier() |
5 changes: 5 additions & 0 deletions
5
Configuration/ProcessModifiers/python/singleIterPatatrack_cff.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
# This modifier merges the initialStep and highPtTripletStep iterations | ||
# to a single iteration using Patatrack pixel tracks with >3 hits as seeds | ||
singleIterPatatrack = cms.Modifier() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
HLTrigger/Configuration/python/HLT_75e33/eventsetup/hltESPModulesDevLST_cfi.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
def _addProcessModulesDevLST(process): | ||
process.hltESPModulesDevLST = cms.ESProducer('LSTModulesDevESProducer@alpaka', | ||
appendToDataLabel = cms.string(''), | ||
alpaka = cms.untracked.PSet( | ||
backend = cms.untracked.string('') | ||
) | ||
) | ||
|
||
from Configuration.ProcessModifiers.trackingLST_cff import trackingLST | ||
modifyConfigurationForTrackingLSTModulesDevLST_ = trackingLST.makeProcessModifier(_addProcessModulesDevLST) |
4 changes: 2 additions & 2 deletions
4
...hon/HLT_75e33/eventsetup/hltTTRBWR_cfi.py → ...up/hltESPTTRHBuilderWithTrackAngle_cfi.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
HLTrigger/Configuration/python/HLT_75e33/eventsetup/hltESPTTRHBuilderWithoutRefit_cfi.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
def _addProcessTTRHBuilderWithoutRefit(process): | ||
process.hltESPTTRHBuilderWithoutRefit = cms.ESProducer("TkTransientTrackingRecHitBuilderESProducer", | ||
ComponentName = cms.string('hltESPTTRHBuilderWithoutRefit'), | ||
ComputeCoarseLocalPositionFromDisk = cms.bool(False), | ||
Matcher = cms.string('Fake'), | ||
Phase2StripCPE = cms.string(''), | ||
PixelCPE = cms.string('Fake'), | ||
StripCPE = cms.string('Fake') | ||
) | ||
|
||
from Configuration.ProcessModifiers.trackingLST_cff import trackingLST | ||
modifyConfigurationForTrackingLSTTTRHBuilderWithoutRefit_ = trackingLST.makeProcessModifier(_addProcessTTRHBuilderWithoutRefit) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
HLTrigger/Configuration/python/HLT_75e33/modules/hltHighPtTripletStepSeedTracksLST_cfi.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
hltHighPtTripletStepSeedTracksLST = cms.EDProducer( | ||
"TrackFromSeedProducer", | ||
src = cms.InputTag("hltHighPtTripletStepSeeds"), | ||
beamSpot = cms.InputTag("hltOnlineBeamSpot"), | ||
TTRHBuilder = cms.string("hltESPTTRHBuilderWithoutRefit") | ||
) |
4 changes: 4 additions & 0 deletions
4
...Configuration/python/HLT_75e33/modules/hltHighPtTripletStepTrackCandidatespLSTCLST_cfi.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
from ..modules.hltHighPtTripletStepTrackCandidates_cfi import hltHighPtTripletStepTrackCandidates as _hltHighPtTripletStepTrackCandidates | ||
hltHighPtTripletStepTrackCandidatespLSTCLST = _hltHighPtTripletStepTrackCandidates.clone( src = "hltInitialStepTrackCandidates:pLSTSsLST" ) |
4 changes: 4 additions & 0 deletions
4
...figuration/python/HLT_75e33/modules/hltHighPtTripletStepTrackCutClassifierpLSTCLST_cfi.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
from ..modules.hltHighPtTripletStepTrackCutClassifier_cfi import hltHighPtTripletStepTrackCutClassifier as _hltHighPtTripletStepTrackCutClassifier | ||
hltHighPtTripletStepTrackCutClassifierpLSTCLST = _hltHighPtTripletStepTrackCutClassifier.clone( src = "hltHighPtTripletStepTrackspLSTCLST" ) |
8 changes: 8 additions & 0 deletions
8
...tion/python/HLT_75e33/modules/hltHighPtTripletStepTrackSelectionHighPuritypLSTCLST_cfi.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
from ..modules.hltHighPtTripletStepTrackSelectionHighPurity_cfi import hltHighPtTripletStepTrackSelectionHighPurity as _hltHighPtTripletStepTrackSelectionHighPurity | ||
hltHighPtTripletStepTrackSelectionHighPuritypLSTCLST = _hltHighPtTripletStepTrackSelectionHighPurity.clone( | ||
originalMVAVals = "hltHighPtTripletStepTrackCutClassifierpLSTCLST:MVAValues", | ||
originalQualVals = "hltHighPtTripletStepTrackCutClassifierpLSTCLST:QualityMasks", | ||
originalSource = "hltHighPtTripletStepTrackspLSTCLST" | ||
) |
4 changes: 4 additions & 0 deletions
4
HLTrigger/Configuration/python/HLT_75e33/modules/hltHighPtTripletStepTrackspLSTCLST_cfi.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
from ..modules.hltHighPtTripletStepTracks_cfi import hltHighPtTripletStepTracks as _hltHighPtTripletStepTracks | ||
hltHighPtTripletStepTrackspLSTCLST = _hltHighPtTripletStepTracks.clone( src = "hltHighPtTripletStepTrackCandidatespLSTCLST" ) |
8 changes: 8 additions & 0 deletions
8
HLTrigger/Configuration/python/HLT_75e33/modules/hltInitialStepSeedTracksLST_cfi.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
hltInitialStepSeedTracksLST = cms.EDProducer( | ||
"TrackFromSeedProducer", | ||
src = cms.InputTag("hltInitialStepSeeds"), | ||
beamSpot = cms.InputTag("hltOnlineBeamSpot"), | ||
TTRHBuilder = cms.string("hltESPTTRHBuilderWithoutRefit") | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
...er/Configuration/python/HLT_75e33/modules/hltInitialStepTrackCutClassifierpLSTCLST_cfi.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
from ..modules.hltInitialStepTrackCutClassifier_cfi import hltInitialStepTrackCutClassifier as _hltInitialStepTrackCutClassifier | ||
hltInitialStepTrackCutClassifierpLSTCLST = _hltInitialStepTrackCutClassifier.clone( src = "hltInitialStepTrackspLSTCLST" ) |
4 changes: 4 additions & 0 deletions
4
...ger/Configuration/python/HLT_75e33/modules/hltInitialStepTrackCutClassifierpTTCLST_cfi.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
from ..modules.hltInitialStepTrackCutClassifier_cfi import hltInitialStepTrackCutClassifier as _hltInitialStepTrackCutClassifier | ||
hltInitialStepTrackCutClassifierpTTCLST = _hltInitialStepTrackCutClassifier.clone( src = "hltInitialStepTrackspTTCLST" ) |
8 changes: 8 additions & 0 deletions
8
...figuration/python/HLT_75e33/modules/hltInitialStepTrackSelectionHighPuritypLSTCLST_cfi.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
from ..modules.hltInitialStepTrackSelectionHighPurity_cfi import hltInitialStepTrackSelectionHighPurity as _hltInitialStepTrackSelectionHighPurity | ||
hltInitialStepTrackSelectionHighPuritypLSTCLST = _hltInitialStepTrackSelectionHighPurity.clone( | ||
originalMVAVals = "hltInitialStepTrackCutClassifierpLSTCLST:MVAValues", | ||
originalQualVals = "hltInitialStepTrackCutClassifierpLSTCLST:QualityMasks", | ||
originalSource = "hltInitialStepTrackspLSTCLST" | ||
) |
8 changes: 8 additions & 0 deletions
8
...nfiguration/python/HLT_75e33/modules/hltInitialStepTrackSelectionHighPuritypTTCLST_cfi.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
from ..modules.hltInitialStepTrackSelectionHighPurity_cfi import hltInitialStepTrackSelectionHighPurity as _hltInitialStepTrackSelectionHighPurity | ||
hltInitialStepTrackSelectionHighPuritypTTCLST = _hltInitialStepTrackSelectionHighPurity.clone( | ||
originalMVAVals = "hltInitialStepTrackCutClassifierpTTCLST:MVAValues", | ||
originalQualVals = "hltInitialStepTrackCutClassifierpTTCLST:QualityMasks", | ||
originalSource = "hltInitialStepTrackspTTCLST" | ||
) |
4 changes: 4 additions & 0 deletions
4
HLTrigger/Configuration/python/HLT_75e33/modules/hltInitialStepTracksT5TCLST_cfi.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
from ..modules.hltInitialStepTracks_cfi import hltInitialStepTracks as _hltInitialStepTracks | ||
hltInitialStepTracksT5TCLST = _hltInitialStepTracks.clone( src = "hltInitialStepTrackCandidates:t5TCsLST" ) |
4 changes: 4 additions & 0 deletions
4
HLTrigger/Configuration/python/HLT_75e33/modules/hltInitialStepTrackspLSTCLST_cfi.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
from ..modules.hltInitialStepTracks_cfi import hltInitialStepTracks as _hltInitialStepTracks | ||
hltInitialStepTrackspLSTCLST = _hltInitialStepTracks.clone( src = "hltInitialStepTrackCandidates:pLSTCsLST" ) |
4 changes: 4 additions & 0 deletions
4
HLTrigger/Configuration/python/HLT_75e33/modules/hltInitialStepTrackspTTCLST_cfi.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
from ..modules.hltInitialStepTracks_cfi import hltInitialStepTracks as _hltInitialStepTracks | ||
hltInitialStepTrackspTTCLST = _hltInitialStepTracks.clone( src = "hltInitialStepTrackCandidates:pTTCsLST" ) |
18 changes: 18 additions & 0 deletions
18
HLTrigger/Configuration/python/HLT_75e33/modules/hltLST_cfi.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
hltLST = cms.EDProducer('LSTProducer@alpaka', | ||
pixelSeedInput = cms.InputTag('hltPixelSeedInputLST'), | ||
phase2OTHitsInput = cms.InputTag('hltPhase2OTHitsInputLST'), | ||
verbose = cms.bool(False), | ||
nopLSDupClean = cms.bool(False), | ||
tcpLSTriplets = cms.bool(False), | ||
mightGet = cms.optional.untracked.vstring, | ||
alpaka = cms.untracked.PSet( | ||
backend = cms.untracked.string('') | ||
) | ||
) | ||
|
||
from Configuration.ProcessModifiers.trackingLST_cff import trackingLST | ||
from Configuration.ProcessModifiers.seedingLST_cff import seedingLST | ||
(seedingLST & trackingLST).toModify(hltLST, nopLSDupClean = True, | ||
tcpLSTriplets = True ) |
6 changes: 6 additions & 0 deletions
6
HLTrigger/Configuration/python/HLT_75e33/modules/hltPhase2OTHitsInputLST_cfi.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
hltPhase2OTHitsInputLST = cms.EDProducer('LSTPhase2OTHitsInputProducer', | ||
phase2OTRecHits = cms.InputTag('hltSiPhase2RecHits'), | ||
mightGet = cms.optional.untracked.vstring | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
HLTrigger/Configuration/python/HLT_75e33/modules/hltPixelSeedInputLST_cfi.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
hltPixelSeedInputLST = cms.EDProducer('LSTPixelSeedInputProducer', | ||
beamSpot = cms.InputTag('hltOnlineBeamSpot'), | ||
seedTracks = cms.VInputTag( | ||
'hltInitialStepSeedTracksLST', | ||
'hltHighPtTripletStepSeedTracksLST' | ||
) | ||
) | ||
|
||
_hltPixelSeedInputLSTSingleIterPatatrack = hltPixelSeedInputLST.clone( | ||
seedTracks = ['hltInitialStepSeedTracksLST'] | ||
) | ||
|
||
from Configuration.ProcessModifiers.singleIterPatatrack_cff import singleIterPatatrack | ||
singleIterPatatrack.toReplaceWith(hltPixelSeedInputLST, _hltPixelSeedInputLSTSingleIterPatatrack) |
11 changes: 9 additions & 2 deletions
11
HLTrigger/Configuration/python/HLT_75e33/modules/hltSiPhase2Clusters_cfi.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
from RecoLocalTracker.SiPhase2Clusterizer.phase2TrackerClusterizer_cfi import siPhase2Clusters as _siPhase2Clusters | ||
hltSiPhase2Clusters = _siPhase2Clusters.clone() | ||
# Clusterizer options | ||
hltSiPhase2Clusters = cms.EDProducer('Phase2TrackerClusterizer', | ||
src = cms.InputTag("mix", "Tracker"), | ||
maxClusterSize = cms.uint32(0), # was 8 | ||
maxNumberClusters = cms.uint32(0) | ||
) | ||
|
||
from Configuration.ProcessModifiers.premix_stage2_cff import premix_stage2 | ||
premix_stage2.toModify(hltSiPhase2Clusters, src = "mixData:Tracker") |
7 changes: 7 additions & 0 deletions
7
HLTrigger/Configuration/python/HLT_75e33/modules/hltSiPhase2RecHits_cfi.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
# RecHits options | ||
hltSiPhase2RecHits = cms.EDProducer("Phase2TrackerRecHits", | ||
src = cms.InputTag("hltSiPhase2Clusters"), | ||
Phase2StripCPE = cms.ESInputTag("phase2StripCPEESProducer", "Phase2StripCPE") | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.