From 4b1a0d970c0c0e164a52acf4d48ae48e5166b67c Mon Sep 17 00:00:00 2001 From: Kevin Pedro Date: Mon, 6 Dec 2021 19:57:49 +0100 Subject: [PATCH] handle FakeHLT steps in trackingOnly workflows --- .../python/upgradeWorkflowComponents.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Configuration/PyReleaseValidation/python/upgradeWorkflowComponents.py b/Configuration/PyReleaseValidation/python/upgradeWorkflowComponents.py index b9bb910b36d09..97bdf500f278f 100644 --- a/Configuration/PyReleaseValidation/python/upgradeWorkflowComponents.py +++ b/Configuration/PyReleaseValidation/python/upgradeWorkflowComponents.py @@ -230,6 +230,8 @@ def setup__(self, step, stepName, stepDict, k, properties): 'HARVESTGlobal', 'RecoNano', 'HARVESTNano', + 'RecoFakeHLT', + 'HARVESTFakeHLT', ], suffix = '_trackingOnly', offset = 0.1, @@ -251,6 +253,7 @@ def condition_(self, fragment, stepList, key, hasHarvest): upgradeWFs['trackingRun2'] = UpgradeWorkflow_trackingRun2( steps = [ 'Reco', + 'RecoFakeHLT', ], suffix = '_trackingRun2', offset = 0.2, @@ -267,6 +270,8 @@ def condition_(self, fragment, stepList, key, hasHarvest): steps = [ 'Reco', 'HARVEST', + 'RecoFakeHLT', + 'HARVESTFakeHLT', ], suffix = '_trackingOnlyRun2', offset = 0.3, @@ -282,6 +287,7 @@ def condition_(self, fragment, stepList, key, hasHarvest): upgradeWFs['trackingLowPU'] = UpgradeWorkflow_trackingLowPU( steps = [ 'Reco', + 'RecoFakeHLT', ], suffix = '_trackingLowPU', offset = 0.4, @@ -301,6 +307,8 @@ def condition_(self, fragment, stepList, key, hasHarvest): 'HARVESTGlobal', 'RecoNano', 'HARVESTNano', + 'RecoFakeHLT', + 'HARVESTFakeHLT', ], suffix = '_pixelTrackingOnly', offset = 0.5, @@ -324,6 +332,8 @@ def condition_(self, fragment, stepList, key, hasHarvest): 'Reco', 'RecoGlobal', 'RecoNano', + 'RecoFakeHLT', + 'HARVESTFakeHLT', ], suffix = '_trackingMkFit', offset = 0.7,