diff --git a/Configuration/PyReleaseValidation/python/upgradeWorkflowComponents.py b/Configuration/PyReleaseValidation/python/upgradeWorkflowComponents.py index b7b3573ec3ab7..fa8c0d386ca6d 100644 --- a/Configuration/PyReleaseValidation/python/upgradeWorkflowComponents.py +++ b/Configuration/PyReleaseValidation/python/upgradeWorkflowComponents.py @@ -1336,6 +1336,23 @@ def condition(self, fragment, stepList, key, hasHarvest): offset = 0.75, ) +class UpgradeWorkflow_HLTwDIGI75e33(UpgradeWorkflow): + def setup_(self, step, stepName, stepDict, k, properties): + if 'DigiTrigger' in step: + stepDict[stepName][k] = merge([{'-s':'DIGI:pdigi_valid,L1TrackTrigger,L1,DIGI2RAW,HLT:@relval2026'}, stepDict[step][k]]) + def condition(self, fragment, stepList, key, hasHarvest): + return fragment=="TTbar_14TeV" and '2026' in key +upgradeWFs['HLTwDIGI75e33'] = UpgradeWorkflow_HLTwDIGI75e33( + steps = [ + 'DigiTrigger', + ], + PU = [ + 'DigiTrigger', + ], + suffix = '_HLTwDIGI75e33', + offset = 0.76, +) + class UpgradeWorkflow_Neutron(UpgradeWorkflow): def setup_(self, step, stepName, stepDict, k, properties): if 'GenSim' in step: diff --git a/HLTrigger/Configuration/python/HLT_75e33/modules/siPhase2Clusters_cfi.py b/HLTrigger/Configuration/python/HLT_75e33/modules/siPhase2Clusters_cfi.py index e57a0b18b6b87..05d1886008607 100644 --- a/HLTrigger/Configuration/python/HLT_75e33/modules/siPhase2Clusters_cfi.py +++ b/HLTrigger/Configuration/python/HLT_75e33/modules/siPhase2Clusters_cfi.py @@ -1,7 +1,4 @@ import FWCore.ParameterSet.Config as cms -siPhase2Clusters = cms.EDProducer("Phase2TrackerClusterizer", - maxClusterSize = cms.uint32(0), - maxNumberClusters = cms.uint32(0), - src = cms.InputTag("mix","Tracker") -) +from RecoLocalTracker.SiPhase2Clusterizer.phase2TrackerClusterizer_cfi import siPhase2Clusters as _siPhase2Clusters +siPhase2Clusters = _siPhase2Clusters.clone() diff --git a/HLTrigger/Configuration/python/HLT_75e33/psets/HGCAL_noise_fC_cfi.py b/HLTrigger/Configuration/python/HLT_75e33/psets/HGCAL_noise_fC_cfi.py index ce965dce05188..dc4a4c0368ada 100644 --- a/HLTrigger/Configuration/python/HLT_75e33/psets/HGCAL_noise_fC_cfi.py +++ b/HLTrigger/Configuration/python/HLT_75e33/psets/HGCAL_noise_fC_cfi.py @@ -1,8 +1,4 @@ import FWCore.ParameterSet.Config as cms -HGCAL_noise_fC = cms.PSet( - doseMap = cms.string(''), - scaleByDose = cms.bool(False), - scaleByDoseAlgo = cms.uint32(0), - values = cms.vdouble(0.32041012, 0.384492144, 0.32041012) -) +from SimCalorimetry.HGCalSimProducers.hgcalDigitizer_cfi import HGCAL_noise_fC as _HGCAL_noise_fC +HGCAL_noise_fC = _HGCAL_noise_fC.clone() diff --git a/HLTrigger/Configuration/python/HLT_75e33/psets/HGCAL_noise_heback_cfi.py b/HLTrigger/Configuration/python/HLT_75e33/psets/HGCAL_noise_heback_cfi.py index 4af76e0d4a859..4cccacc8f5e49 100644 --- a/HLTrigger/Configuration/python/HLT_75e33/psets/HGCAL_noise_heback_cfi.py +++ b/HLTrigger/Configuration/python/HLT_75e33/psets/HGCAL_noise_heback_cfi.py @@ -1,8 +1,4 @@ import FWCore.ParameterSet.Config as cms -HGCAL_noise_heback = cms.PSet( - doseMap = cms.string(''), - noise_MIP = cms.double(0.01), - scaleByDose = cms.bool(False), - scaleByDoseAlgo = cms.uint32(0) -) +from SimCalorimetry.HGCalSimProducers.hgcalDigitizer_cfi import HGCAL_noise_heback as _HGCAL_noise_heback +HGCAL_noise_heback = _HGCAL_noise_heback.clone()