Uses of Class
adams.data.threeway.L1Point
-
Packages that use L1Point Package Description adams.data.statistics adams.data.threeway -
-
Uses of L1Point in adams.data.statistics
Constructors in adams.data.statistics with parameters of type L1Point Constructor Description L1PointStatistic(L1Point data)
Initializes the statistic. -
Uses of L1Point in adams.data.threeway
Fields in adams.data.threeway declared as L1Point Modifier and Type Field Description protected L1Point
ThreeWayData. m_MaxX
point of greatest X.protected L1Point
ThreeWayData. m_MaxY
point of greatest Y.protected L1Point
ThreeWayData. m_MinX
point of smallest X.protected L1Point
ThreeWayData. m_MinY
point of smallest Y.Fields in adams.data.threeway with type parameters of type L1Point Modifier and Type Field Description protected static adams.data.container.DataPointComparator<L1Point>
ThreeWayData. m_Comparator
the default comparator.Methods in adams.data.threeway that return L1Point Modifier and Type Method Description static L1Point
L1PointUtils. closest(long x, L1Point left, L1Point right)
Returns a level 1 point with the level 2 data of the closest of the two level 1 points.L1Point
ThreeWayData. find(double x, double y)
Returns the level 1 point with the exact X, null if not found.L1Point
ThreeWayData. findClosest(double x, double y)
Returns the level 1 point with a X closest to the one provided.L1Point
ThreeWayData. getMaxX()
Get point with greatest timestamp.L1Point
ThreeWayData. getMaxY()
Get point with greatest abundance.L1Point
ThreeWayData. getMinX()
Get point with smallest Timestamp.L1Point
ThreeWayData. getMinY()
Get point with smallest abundance.static L1Point
L1PointUtils. interpolate(double x, L1Point left, L1Point right)
Interpolates the two level 1 points and the corresponding level 2 data.static L1Point
L1PointUtils. merge(L1Point point1, L1Point point2)
Merges the two level 1 points.L1Point
ThreeWayData. newPoint()
Returns a new instance of a DataContainer point.Methods in adams.data.threeway that return types with arguments of type L1Point Modifier and Type Method Description adams.data.container.DataPointComparator<L1Point>
ThreeWayData. getComparator()
Returns the comparator in use.adams.data.container.DataPointComparator<L1Point>
ThreeWayData. newComparator()
Returns a new instance of the default comparator.Methods in adams.data.threeway with parameters of type L1Point Modifier and Type Method Description static L1Point
L1PointUtils. closest(long x, L1Point left, L1Point right)
Returns a level 1 point with the level 2 data of the closest of the two level 1 points.int
L1PointComparator. compare(L1Point o1, L1Point o2)
Compares its two arguments for order.static int
ThreeWayDataUtils. findXY(List<L1Point> points, L1Point p)
Returns the index in points of the given LevelOnePoint point, -1 if not found.static double[]
L1PointUtils. getHistogram(L1Point l1, int numBins)
Generates data for a histogram display.static L1Point
L1PointUtils. interpolate(double x, L1Point left, L1Point right)
Interpolates the two level 1 points and the corresponding level 2 data.static L1Point
L1PointUtils. merge(L1Point point1, L1Point point2)
Merges the two level 1 points.static double[]
L1PointUtils. toDoubleArray(L1Point c)
Returns the abundance as double array.Method parameters in adams.data.threeway with type arguments of type L1Point Modifier and Type Method Description void
ThreeWayData. assign(adams.data.container.DataContainer<L1Point> other)
Obtains the stored variables from the other data point, but not the actual data points.static int
ThreeWayDataUtils. findClosestXY(List<L1Point> points, double x, double y)
Returns the index in points closest to the given timestamp.static int
ThreeWayDataUtils. findXY(List<L1Point> points, double x, double y)
Returns the index in points of the given timestamp.static int
ThreeWayDataUtils. findXY(List<L1Point> points, double x, double y, boolean less)
Locates the X for the given X.static int
ThreeWayDataUtils. findXY(List<L1Point> points, L1Point p)
Returns the index in points of the given LevelOnePoint point, -1 if not found.protected static ThreeWayData
ThreeWayDataUtils. getHeader(List<L1Point> points)
Creates a header based on the given LevelOnePoint points.Constructors in adams.data.threeway with parameters of type L1Point Constructor Description L2Point(L1Point parent, double z, double data)
Constructor.
-