Fix overflow count

This commit is contained in:
Alexander Nozik 2016-11-30 11:38:08 +03:00
parent bcad353c15
commit 4383504551

View File

@ -138,12 +138,12 @@ public class NMPoint {
}
/**
* Events count - overflow
* Events count + overflow
*
* @return
*/
public long getEventsCount() {
return eventsCount - getOverflow();
return eventsCount + getOverflow();
}
public List<DataPoint> getData(int binning, boolean normalize) {