Skip to content
Snippets Groups Projects
Commit c6334793 authored by Vakhtang Tsulaia's avatar Vakhtang Tsulaia
Browse files

Merge branch 'hlt_ioptsvc' into 'master'

HLT: Fixes for IOptionsSvc migration

See merge request !36271
parents e739c48f 33a22d03
6 merge requests!58791DataQualityConfigurations: Modify L1Calo config for web display,!46784MuonCondInterface: Enable thread-safety checking.,!46776Updated LArMonitoring config file for WD to match new files produced using MT,!45405updated ART test cron job,!42417Draft: DIRE and VINCIA Base Fragments for Pythia 8.3,!36271HLT: Fixes for IOptionsSvc migration
......@@ -44,7 +44,7 @@ class TrigApp(object):
for p in jobOptSvc.items():
name = p._0
value = p._1
client, prop = name.split('.',1)
client, prop = name.rsplit('.',1)
if reClient.match(client) and reProp.match(prop):
self.log.info("Changing %s.%s from '%s' to '%s'", client, prop, value, newValue)
iprop = iProperty(client)
......
......@@ -109,7 +109,8 @@ StatusCode HltROBDataProviderSvc::initialize()
if ((jobOptionsSvc.retrieve()).isFailure()) {
ATH_MSG_ERROR("Could not find JobOptionsSvc");
} else {
if (m_enabledROBs.fromString(jobOptionsSvc->get("DataFlowConfig.DF_Enabled_ROB_IDs","[]")).isSuccess()) {
if (jobOptionsSvc->has("DataFlowConfig.DF_Enabled_ROB_IDs") &&
m_enabledROBs.fromString(jobOptionsSvc->get("DataFlowConfig.DF_Enabled_ROB_IDs")).isSuccess()) {
robOKSconfigFound = true;
ATH_MSG_INFO(" ---> Read from OKS = "
<< MSG::dec << m_enabledROBs.value().size() << " enabled ROB IDs.");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment