From 2787bd3b311dd66b4369226497285cb16b0d04b1 Mon Sep 17 00:00:00 2001 From: mmusich Date: Wed, 22 May 2024 10:13:54 +0200 Subject: [PATCH] make era and Tier0 scenarios for Run3_2024 inherit directly from Run3 --- Configuration/DataProcessing/python/RecoTLR.py | 2 +- Configuration/Eras/python/Era_Run3_2024_cff.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Configuration/DataProcessing/python/RecoTLR.py b/Configuration/DataProcessing/python/RecoTLR.py index 5eb8b3576eb1a..997fe5f31d00b 100644 --- a/Configuration/DataProcessing/python/RecoTLR.py +++ b/Configuration/DataProcessing/python/RecoTLR.py @@ -97,7 +97,7 @@ def customisePostEra_Run3_2023(process): def customisePostEra_Run3_2024(process): #start with a repeat of 2023 - customisePostEra_Run3_2023(process) + customisePostEra_Run3(process) return process def customisePostEra_Run3_express_trackingOnly(process): diff --git a/Configuration/Eras/python/Era_Run3_2024_cff.py b/Configuration/Eras/python/Era_Run3_2024_cff.py index 2a3224b13b01c..6dc5f3a1b6e03 100644 --- a/Configuration/Eras/python/Era_Run3_2024_cff.py +++ b/Configuration/Eras/python/Era_Run3_2024_cff.py @@ -1,5 +1,5 @@ import FWCore.ParameterSet.Config as cms -from Configuration.Eras.Era_Run3_2023_cff import Run3_2023 +from Configuration.Eras.Era_Run3_cff import Run3 -Run3_2024 = cms.ModifierChain(Run3_2023) +Run3_2024 = cms.ModifierChain(Run3)