TrigMuonMonitoring: fix printout
Hello,
An ATH_MSG_INFO
is currently used to printout a StatusCode returned by the matchL2IO_wContainer
method.
I guess the intent was to use ATH_CHECK
, but this is called inside a function that returns a const xAOD::L2CombinedMuon*
, not a StatusCode, so ATH_CHECK
isn't appropriate either.
The StatusCode returned by matchL2IO_wContainer
is now checked with isSuccess
.
Minor code changes were also made.
Closes ATR-25830.
Tagging @cdiez and @anventur .
Cheers, Bertrand