hep.analysis.partition
Interface OneDDataSource

All Known Implementing Classes:
Abstract1DPartition

public interface OneDDataSource

These are the methods a 1D Partition must provide to the data consumer


Method Summary
 java.lang.String[] getAxisLabels()
           
 int getAxisType()
           
 double[] getBins()
           
 double getMax()
           
 double getMin()
           
 double[] getMinusErrors()
           
 double[] getPlusErrors()
           
 boolean hasAsymmetricErrorBars()
           
 boolean hasSimpleQuadraticErrorBars()
           
 boolean isRebinnable()
           
 void setBinning(int bins, double min, double max)
           
 

Method Detail

hasAsymmetricErrorBars

public boolean hasAsymmetricErrorBars()

hasSimpleQuadraticErrorBars

public boolean hasSimpleQuadraticErrorBars()

isRebinnable

public boolean isRebinnable()

getPlusErrors

public double[] getPlusErrors()

getMinusErrors

public double[] getMinusErrors()

getBins

public double[] getBins()

getMin

public double getMin()

getMax

public double getMax()

setBinning

public void setBinning(int bins,
                       double min,
                       double max)

getAxisLabels

public java.lang.String[] getAxisLabels()

getAxisType

public int getAxisType()