Package de.gsi.dataset
Interface CategoryHistogram
-
- All Superinterfaces:
DataSet,DataSetMetaData,EventSource,Histogram,java.io.Serializable
@Deprecated public interface CategoryHistogram extends Histogram
Deprecated.Work in Progress, don't use yet- Author:
- Alexander Krimm
-
-
Field Summary
-
Fields inherited from interface de.gsi.dataset.DataSetMetaData
TAG_GAIN_RANGE, TAG_OVERSHOOT, TAG_UNDERSHOOT
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description default intfill(java.lang.String name)Deprecated.Increment bin with name with by 1.intfill(java.lang.String name, double w)Deprecated.Increment bin with name with a weight w.-
Methods inherited from interface de.gsi.dataset.DataSet
get, getAxisDescription, getAxisDescriptions, getDataCount, getDataLabel, getDimension, getIndex, getName, getStyle, getStyle, getValue, getValues, lock, recomputeLimits, set, set, setStyle
-
Methods inherited from interface de.gsi.dataset.DataSetMetaData
getErrorList, getInfoList, getMetaInfo, getWarningList
-
Methods inherited from interface de.gsi.dataset.event.EventSource
addListener, autoNotification, invokeListener, invokeListener, invokeListener, isAutoNotification, removeListener, updateEventListener
-
Methods inherited from interface de.gsi.dataset.Histogram
addBinContent, addBinContent, findBin, findBin, findBin, getBinCenter, getBinContent, isEquiDistant, reset
-
-
-
-
Method Detail
-
fill
default int fill(java.lang.String name)
Deprecated.Increment bin with name with by 1. if x is less than the low-edge of the first bin, the Underflow bin is incremented if x is equal to or greater than the upper edge of last bin, the Overflow bin is incremented- Parameters:
name- name to be added- Returns:
- corresponding bin number which has its content incremented by w
-
fill
int fill(java.lang.String name, double w)Deprecated.Increment bin with name with a weight w. if x is less than the low-edge of the first bin, the Underflow bin is incremented if x is equal to or greater than the upper edge of last bin, the Overflow bin is incremented- Parameters:
name- name to be addedw- weight for given name- Returns:
- corresponding bin number which has its content incremented by w
-
-