Skip to content
Snippets Groups Projects
Commit 659ff9c1 authored by Guillaume Unal's avatar Guillaume Unal Committed by Graeme Stewart
Browse files

change Warning message to Info in LArCellHVCorr (LArCellRec-02-13-15)

        * src/LArCellHVCorr.cxx  change Warning message to Info in case difference of HV correction <0.9
           to avoid many warnings after fix for EMECPS HV mapping
        * tag LArCellRec-02-13-15


Former-commit-id: cba2a21d
parent da0832bf
No related branches found
No related tags found
No related merge requests found
...@@ -89,8 +89,9 @@ float LArCellHVCorr::getCorrection(const Identifier id) { ...@@ -89,8 +89,9 @@ float LArCellHVCorr::getCorrection(const Identifier id) {
if (hvonline>0. && hvonline<100.) hvcorr = hvcorr/hvonline; if (hvonline>0. && hvonline<100.) hvcorr = hvcorr/hvonline;
} }
if (hvcorr<0.9) { if (hvcorr<0.9 ) {
ATH_MSG_WARNING( "HV corr for cell with id " << id.get_identifier32().get_compact() << " = " << hvcorr ); if (hvcorr<0.4) ATH_MSG_WARNING( "HV corr for cell with id " << id.get_identifier32().get_compact() << " = " << hvcorr );
else ATH_MSG_INFO( "HV corr for cell with id " << id.get_identifier32().get_compact() << " = " << hvcorr );
} }
......
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