jas.hist
Interface ScatterPlotSource

All Superinterfaces:
DataSource
All Known Implementing Classes:
ScatterTwoDAdapter, XML2DScatterDataSource

public interface ScatterPlotSource
extends DataSource

Interface to be implemented by DataSources which can provide ScatterPlot data (but not 2D histogram data)

See Also:
Rebinnable2DHistogramData, HasScatterPlotData

Field Summary
 
Fields inherited from interface jas.hist.DataSource
DATE, DELTATIME, DOUBLE, INTEGER, STRING
 
Method Summary
 int getXAxisType()
          Currently we only support DATE and DOUBLE types
 double getXMax()
           
 double getXMin()
           
 int getYAxisType()
          Currently we only support DOUBLE
 double getYMax()
           
 double getYMin()
           
 ScatterEnumeration startEnumeration()
          Starts the enumeration of points from the beginning, and the enumeration will include all points stored in the partition.
 ScatterEnumeration startEnumeration(double xMin, double xMax, double yMin, double yMax)
          Starts the enumeration of points from the beginning, and the enumeration will include only points in the given range.
 
Methods inherited from interface jas.hist.DataSource
getTitle
 

Method Detail

getXMin

double getXMin()

getXMax

double getXMax()

getYMin

double getYMin()

getYMax

double getYMax()

getXAxisType

int getXAxisType()
Currently we only support DATE and DOUBLE types


getYAxisType

int getYAxisType()
Currently we only support DOUBLE


startEnumeration

ScatterEnumeration startEnumeration(double xMin,
                                    double xMax,
                                    double yMin,
                                    double yMax)
Starts the enumeration of points from the beginning, and the enumeration will include only points in the given range.


startEnumeration

ScatterEnumeration startEnumeration()
Starts the enumeration of points from the beginning, and the enumeration will include all points stored in the partition.



Copyright © 2000-2009 FreeHEP. All Rights Reserved.