From b78e78adaea12240d8df9641f45cdc46cfcdc54f Mon Sep 17 00:00:00 2001 From: scott snyder <snyder@bnl.gov> Date: Mon, 13 Jul 2020 21:47:54 +0200 Subject: [PATCH] InDetRecExample: Clean up conditions dependencies. If we haven't set up the CablingMap folders, then PixelCablingCondAlg shouldn't depend on them. (This is for the old configuration; the new configuration should be ok.) --- .../InDetRecExample/share/InDetRecConditionsAccess.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/InnerDetector/InDetExample/InDetRecExample/share/InDetRecConditionsAccess.py b/InnerDetector/InDetExample/InDetRecExample/share/InDetRecConditionsAccess.py index 9c98a1940e2..51b2b33fbd0 100644 --- a/InnerDetector/InDetExample/InDetRecExample/share/InDetRecConditionsAccess.py +++ b/InnerDetector/InDetExample/InDetRecExample/share/InDetRecConditionsAccess.py @@ -183,9 +183,13 @@ if DetFlags.pixel_on(): if not hasattr(condSeq, 'PixelCablingCondAlg'): from PixelConditionsAlgorithms.PixelConditionsAlgorithmsConf import PixelCablingCondAlg - condSeq += PixelCablingCondAlg(name="PixelCablingCondAlg", - MappingFile=IdMappingDat, - RodIDForSingleLink40=rodIDForSingleLink40) + alg = PixelCablingCondAlg(name="PixelCablingCondAlg", + MappingFile=IdMappingDat, + RodIDForSingleLink40=rodIDForSingleLink40) + if (not conddb.folderRequested("/PIXEL/CablingMap") and + not conddb.folderRequested("/PIXEL/Onl/CablingMap")): + alg.ReadKey = '' + condSeq += alg if not athenaCommonFlags.isOnline(): if not conddb.folderRequested('/PIXEL/PixdEdx'): -- GitLab