From 06105aa499eeabce3f56aeaebd083a56c54807a7 Mon Sep 17 00:00:00 2001 From: scott snyder <snyder@bnl.gov> Date: Sun, 27 Oct 2019 20:27:51 +0100 Subject: [PATCH] InDetRecExample: Disable use of TRT_Phase for monitoring with collisions. TRT_Phase data is not produced during collisions, but monitoring was trying to read it. Disabled. Previously this wasn't noticed, but the TRT_Phase access was recently changed to use a handle, and it is now giving errors in the debug build. --- .../InDetRecExample/python/InDetJobProperties.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/InnerDetector/InDetExample/InDetRecExample/python/InDetJobProperties.py b/InnerDetector/InDetExample/InDetRecExample/python/InDetJobProperties.py index cc68ae9ddc5..e21744cde96 100644 --- a/InnerDetector/InDetExample/InDetRecExample/python/InDetJobProperties.py +++ b/InnerDetector/InDetExample/InDetRecExample/python/InDetJobProperties.py @@ -1,4 +1,4 @@ -# Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration +# Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration @@ -1580,8 +1580,8 @@ class InDetJobProperties(JobPropertyContainer): # --- set default track configuration self.checkThenSet(self.doxKalman , False) self.checkThenSet(self.doiPatRec , False) - # --- enable phase for collisions by default - self.checkThenSet(self.doTRTPhaseCalculation , True ) + # --- disable phase for collisions by default + self.checkThenSet(self.doTRTPhaseCalculation , False ) # --- new setup for MinBias tracking if self.doMinBias(): -- GitLab