Skip to content

Commit

Permalink
Fix FG bit indexing bug
Browse files Browse the repository at this point in the history
  • Loading branch information
christopheralanwest committed Oct 12, 2018
1 parent e183e6d commit 08444b5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,7 @@ void HcalTriggerPrimitiveAlgo::analyzeHFQIE10(
// what is commonly called the "second" HF min-bias bit is
// actually the 0-th bit, which can also be used instead for the EM bit
// (called finegrain[ibin][0] below) in non-HI running
finegrain[ibin][0] = finegrain[ibin][1] or detail.fgbits[idx][1];
finegrain[ibin][0] = finegrain[ibin][0] or detail.fgbits[idx][1];
}
}
// the EM bit is only used if the "second" FG bit is disabled
Expand Down

0 comments on commit 08444b5

Please sign in to comment.