Skip to content
Snippets Groups Projects
Commit 88691d5b authored by Will Leight's avatar Will Leight
Browse files

Fixed wrong bool value in the initialization of the sector logic ReadHandleKeys.

Former-commit-id: a75d57d5
parent 55311859
No related branches found
No related tags found
No related merge requests found
......@@ -86,7 +86,7 @@ StatusCode RpcLv1RawDataEfficiency::initialize()
ATH_CHECK(m_rpcCoinKey.initialize());
ATH_CHECK(m_eventInfo.initialize());
ATH_CHECK(m_sectorLogicContainerKey.initialize(m_isMC));
ATH_CHECK(m_sectorLogicContainerKey.initialize(!m_isMC));
// Ignore the checking code
ManagedMonitorToolBase::initialize().ignore();
......
......@@ -69,7 +69,7 @@ StatusCode RpcLv1RawDataSectorLogic::initialize()
m_Tower_in = 0 ;
m_in_sectorid = 0 ;
ATH_CHECK(m_sectorLogicContainerKey.initialize(m_isMC));
ATH_CHECK(m_sectorLogicContainerKey.initialize(!m_isMC));
ATH_CHECK(m_eventInfo.initialize());
// Ignore the checking code
......
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