From cda31688cba448afcd6f60b3f63c75743fb61996 Mon Sep 17 00:00:00 2001 From: Andrea Bocci Date: Fri, 29 Oct 2021 14:34:33 +0200 Subject: [PATCH] Update customisePixelL1ClusterThresholdForRun2Input to adjust also the GPU producer --- HLTrigger/Configuration/python/customizeHLTforCMSSW.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/HLTrigger/Configuration/python/customizeHLTforCMSSW.py b/HLTrigger/Configuration/python/customizeHLTforCMSSW.py index 09e123bdbe85a..642a204369443 100644 --- a/HLTrigger/Configuration/python/customizeHLTforCMSSW.py +++ b/HLTrigger/Configuration/python/customizeHLTforCMSSW.py @@ -129,6 +129,9 @@ def customisePixelL1ClusterThresholdForRun2Input(process): for producer in producers_by_type(process, "SiPixelClusterProducer"): if hasattr(producer,"ClusterThreshold_L1"): producer.ClusterThreshold_L1 = 2000 + for producer in producers_by_type(process, "SiPixelRawToClusterCUDA"): + if hasattr(producer,"clusterThreshold_layer1"): + producer.clusterThreshold_layer1 = 2000 return process