Skip to content
Snippets Groups Projects
Commit b95eb7df authored by Siarhei Harkusha's avatar Siarhei Harkusha
Browse files

TileMonitoring: Fix FPE in Tile TMDB Raw channel monitoring for Run3 (ATLASRECTS-6127)

FPE has been fixed (arrays has been initialized)
 in Tile TMDB Raw channel monitoring algorithm for Run3.
parent 76c426e4
No related branches found
No related tags found
7 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,!41882aligning "tracktwoef_nonrnn_chain" with master branch,!41844TileMonitoring: Fix FPE in Tile TMDB Raw channel monitoring for Run3 (ATLASRECTS-6127)
/* /*
Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
*/ */
// Tile includes // Tile includes
...@@ -96,8 +96,8 @@ StatusCode TileTMDBRawChannelMonitorAlgorithm::fillHistograms( const EventContex ...@@ -96,8 +96,8 @@ StatusCode TileTMDBRawChannelMonitorAlgorithm::fillHistograms( const EventContex
std::vector<float> coinThrModules_1Th[TMDB_NUMBER_BARRELS][1][TMDB_NUMBER_LAYERS]; // (EBAxEBC) x Thresholds x (D5 x D5+D6) std::vector<float> coinThrModules_1Th[TMDB_NUMBER_BARRELS][1][TMDB_NUMBER_LAYERS]; // (EBAxEBC) x Thresholds x (D5 x D5+D6)
std::vector<float> coinThrModules_2Th[TMDB_NUMBER_BARRELS][2][TMDB_NUMBER_LAYERS]; // (EBAxEBC) x Thresholds x (D5 x D5+D6) std::vector<float> coinThrModules_2Th[TMDB_NUMBER_BARRELS][2][TMDB_NUMBER_LAYERS]; // (EBAxEBC) x Thresholds x (D5 x D5+D6)
float TMDB_D6_amplitude[2][64]; // (EBA and EBC) x 64 modules float TMDB_D6_amplitude[2][64] = {{0}}; // (EBA and EBC) x 64 modules
float TMDB_D56_amplitude[2][64]; // (EBA and EBC) x 64 modules float TMDB_D56_amplitude[2][64] = {{0}}; // (EBA and EBC) x 64 modules
SG::ReadHandle<TileRawChannelContainer> rawContainer(m_rawChannelContainerKey, ctx); SG::ReadHandle<TileRawChannelContainer> rawContainer(m_rawChannelContainerKey, ctx);
for (IdentifierHash hash : rawContainer->GetAllCurrentHashes()) { for (IdentifierHash hash : rawContainer->GetAllCurrentHashes()) {
......
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