diff --git a/common-tools/clas-detector/src/main/java/org/jlab/detector/qadb/QadbBin.java b/common-tools/clas-detector/src/main/java/org/jlab/detector/qadb/QadbBin.java index ec8dd97c33..7f74eb0080 100644 --- a/common-tools/clas-detector/src/main/java/org/jlab/detector/qadb/QadbBin.java +++ b/common-tools/clas-detector/src/main/java/org/jlab/detector/qadb/QadbBin.java @@ -114,10 +114,10 @@ public QadbBin(int binNum, BinType binType, List inputScalers, T ini public long getTimestampMax() { return this.timestampMax; } /** @return minimum event number for this bin */ - public long getEventNumMin() { return this.evnumMin; } + public int getEventNumMin() { return this.evnumMin; } /** @return maximum event number for this bin */ - public long getEventNumMax() { return this.evnumMax; } + public int getEventNumMax() { return this.evnumMax; } /** @return the beam charge, not gated by DAQ, for this bin */ public double getBeamCharge() { return this.charge; }