Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,10 @@ public QadbBin(int binNum, BinType binType, List<DaqScalers> 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; }
Expand Down
Loading