Skip to content
Snippets Groups Projects
Commit 90a3df67 authored by David Reikher's avatar David Reikher
Browse files

Fix BDT extraction. Was extracted from wrong word

parent 33d34a8a
No related branches found
No related tags found
No related merge requests found
......@@ -177,7 +177,7 @@ namespace xAOD {
/// Was the BDT algorithm run?
if (tobVersion() != 1) return 0;
/// If the object is not an xTOB this will return 0
return (word1() >> s_bdtScoreBit) & s_bdtScoreMask;
return (word0() >> s_bdtScoreBit) & s_bdtScoreMask;
}
......
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