Skip to content

Commit af77a2a

Browse files
fix: the timelines for the 2.2 GeV runs for RG-L (#452)
1 parent 209b8ed commit af77a2a

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/main/java/org/jlab/clas/timeline/histograms/GeneralMon.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,10 @@ boolean testTriggerSector(int sector) {
5353
// RG-C 2.2 GeV: non-standard primary electron trigger:
5454
return testTriggerSector(TriggerWord, sector, 0x4081);
5555
}
56+
if (RunDependentCut.runIsInRange(runNum, 22731, 23016, false)) {
57+
// RG-L 2.2 GeV: no sector specific trigger bit is set
58+
return true;
59+
}
5660
// Default: the primary electron trigger is the first (7) bits:
5761
return testTriggerSector(TriggerWord, sector, 0x1);
5862
}

0 commit comments

Comments
 (0)