Skip to content

Commit

Permalink
fix remaining case of trigger bit offset
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan Baltzell authored and baltzell committed Nov 13, 2023
1 parent f95c125 commit 27d7b89
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3391,12 +3391,12 @@ public void processEvent(DataEvent event) {
}
}
if(trigger_bits[1]||trigger_bits[2]||trigger_bits[3]||trigger_bits[4]||trigger_bits[5]||trigger_bits[6])Ntrigs++;
if(trigger_bits[1])H_trig_sector_count.fill(1);
if(trigger_bits[2])H_trig_sector_count.fill(2);
if(trigger_bits[3])H_trig_sector_count.fill(3);
if(trigger_bits[4])H_trig_sector_count.fill(4);
if(trigger_bits[5])H_trig_sector_count.fill(5);
if(trigger_bits[6])H_trig_sector_count.fill(6);
for (int i=1; i<=6; ++i) {
if (testTriggerSector(i)) {
H_trig_sector_count.fill(i);
}
}

if(trigger_bits[31])H_rand_trig_sector_count.fill(7);
if (runNum <= 6296) {
if(trigger_bits[7]||trigger_bits[8]||trigger_bits[9])Nmuontrigs++;
Expand Down

0 comments on commit 27d7b89

Please sign in to comment.