Skip to content
Snippets Groups Projects
Commit f0ce5cf0 authored by Luke Baines's avatar Luke Baines Committed by Sara Alderweireldt
Browse files

bugfix in eFexEMRoI Wstot calculation

bugfix in eFexEMRoI Wstot calculation
parent 1c493137
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