Skip to content
Snippets Groups Projects
Commit fde98baf authored by Alan Watson's avatar Alan Watson Committed by John Kenneth Anders
Browse files

Fix simple bug in eFexEMRoI_v1.cxx

Fix simple bug in eFexEMRoI_v1.cxx
parent 76b45208
No related branches found
No related tags found
No related merge requests found
......@@ -179,11 +179,11 @@ namespace xAOD {
}
unsigned int eFexEMRoI_v1::RhadThresholds() const {
return (word0() >> s_veto2Bit) & s_veto2Mask;
return (word0() >> s_veto3Bit) & s_veto3Mask;
}
unsigned int eFexEMRoI_v1::WstotThresholds() const {
return (word0() >> s_veto3Bit) & s_veto3Mask;
return (word0() >> s_veto2Bit) & s_veto2Mask;
}
unsigned int eFexEMRoI_v1::bcn4() const {
......
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