Skip to content

Commit b9eafed

Browse files
committed
fix: increase thresh
1 parent 569c65a commit b9eafed

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

common-tools/clas-detector/src/main/java/org/jlab/detector/scalers/DaqScalersSequence.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ public void fixClockRollover() {
407407
}
408408
if (j==i) {
409409
double rat = Math.abs((double)diff/ROLLOVER) - 1;
410-
if (Math.abs(rat) > 0.001) {
410+
if (Math.abs(rat) > 0.005) {
411411
logger.warning("found " + clock_name + " rollover of unexpected size; off by " + rat*100 + "%");
412412
}
413413
}

0 commit comments

Comments
 (0)