Skip to content
Snippets Groups Projects
Commit dde82eb8 authored by Edward Moyse's avatar Edward Moyse
Browse files

Merge branch 'maskWAR' into 'master'

Masking two jFEX warnings

See merge request atlas/athena!61515
parents 090518c4 8cb4397e
No related branches found
No related tags found
1 merge request!61515Masking two jFEX warnings
......@@ -134,7 +134,7 @@ StatusCode jFexEmulatedTowers::execute(const EventContext& ctx) const {
//check that the SCell Identifier exists in the map
auto it_ScellID2ptr = map_ScellID2ptr.find(SCellID);
if(it_ScellID2ptr == map_ScellID2ptr.end()) {
ATH_MSG_WARNING("Scell ID: 0x"<<std::hex<< (SCellID >> 32) <<std::dec<< " not found in the CaloCell Container, skipping");
ATH_MSG_DEBUG("Scell ID: 0x"<<std::hex<< (SCellID >> 32) <<std::dec<< " not found in the CaloCell Container, skipping");
continue;
}
......
......@@ -157,7 +157,7 @@ StatusCode jFexTower2SCellDecorator::execute(const EventContext& ctx) const {
//check that the SCell Identifier exists in the map
auto it_ScellID2ptr = map_ScellID2ptr.find(SCellID);
if(it_ScellID2ptr == map_ScellID2ptr.end()) {
ATH_MSG_WARNING("Scell ID: 0x"<<std::hex<<(SCellID >> 32)<<std::dec<< " not found on map map_ScellID2ptr");
ATH_MSG_DEBUG("Scell ID: 0x"<<std::hex<<(SCellID >> 32)<<std::dec<< " not found on map map_ScellID2ptr");
scEt.push_back(0);
scEta.push_back(-99);
......
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