Uses of Class
net.talvi.puffinplot.data.Datum

Packages that use Datum
net.talvi.puffinplot.data   
net.talvi.puffinplot.data.file   
net.talvi.puffinplot.plots   
 

Uses of Datum in net.talvi.puffinplot.data
 

Methods in net.talvi.puffinplot.data that return Datum
 Datum Datum.Reader.fromStrings(java.util.List<java.lang.String> strings)
          Creates a a datum object using the supplied strings to populate the data fields.
 Datum Sample.getDatum(int i)
          Returns a specified data point from this sample
 Datum Sample.getDatumByRunNumber(int maxRunNumber)
          Returns the datum with the highest run number which is less than the supplied run number.
 Datum Line.getEmptySlot()
          Returns the first Datum associated with this line which was a measurement of an empty tray slot, not an actual sample.
 Datum Suite.getTrayCorrection(Datum d)
          Returns the tray correction for the specified data point.
 

Methods in net.talvi.puffinplot.data that return types with arguments of type Datum
 java.util.List<Datum> Sample.getData()
          Returns all the data points within this sample.
 java.util.List<Datum> Suite.getData()
          Returns all the data points in this suite.
 java.util.List<Datum> Sample.getSelectedData()
          Returns all the selected data points within this sample.
 java.util.List<Datum> Sample.getVisibleData()
          Returns all the visible (non-hidden) data points within this sample.
 

Methods in net.talvi.puffinplot.data with parameters of type Datum
 void Line.add(Datum datum)
          Associates a Datum with this line.
 void Sample.addDatum(Datum datum)
          Adds a data point to this sample.
 int DatumComparator.compare(Datum datum1, Datum datum2)
          Compares the magnetic moments of the supplied datum objects using the criteria specified in the constructor.
 Datum Suite.getTrayCorrection(Datum d)
          Returns the tray correction for the specified data point.
 

Method parameters in net.talvi.puffinplot.data with type arguments of type Datum
static MedianDestructiveField MedianDestructiveField.calculate(java.util.List<Datum> data)
          Calculate and create a median destructive field (or temperature) value for the supplied data.
static double Datum.maxIntensity(java.util.List<Datum> data)
          Returns the maximum magnitude of magnetic dipole moment per unit volume within the supplied group of datum objects.
static double Datum.maxMagSus(java.util.List<Datum> data)
          Returns the maximum magnetic susceptibility within the supplied group of datum objects.
static double Datum.maxTreatmentLevel(java.util.List<Datum> data)
          Returns the maximum treatment level within the supplied group of datum objects.
 

Uses of Datum in net.talvi.puffinplot.data.file
 

Methods in net.talvi.puffinplot.data.file that return Datum
 Datum FileFormat.readLine(java.lang.String line)
          Creates a Datum from a line formatted according to this format.
 

Methods in net.talvi.puffinplot.data.file that return types with arguments of type Datum
 java.util.List<Datum> FileLoader.getData()
          Returns the data points read from the file.
 java.util.List<Datum> FileFormat.readLines(java.util.List<java.lang.String> lines)
          Reds a list of lines in this format and produces the corresponding Datums.
 

Uses of Datum in net.talvi.puffinplot.plots
 

Methods in net.talvi.puffinplot.plots with parameters of type Datum
protected  void Plot.addPoint(Datum d, java.awt.geom.Point2D p, boolean filled, boolean special, boolean line)
          Adds a point to this plot's internal buffer.