ptolemy.domains.ct.kernel
Class CTBaseIntegrator.DoubleDouble

java.lang.Object
  extended by ptolemy.domains.ct.kernel.CTBaseIntegrator.DoubleDouble
Enclosing class:
CTBaseIntegrator

private static class CTBaseIntegrator.DoubleDouble
extends java.lang.Object

A data structure for storing two double numbers.


Field Summary
private  double[] _data
           
 
Constructor Summary
CTBaseIntegrator.DoubleDouble(double first, double second)
          construct the Double pair.
 
Method Summary
 double[] toArray()
          Return the data as a double array.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

_data

private double[] _data
Constructor Detail

CTBaseIntegrator.DoubleDouble

public CTBaseIntegrator.DoubleDouble(double first,
                                     double second)
construct the Double pair.

Parameters:
first - The first double value in a DoubleDouble object.
second - The second double value in a DoubleDouble object.
Method Detail

toArray

public double[] toArray()
Return the data as a double array.

Returns:
A double array representation of this object.