Skip to content
Snippets Groups Projects
Commit a6f005ee authored by Sara Alderweireldt's avatar Sara Alderweireldt
Browse files

Merge branch 'xAOD-wstot-bugfix' into '22.0'

bugfix in eFexEMRoI Wstot calculation

See merge request atlas/athena!53719
parents 3ea63612 f0ce5cf0
No related branches found
No related tags found
No related merge requests found
......@@ -217,7 +217,7 @@ namespace xAOD {
}
float eFexEMRoI_v1::Wstot() const {
if (WstotDenominator() > 0) return (WstotNumerator()/WstotDenominator());
if (WstotDenominator() > 0) return (static_cast<float>(WstotNumerator())/WstotDenominator());
else return -1.;
}
......
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