Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HLT menu development for 14_0_X (3/N) [14_1_X] #44302

Merged
merged 6 commits into from
Mar 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions HLTrigger/Configuration/python/HLT_2023v12_cff.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
# hltGetConfiguration /frozen/2023/2e34/v1.2/CMSSW_14_0_X/HLT --cff --data --type 2023v12

# /frozen/2023/2e34/v1.2/CMSSW_14_0_X/HLT/V7 (CMSSW_14_0_0)
# /frozen/2023/2e34/v1.2/CMSSW_14_0_X/HLT/V8 (CMSSW_14_0_1_HLT1)

import FWCore.ParameterSet.Config as cms

from HeterogeneousCore.CUDACore.SwitchProducerCUDA import SwitchProducerCUDA
from HeterogeneousCore.CUDACore.ProcessAcceleratorCUDA import ProcessAcceleratorCUDA

fragment = cms.ProcessFragment( "HLT" )

fragment.ProcessAcceleratorCUDA = ProcessAcceleratorCUDA()
fragment.load("Configuration.StandardSequences.Accelerators_cff")

fragment.HLTConfigVersion = cms.PSet(
tableName = cms.string('/frozen/2023/2e34/v1.2/CMSSW_14_0_X/HLT/V7')
tableName = cms.string("/frozen/2023/2e34/v1.2/CMSSW_14_0_X/HLT/V8")
)

fragment.transferSystem = cms.PSet(
Expand Down Expand Up @@ -16505,7 +16504,6 @@
recoEcalCandidateProducer = cms.InputTag( "hltEgammaCandidatesUnseeded" ),
ecalRechitEB = cms.InputTag( 'hltEcalRecHit','EcalRecHitsEB' ),
ecalRechitEE = cms.InputTag( 'hltEcalRecHit','EcalRecHitsEE' ),
isIeta = cms.bool( True ),
multThresEB = cms.double( 1.0 ),
multThresEE = cms.double( 1.25 )
)
Expand Down Expand Up @@ -18015,7 +18013,6 @@
recoEcalCandidateProducer = cms.InputTag( "hltEgammaCandidates" ),
ecalRechitEB = cms.InputTag( 'hltRechitInRegionsECAL','EcalRecHitsEB' ),
ecalRechitEE = cms.InputTag( 'hltRechitInRegionsECAL','EcalRecHitsEE' ),
isIeta = cms.bool( True ),
multThresEB = cms.double( 1.0 ),
multThresEE = cms.double( 1.25 )
)
Expand Down
9,780 changes: 4,118 additions & 5,662 deletions HLTrigger/Configuration/python/HLT_FULL_cff.py

Large diffs are not rendered by default.

5 changes: 2 additions & 3 deletions HLTrigger/Configuration/python/HLT_Fake1_cff.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
# hltGetConfiguration /dev/CMSSW_14_0_0/Fake1 --cff --data --type Fake1

# /dev/CMSSW_14_0_0/Fake1/V6 (CMSSW_14_0_0)
# /dev/CMSSW_14_0_0/Fake1/V8 (CMSSW_14_0_1_HLT1)

import FWCore.ParameterSet.Config as cms

fragment = cms.ProcessFragment( "HLT" )


fragment.HLTConfigVersion = cms.PSet(
tableName = cms.string('/dev/CMSSW_14_0_0/Fake1/V6')
tableName = cms.string("/dev/CMSSW_14_0_0/Fake1/V8")
)

fragment.streams = cms.PSet( A = cms.vstring( 'InitialPD' ) )
Expand Down
5 changes: 2 additions & 3 deletions HLTrigger/Configuration/python/HLT_Fake2_cff.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
# hltGetConfiguration /dev/CMSSW_14_0_0/Fake2 --cff --data --type Fake2

# /dev/CMSSW_14_0_0/Fake2/V7 (CMSSW_14_0_0)
# /dev/CMSSW_14_0_0/Fake2/V8 (CMSSW_14_0_1_HLT1)

import FWCore.ParameterSet.Config as cms

fragment = cms.ProcessFragment( "HLT" )


fragment.HLTConfigVersion = cms.PSet(
tableName = cms.string('/dev/CMSSW_14_0_0/Fake2/V7')
tableName = cms.string("/dev/CMSSW_14_0_0/Fake2/V8")
)

fragment.streams = cms.PSet( A = cms.vstring( 'InitialPD' ) )
Expand Down
5 changes: 2 additions & 3 deletions HLTrigger/Configuration/python/HLT_Fake_cff.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
# hltGetConfiguration /dev/CMSSW_14_0_0/Fake --cff --data --type Fake

# /dev/CMSSW_14_0_0/Fake/V6 (CMSSW_14_0_0)
# /dev/CMSSW_14_0_0/Fake/V8 (CMSSW_14_0_1_HLT1)

import FWCore.ParameterSet.Config as cms

fragment = cms.ProcessFragment( "HLT" )


fragment.HLTConfigVersion = cms.PSet(
tableName = cms.string('/dev/CMSSW_14_0_0/Fake/V6')
tableName = cms.string("/dev/CMSSW_14_0_0/Fake/V8")
)

fragment.streams = cms.PSet( A = cms.vstring( 'InitialPD' ) )
Expand Down
Loading