Skip to content
Snippets Groups Projects
Commit b402bdc0 authored by Stewart Martin-Haugh's avatar Stewart Martin-Haugh
Browse files

Move to unordered_map and add reserve()

parent eb24eb1f
No related branches found
No related tags found
9 merge requests!69091Fix correlated smearing bug in JER in JetUncertainties in 22.0,!58791DataQualityConfigurations: Modify L1Calo config for web display,!51674Fixing hotSpotInHIST for Run3 HIST,!50012RecExConfig: Adjust log message levels from GetRunNumber and GetLBNumber,!46784MuonCondInterface: Enable thread-safety checking.,!46776Updated LArMonitoring config file for WD to match new files produced using MT,!46538Draft: Added missing xAOD::TrigConfKeys from DESDM_MCP,!46514TGC Digitization: Implementation of signal propagation time between the sensor edge and ASD,!46388Move to unordered_map and add reserve() to jFEX - part of ATR-24078
......@@ -88,12 +88,12 @@ namespace LVL1 {
SG::WriteHandleKey< xAOD::jFexSumETRoIContainer> m_jFexSumETOutKey {this,"Key_jFexSumETOutputContainer","L1_jFexSumETRoI","Output jFexEDM SumET container"};
SG::WriteHandleKey< xAOD::jFexMETRoIContainer> m_jFexMETOutKey {this,"Key_jFexMETOutputContainer","L1_jFexMETRoI","Output jFexEDM Met container"};
std::map<int,jTower> m_jTowersColl;
std::map<uint8_t, std::vector<std::vector<uint32_t>> > m_allSmallRJetTobs;
std::map<uint8_t, std::vector<std::vector<uint32_t>> > m_allLargeRJetTobs;
std::map<uint8_t, std::vector<std::vector<uint32_t>> > m_alltauTobs;
std::map<uint8_t, std::vector<std::vector<uint32_t>> > m_allsumEtTobs;
std::map<uint8_t, std::vector<std::vector<uint32_t>> > m_allMetTobs;
std::unordered_map<int,jTower> m_jTowersColl;
std::unordered_map<uint8_t, std::vector<std::vector<uint32_t>> > m_allSmallRJetTobs;
std::unordered_map<uint8_t, std::vector<std::vector<uint32_t>> > m_allLargeRJetTobs;
std::unordered_map<uint8_t, std::vector<std::vector<uint32_t>> > m_alltauTobs;
std::unordered_map<uint8_t, std::vector<std::vector<uint32_t>> > m_allsumEtTobs;
std::unordered_map<uint8_t, std::vector<std::vector<uint32_t>> > m_allMetTobs;
};
} // end of namespace
......
This diff is collapsed.
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