Skip to content
Snippets Groups Projects
Commit 7a4cae98 authored by Adam Edward Barton's avatar Adam Edward Barton
Browse files

Merge branch 'config.SCT_ConditionsTools-20200618' into 'master'

SCT_ConditionsTools: Allow configuring SCT_ReadoutTool without cabling.

See merge request atlas/athena!33884
parents 88e66118 74018c9b
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,9 @@ SCT_ReadoutTool::SCT_ReadoutTool(const std::string& type, const std::string& nam
StatusCode SCT_ReadoutTool::initialize() {
ATH_MSG_DEBUG("Initialize SCT_ReadoutTool");
// Retrieve cabling
ATH_CHECK(m_cablingTool.retrieve());
if (!m_cablingTool.empty()) {
ATH_CHECK(m_cablingTool.retrieve());
}
// Retrieve SCT helper
ATH_CHECK(detStore()->retrieve(m_sctId, "SCT_ID"));
// Get MessageSvc for SCT_ReadoutData
......
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