Skip to content
Snippets Groups Projects
Commit c59fa469 authored by Ian Allan Connelly's avatar Ian Allan Connelly
Browse files

Another error missed in conflict resolution

parent 2a1c0bbe
No related branches found
No related tags found
9 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,!28528Revert 63f845ae,!27054Atr20369 210,!26342Monopole: Handle fractionally charged particles,!20174Muon BS to RDO caching for multi-threading - CSC technology
......@@ -55,13 +55,13 @@ StatusCode MuonCacheCreator::execute (const EventContext& ctx) const {
}
// Create the MDT cache container
auto maxHashMDTs = m_mdtIdHelper->stationNameIndex("BME") != -1 ? m_mdtIdHelper->detectorElement_hash_max() : m_mdtIdHelper->module_hash_max();
ATH_CHECK(CreateContainer(m_MdtCsmCacheKey, maxHashMDTs, ctx));
ATH_CHECK(createContainer(m_MdtCsmCacheKey, maxHashMDTs, ctx));
// Create the CSC cache container
ATH_CHECK(CreateContainer(m_CscCacheKey, m_cscIdHelper->module_hash_max(), ctx));
ATH_CHECK(createContainer(m_CscCacheKey, m_cscIdHelper->module_hash_max(), ctx));
// Create the RPC cache container
ATH_CHECK(CreateContainer(m_RpcCacheKey, m_rpcIdHelper->module_hash_max(), ctx));
ATH_CHECK(createContainer(m_RpcCacheKey, m_rpcIdHelper->module_hash_max(), ctx));
// Create the TGC cache container
ATH_CHECK(CreateContainer(m_TgcCacheKey, m_tgcIdHelper->module_hash_max(), ctx));
ATH_CHECK(createContainer(m_TgcCacheKey, m_tgcIdHelper->module_hash_max(), ctx));
ATH_MSG_INFO("Created cache container " << m_MdtCsmCacheKey);
ATH_MSG_INFO("Created cache container " << m_CscCacheKey);
......
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