Skip to content
Snippets Groups Projects
Commit b546bfc5 authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

Merge branch 'clang.PixelMonitoring-20201215' into 'master'

PixelMonitoring+ZdcConditions: Fix clang warnings.

See merge request atlas/athena!39224
parents e0a48add 803cbe8b
No related branches found
No related tags found
No related merge requests found
...@@ -74,7 +74,6 @@ public: ...@@ -74,7 +74,6 @@ public:
int m_channel_db[4][64]; int m_channel_db[4][64];
int m_hv_db[4][64]; int m_hv_db[4][64];
int m_ppm_db[16]; int m_ppm_db[16];
int m_crate_db[8];
int m_crate_index[4]; int m_crate_index[4];
int m_ncrate; int m_ncrate;
//int m_crate_lookup[2][3][2]; //int m_crate_lookup[2][3][2];
......
...@@ -137,8 +137,8 @@ StatusCode PixelAthErrorMonAlg::fillHistograms( const EventContext& ctx ) const ...@@ -137,8 +137,8 @@ StatusCode PixelAthErrorMonAlg::fillHistograms( const EventContext& ctx ) const
is_fei4 = false; is_fei4 = false;
} }
// flagging/counting categorized errors per module. // flagging/counting categorized errors per module.
bool has_err_cat[ErrorCategory::COUNT][nFEIBL2D] = {false}; bool has_err_cat[ErrorCategory::COUNT][nFEIBL2D] = {{false}};
int nerrors_cat_rodmod[ErrorCategoryRODMOD::COUNT][nFEIBL2D] = {0}; int nerrors_cat_rodmod[ErrorCategoryRODMOD::COUNT][nFEIBL2D] = {{0}};
// count number of words w/ MCC/FE flags per module // count number of words w/ MCC/FE flags per module
unsigned int num_femcc_errwords = 0; unsigned int num_femcc_errwords = 0;
......
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