Skip to content

Commit

Permalink
Treat pixels from bank 0xFFFFFFFE as error pixels
Browse files Browse the repository at this point in the history
Refs #5763
  • Loading branch information
rgmiller committed Aug 17, 2012
1 parent 955f68d commit c920aa6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ namespace DataHandling
{
eventsPerBank++;
totalEvents++;
if (lastBankID <= 0xFFFFFFFE) // Bank ID -1 & -2 are special cases and are not valid pixels
if (lastBankID < 0xFFFFFFFE) // Bank ID -1 & -2 are special cases and are not valid pixels
{
// appendEvent needs tof to be in units of microseconds, but it comes
// from the ADARA stream in units of 100ns.
Expand Down

0 comments on commit c920aa6

Please sign in to comment.