Skip to content

Commit a5a92cd

Browse files
committed
HLT menu development for 13_0_X (branch: 13_3_X)
Development of HLT menus for `CMSSW_13_0_X`. This update includes the integration of the following JIRA tickets. - [CMSHLT-2820](https://its.cern.ch/jira/browse/CMSHLT-2820): [EXO] tighter isolation cut on L2Taus in displaced-tau trigger (and addition of backup trigger) - [CMSHLT-2836](https://its.cern.ch/jira/browse/CMSHLT-2836): [TSG] addition of looser L1T seeds to dilepton Scouting triggers - [CMSHLT-2862](https://its.cern.ch/jira/browse/CMSHLT-2862): [TRK,ECAL] use only CPU products in CPU branch of `DQMGPUvsCPU` triggers - [CMSHLT-2867](https://its.cern.ch/jira/browse/CMSHLT-2867): [EXO] remove Tracker-HV filters in calo-only LLP triggers - [CMSHLT-2872](https://its.cern.ch/jira/browse/CMSHLT-2872): [SMP] looser DiTau trigger for W-3pi search (plus control trigger) - [CMSHLT-2873](https://its.cern.ch/jira/browse/CMSHLT-2873): [AlCa] set smartPS=2 for `HLT_Physics_v` in `ExpressPhysics` PD - [CMSHLT-2874](https://its.cern.ch/jira/browse/CMSHLT-2874): [EXO,HIG] new VBF-parking triggers without PFJet-CHF cut - [CMSHLT-2875](https://its.cern.ch/jira/browse/CMSHLT-2875): [EXO] triggers for displaced mu-tau and e-tau final states - [CMSHLT-2877](https://its.cern.ch/jira/browse/CMSHLT-2877): [GEM] save GEM `FEDRawData` in `RPCMON` stream - [CMSHLT-2878](https://its.cern.ch/jira/browse/CMSHLT-2878): [TRK] add pixel-doublet-recovery iteration to standard tracking sequence, and disable track-looper reconstruction
1 parent 1438ec3 commit a5a92cd

15 files changed

+9627
-1030
lines changed

HLTrigger/Configuration/python/HLT_2023v12_cff.py

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6148,19 +6148,6 @@
61486148
fragment.siPixelGainCalibrationForHLTGPU = cms.ESProducer( "SiPixelGainCalibrationForHLTGPUESProducer",
61496149
appendToDataLabel = cms.string( "" )
61506150
)
6151-
fragment.siPixelQualityESProducer = cms.ESProducer( "SiPixelQualityESProducer",
6152-
siPixelQualityLabel = cms.string( "" ),
6153-
siPixelQualityLabel_RawToDigi = cms.string( "" ),
6154-
ListOfRecordToMerge = cms.VPSet(
6155-
cms.PSet( record = cms.string( "SiPixelQualityFromDbRcd" ),
6156-
tag = cms.string( "" )
6157-
),
6158-
cms.PSet( record = cms.string( "SiPixelDetVOffRcd" ),
6159-
tag = cms.string( "" )
6160-
)
6161-
),
6162-
appendToDataLabel = cms.string( "" )
6163-
)
61646151
fragment.siPixelROCsStatusAndMappingWrapperESProducer = cms.ESProducer( "SiPixelROCsStatusAndMappingWrapperESProducer",
61656152
ComponentName = cms.string( "" ),
61666153
CablingMapLabel = cms.string( "" ),

HLTrigger/Configuration/python/HLT_FULL_cff.py

Lines changed: 2150 additions & 209 deletions
Large diffs are not rendered by default.

HLTrigger/Configuration/python/HLT_GRun_cff.py

Lines changed: 2141 additions & 214 deletions
Large diffs are not rendered by default.

HLTrigger/Configuration/python/HLT_HIon_cff.py

Lines changed: 105 additions & 29 deletions
Large diffs are not rendered by default.

HLTrigger/Configuration/python/HLT_PIon_cff.py

Lines changed: 4 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# hltGetConfiguration /dev/CMSSW_13_0_0/PIon --cff --data --type PIon
22

3-
# /dev/CMSSW_13_0_0/PIon/V140 (CMSSW_13_0_2)
3+
# /dev/CMSSW_13_0_0/PIon/V152 (CMSSW_13_0_2)
44

55
import FWCore.ParameterSet.Config as cms
66

@@ -12,7 +12,7 @@
1212
fragment.ProcessAcceleratorCUDA = ProcessAcceleratorCUDA()
1313

1414
fragment.HLTConfigVersion = cms.PSet(
15-
tableName = cms.string('/dev/CMSSW_13_0_0/PIon/V140')
15+
tableName = cms.string('/dev/CMSSW_13_0_0/PIon/V152')
1616
)
1717

1818
fragment.HLTIter0PSetTrajectoryBuilderIT = cms.PSet(
@@ -58,7 +58,7 @@
5858
lostHitPenalty = cms.double( 30.0 ),
5959
requireSeedHitsInRebuild = cms.bool( True ),
6060
TTRHBuilder = cms.string( "hltESPTTRHBWithTrackAngle" ),
61-
maxPtForLooperReconstruction = cms.double( 0.7 ),
61+
maxPtForLooperReconstruction = cms.double( 0.0 ),
6262
propagatorAlong = cms.string( "PropagatorWithMaterialParabolicMf" ),
6363
minNrOfHitsForRebuild = cms.int32( 5 ),
6464
alwaysUseInvalidHits = cms.bool( False ),
@@ -161,7 +161,7 @@
161161
lostHitPenalty = cms.double( 30.0 ),
162162
requireSeedHitsInRebuild = cms.bool( True ),
163163
TTRHBuilder = cms.string( "hltESPTTRHBWithTrackAngle" ),
164-
maxPtForLooperReconstruction = cms.double( 0.7 ),
164+
maxPtForLooperReconstruction = cms.double( 0.0 ),
165165
propagatorAlong = cms.string( "PropagatorWithMaterialParabolicMf" ),
166166
minNrOfHitsForRebuild = cms.int32( 5 ),
167167
alwaysUseInvalidHits = cms.bool( False ),
@@ -3537,19 +3537,6 @@
35373537
fragment.siPixelGainCalibrationForHLTGPU = cms.ESProducer( "SiPixelGainCalibrationForHLTGPUESProducer",
35383538
appendToDataLabel = cms.string( "" )
35393539
)
3540-
fragment.siPixelQualityESProducer = cms.ESProducer( "SiPixelQualityESProducer",
3541-
siPixelQualityLabel = cms.string( "" ),
3542-
siPixelQualityLabel_RawToDigi = cms.string( "" ),
3543-
ListOfRecordToMerge = cms.VPSet(
3544-
cms.PSet( record = cms.string( "SiPixelQualityFromDbRcd" ),
3545-
tag = cms.string( "" )
3546-
),
3547-
cms.PSet( record = cms.string( "SiPixelDetVOffRcd" ),
3548-
tag = cms.string( "" )
3549-
)
3550-
),
3551-
appendToDataLabel = cms.string( "" )
3552-
)
35533540
fragment.siPixelROCsStatusAndMappingWrapperESProducer = cms.ESProducer( "SiPixelROCsStatusAndMappingWrapperESProducer",
35543541
ComponentName = cms.string( "" ),
35553542
CablingMapLabel = cms.string( "" ),

0 commit comments

Comments
 (0)