hep.aida.tdouble.ref
Class DoubleHistogram2D
- java.lang.Object
-
- hep.aida.tdouble.ref.DoubleHistogram2D
-
- All Implemented Interfaces:
- DoubleIHistogram, DoubleIHistogram2D, java.io.Serializable
public class DoubleHistogram2D extends java.lang.Object implements DoubleIHistogram2D
A reference implementation of hep.aida.IHistogram2D. The goal is to provide a clear implementation rather than the most efficient implementation. However, performance seems fine - filling 6 * 10^5 points/sec, both using FixedAxis or VariableAxis.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from interface hep.aida.tdouble.DoubleIHistogram
OVERFLOW, UNDERFLOW
-
-
Constructor Summary
Constructors Constructor and Description DoubleHistogram2D(java.lang.String title, double[] xEdges, double[] yEdges)Creates a variable-width histogram.DoubleHistogram2D(java.lang.String title, DoubleIAxis xAxis, DoubleIAxis yAxis)Creates a histogram with the given axis binning.DoubleHistogram2D(java.lang.String title, int xBins, double xMin, double xMax, int yBins, double yMin, double yMax)Creates a fixed-width histogram.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description intallEntries()Number of all entries in all (both in-range and under/overflow) bins in the histogram.intbinEntries(int indexX, int indexY)The number of entries (ie the number of times fill was called for this bin).intbinEntriesX(int indexX)Equivalent to projectionX().binEntries(indexX).intbinEntriesY(int indexY)Equivalent to projectionY().binEntries(indexY).doublebinError(int indexX, int indexY)The error on this bin.doublebinHeight(int indexX, int indexY)Total height of the corresponding bin (ie the sum of the weights in this bin).doublebinHeightX(int indexX)Equivalent to projectionX().binHeight(indexX).doublebinHeightY(int indexY)Equivalent to projectionY().binHeight(indexY).intdimensions()Returns 1 for one-dimensional histograms, 2 for two-dimensional histograms, and so on.intentries()Number of in-range entries in the histogram.doubleequivalentBinEntries()Number of equivalent entries.intextraEntries()Number of under and overflow entries in the histogram.voidfill(double x, double y)Fill the histogram with weight 1.voidfill(double x, double y, double weight)Fill the histogram with specified weight.doublemeanX()Returns the mean of the histogram, as calculated on filling-time projected on the X axis.doublemeanY()Returns the mean of the histogram, as calculated on filling-time projected on the Y axis.int[]minMaxBins()Indexes of the in-range bins containing the smallest and largest binHeight(), respectively.DoubleIHistogram1DprojectionX()Create a projection parallel to the X axis.DoubleIHistogram1DprojectionY()Create a projection parallel to the Y axis.voidreset()Reset contents; as if just constructed.doublermsX()Returns the rms of the histogram as calculated on filling-time projected on the X axis.doublermsY()Returns the rms of the histogram as calculated on filling-time projected on the Y axis.DoubleIHistogram1DsliceX(int indexY)Slice parallel to the Y axis at bin indexY and one bin wide.DoubleIHistogram1DsliceX(int indexY1, int indexY2)Create a slice parallel to the axis X axis, between "indexY1" and "indexY2" (inclusive).DoubleIHistogram1DsliceY(int indexX)Slice parallel to the X axis at bin indexX and one bin wide.DoubleIHistogram1DsliceY(int indexX1, int indexX2)Create a slice parallel to the axis Y axis, between "indexX1" and "indexX2" (inclusive) The returned IHistogram1D represents an instantaneous snapshot of the histogram at the time the slice was created.doublesumAllBinHeights()Sum of all (both in-range and under/overflow) bin heights in the histogram.doublesumBinHeights()Sum of in-range bin heights in the histogram.doublesumExtraBinHeights()Sum of under/overflow bin heights in the histogram.java.lang.Stringtitle()Title of the histogram (will be set only in the constructor).DoubleIAxisxAxis()Return the X axis.DoubleIAxisyAxis()Return the Y axis.-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface hep.aida.tdouble.DoubleIHistogram2D
binEntriesX, binEntriesY, binHeightX, binHeightY, minMaxBins, projectionX, projectionY, sliceX, sliceX, sliceY, sliceY, xAxis, yAxis
-
Methods inherited from interface hep.aida.tdouble.DoubleIHistogram
dimensions, entries, extraEntries, sumBinHeights, sumExtraBinHeights, title
-
-
-
-
Constructor Detail
-
DoubleHistogram2D
public DoubleHistogram2D(java.lang.String title, double[] xEdges, double[] yEdges)Creates a variable-width histogram. Example: xEdges = (0.2, 1.0, 5.0, 6.0), yEdges = (-5, 0, 7) yields 3*2 in-range bins.- Parameters:
title- The histogram title.xEdges- the bin boundaries the x-axis shall have; must be sorted ascending and must not contain multiple identical elements.yEdges- the bin boundaries the y-axis shall have; must be sorted ascending and must not contain multiple identical elements.- Throws:
java.lang.IllegalArgumentException- if xEdges.length < 1 || yEdges.length < 1.
-
DoubleHistogram2D
public DoubleHistogram2D(java.lang.String title, int xBins, double xMin, double xMax, int yBins, double yMin, double yMax)Creates a fixed-width histogram.- Parameters:
title- The histogram title.xBins- The number of bins on the X axis.xMin- The minimum value on the X axis.xMax- The maximum value on the X axis.yBins- The number of bins on the Y axis.yMin- The minimum value on the Y axis.yMax- The maximum value on the Y axis.
-
DoubleHistogram2D
public DoubleHistogram2D(java.lang.String title, DoubleIAxis xAxis, DoubleIAxis yAxis)Creates a histogram with the given axis binning.- Parameters:
title- The histogram title.xAxis- The x-axis description to be used for binning.yAxis- The y-axis description to be used for binning.
-
-
Method Detail
-
allEntries
public int allEntries()
Description copied from interface:DoubleIHistogramNumber of all entries in all (both in-range and under/overflow) bins in the histogram.- Specified by:
allEntriesin interfaceDoubleIHistogram
-
binEntries
public int binEntries(int indexX, int indexY)Description copied from interface:DoubleIHistogram2DThe number of entries (ie the number of times fill was called for this bin).- Specified by:
binEntriesin interfaceDoubleIHistogram2D- Parameters:
indexX- the x bin number (0...Nx-1) or OVERFLOW or UNDERFLOW.indexY- the y bin number (0...Ny-1) or OVERFLOW or UNDERFLOW.
-
binError
public double binError(int indexX, int indexY)Description copied from interface:DoubleIHistogram2DThe error on this bin.- Specified by:
binErrorin interfaceDoubleIHistogram2D- Parameters:
indexX- the x bin number (0...Nx-1) or OVERFLOW or UNDERFLOW.indexY- the y bin number (0...Ny-1) or OVERFLOW or UNDERFLOW.
-
binHeight
public double binHeight(int indexX, int indexY)Description copied from interface:DoubleIHistogram2DTotal height of the corresponding bin (ie the sum of the weights in this bin).- Specified by:
binHeightin interfaceDoubleIHistogram2D- Parameters:
indexX- the x bin number (0...Nx-1) or OVERFLOW or UNDERFLOW.indexY- the y bin number (0...Ny-1) or OVERFLOW or UNDERFLOW.
-
equivalentBinEntries
public double equivalentBinEntries()
Description copied from interface:DoubleIHistogramNumber of equivalent entries.- Specified by:
equivalentBinEntriesin interfaceDoubleIHistogram- Returns:
- SUM[ weight ] ^ 2 / SUM[ weight^2 ].
-
fill
public void fill(double x, double y)Description copied from interface:DoubleIHistogram2DFill the histogram with weight 1.- Specified by:
fillin interfaceDoubleIHistogram2D
-
fill
public void fill(double x, double y, double weight)Description copied from interface:DoubleIHistogram2DFill the histogram with specified weight.- Specified by:
fillin interfaceDoubleIHistogram2D
-
meanX
public double meanX()
Description copied from interface:DoubleIHistogram2DReturns the mean of the histogram, as calculated on filling-time projected on the X axis.- Specified by:
meanXin interfaceDoubleIHistogram2D
-
meanY
public double meanY()
Description copied from interface:DoubleIHistogram2DReturns the mean of the histogram, as calculated on filling-time projected on the Y axis.- Specified by:
meanYin interfaceDoubleIHistogram2D
-
reset
public void reset()
Description copied from interface:DoubleIHistogramReset contents; as if just constructed.- Specified by:
resetin interfaceDoubleIHistogram
-
rmsX
public double rmsX()
Description copied from interface:DoubleIHistogram2DReturns the rms of the histogram as calculated on filling-time projected on the X axis.- Specified by:
rmsXin interfaceDoubleIHistogram2D
-
rmsY
public double rmsY()
Description copied from interface:DoubleIHistogram2DReturns the rms of the histogram as calculated on filling-time projected on the Y axis.- Specified by:
rmsYin interfaceDoubleIHistogram2D
-
sumAllBinHeights
public double sumAllBinHeights()
Description copied from interface:DoubleIHistogramSum of all (both in-range and under/overflow) bin heights in the histogram.- Specified by:
sumAllBinHeightsin interfaceDoubleIHistogram
-
binEntriesX
public int binEntriesX(int indexX)
Description copied from interface:DoubleIHistogram2DEquivalent to projectionX().binEntries(indexX).- Specified by:
binEntriesXin interfaceDoubleIHistogram2D
-
binEntriesY
public int binEntriesY(int indexY)
Description copied from interface:DoubleIHistogram2DEquivalent to projectionY().binEntries(indexY).- Specified by:
binEntriesYin interfaceDoubleIHistogram2D
-
binHeightX
public double binHeightX(int indexX)
Description copied from interface:DoubleIHistogram2DEquivalent to projectionX().binHeight(indexX).- Specified by:
binHeightXin interfaceDoubleIHistogram2D
-
binHeightY
public double binHeightY(int indexY)
Description copied from interface:DoubleIHistogram2DEquivalent to projectionY().binHeight(indexY).- Specified by:
binHeightYin interfaceDoubleIHistogram2D
-
dimensions
public int dimensions()
Description copied from interface:DoubleIHistogramReturns 1 for one-dimensional histograms, 2 for two-dimensional histograms, and so on.- Specified by:
dimensionsin interfaceDoubleIHistogram
-
entries
public int entries()
Description copied from interface:DoubleIHistogramNumber of in-range entries in the histogram.- Specified by:
entriesin interfaceDoubleIHistogram
-
extraEntries
public int extraEntries()
Description copied from interface:DoubleIHistogramNumber of under and overflow entries in the histogram.- Specified by:
extraEntriesin interfaceDoubleIHistogram
-
minMaxBins
public int[] minMaxBins()
Description copied from interface:DoubleIHistogram2DIndexes of the in-range bins containing the smallest and largest binHeight(), respectively.- Specified by:
minMaxBinsin interfaceDoubleIHistogram2D- Returns:
- {minBinX,minBinY, maxBinX,maxBinY}.
-
projectionX
public DoubleIHistogram1D projectionX()
Description copied from interface:DoubleIHistogram2DCreate a projection parallel to the X axis. Equivalent to sliceX(UNDERFLOW,OVERFLOW).- Specified by:
projectionXin interfaceDoubleIHistogram2D
-
projectionY
public DoubleIHistogram1D projectionY()
Description copied from interface:DoubleIHistogram2DCreate a projection parallel to the Y axis. Equivalent to sliceY(UNDERFLOW,OVERFLOW).- Specified by:
projectionYin interfaceDoubleIHistogram2D
-
sliceX
public DoubleIHistogram1D sliceX(int indexY)
Description copied from interface:DoubleIHistogram2DSlice parallel to the Y axis at bin indexY and one bin wide. Equivalent to sliceX(indexY,indexY).- Specified by:
sliceXin interfaceDoubleIHistogram2D
-
sliceX
public DoubleIHistogram1D sliceX(int indexY1, int indexY2)
Description copied from interface:DoubleIHistogram2DCreate a slice parallel to the axis X axis, between "indexY1" and "indexY2" (inclusive). The returned IHistogram1D represents an instantaneous snapshot of the histogram at the time the slice was created.- Specified by:
sliceXin interfaceDoubleIHistogram2D
-
sliceY
public DoubleIHistogram1D sliceY(int indexX)
Description copied from interface:DoubleIHistogram2DSlice parallel to the X axis at bin indexX and one bin wide. Equivalent to sliceY(indexX,indexX).- Specified by:
sliceYin interfaceDoubleIHistogram2D
-
sliceY
public DoubleIHistogram1D sliceY(int indexX1, int indexX2)
Description copied from interface:DoubleIHistogram2DCreate a slice parallel to the axis Y axis, between "indexX1" and "indexX2" (inclusive) The returned IHistogram1D represents an instantaneous snapshot of the histogram at the time the slice was created.- Specified by:
sliceYin interfaceDoubleIHistogram2D
-
sumBinHeights
public double sumBinHeights()
Description copied from interface:DoubleIHistogramSum of in-range bin heights in the histogram.- Specified by:
sumBinHeightsin interfaceDoubleIHistogram
-
sumExtraBinHeights
public double sumExtraBinHeights()
Description copied from interface:DoubleIHistogramSum of under/overflow bin heights in the histogram.- Specified by:
sumExtraBinHeightsin interfaceDoubleIHistogram
-
xAxis
public DoubleIAxis xAxis()
Description copied from interface:DoubleIHistogram2DReturn the X axis.- Specified by:
xAxisin interfaceDoubleIHistogram2D
-
yAxis
public DoubleIAxis yAxis()
Description copied from interface:DoubleIHistogram2DReturn the Y axis.- Specified by:
yAxisin interfaceDoubleIHistogram2D
-
title
public java.lang.String title()
Description copied from interface:DoubleIHistogramTitle of the histogram (will be set only in the constructor).- Specified by:
titlein interfaceDoubleIHistogram
-
-
DMelt 3.0 © DataMelt by jWork.ORG