From 0445f1cc7a0f8a21ee5f02c5482051cabd642491 Mon Sep 17 00:00:00 2001 From: Johannes Josef Junggeburth <johannes.josef.junggeburth@CERN.CH> Date: Mon, 18 Oct 2021 15:33:48 +0200 Subject: [PATCH] Fix StopOnFailure property --- .../TrigConfiguration/TrigConfxAOD/src/xAODConfigSvc.cxx | 8 ++------ .../TrigConfiguration/TrigConfxAOD/src/xAODConfigSvc.h | 6 +++--- 2 files changed, 5 insertions(+), 9 deletions(-) diff --git a/Trigger/TrigConfiguration/TrigConfxAOD/src/xAODConfigSvc.cxx b/Trigger/TrigConfiguration/TrigConfxAOD/src/xAODConfigSvc.cxx index da197dc1e2fe..7a2269a6322f 100644 --- a/Trigger/TrigConfiguration/TrigConfxAOD/src/xAODConfigSvc.cxx +++ b/Trigger/TrigConfiguration/TrigConfxAOD/src/xAODConfigSvc.cxx @@ -25,13 +25,9 @@ namespace TrigConf { xAODConfigSvc::xAODConfigSvc( const std::string& name, ISvcLocator* svcLoc ) - : base_class( name, svcLoc ), - m_stopOnFailure( true ), m_isInFailure( false ), + : base_class( name, svcLoc ), m_tmcAux( nullptr ), m_tmc( nullptr ), m_menu(), - m_ctpConfig(), m_chainList(), m_sequenceList(), m_bgSet(), - m_metaStore( "InputMetaDataStore", name ), - m_triggerMenuContainerAvailable( false ), - m_menuJSONContainerAvailable( false ) { + m_ctpConfig(), m_chainList(), m_sequenceList(), m_bgSet() { } diff --git a/Trigger/TrigConfiguration/TrigConfxAOD/src/xAODConfigSvc.h b/Trigger/TrigConfiguration/TrigConfxAOD/src/xAODConfigSvc.h index 6790ddf8286c..006f4a284669 100644 --- a/Trigger/TrigConfiguration/TrigConfxAOD/src/xAODConfigSvc.h +++ b/Trigger/TrigConfiguration/TrigConfxAOD/src/xAODConfigSvc.h @@ -233,7 +233,7 @@ namespace TrigConf { Gaudi::Property<bool> m_stopOnFailure{this, "StopOnFailure", true, "Flag for stopping the job in case of a failure"}; /// Internal state of the service - bool m_isInFailure; + bool m_isInFailure{false}; /// /// @name The configuration objects copied from all input files. R1 and R2 AOD @@ -295,9 +295,9 @@ namespace TrigConf { ServiceHandle< StoreGateSvc > m_metaStore{this, "MetaDataStore", "InputMetaDataStore"}; /// Is decoded R2 format data available? - bool m_triggerMenuContainerAvailable; + bool m_triggerMenuContainerAvailable{false}; /// Is decoded R3 format data available? - bool m_menuJSONContainerAvailable; + bool m_menuJSONContainerAvailable{false}; }; // class xAODConfigSvc -- GitLab