net.talvi.puffinplot.data
Class AmsData

java.lang.Object
  extended by net.talvi.puffinplot.data.AmsData

public final class AmsData
extends java.lang.Object

This class holds AMS (anisotropy of magnetic susceptibility) data for a named sample. It is a simple container class, and does not process the data in any way.


Constructor Summary
AmsData(java.lang.String name, double[] tensor, double sampleAz, double sampleDip, double fTest)
          Creates a new AMS data set with the data provided.
 
Method Summary
 double getfTest()
          Returns the F-test value for the sample's anisotropy measurement.
 java.lang.String getName()
          Returns the sample's name.
 double getSampleAz()
          Returns the sample's dip azimuth in degrees.
 double getSampleDip()
          Returns the sample's dip in degrees.
 double[] getTensor()
          Returns the sample's susceptibility tensor.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AmsData

public AmsData(java.lang.String name,
               double[] tensor,
               double sampleAz,
               double sampleDip,
               double fTest)
Creates a new AMS data set with the data provided.

Parameters:
name - the name of the sample
tensor - the orientation tensor representing the sample's susceptibility anisotropy
sampleAz - the azimuth of the sample's dip, in degrees
sampleDip - the sample's dip, in degrees
fTest - the F-test value as defined by JelĂ­nek
Method Detail

getName

public java.lang.String getName()
Returns the sample's name.

Returns:
the sample's name

getTensor

public double[] getTensor()
Returns the sample's susceptibility tensor.

Returns:
the sample's susceptibility tensor

getSampleAz

public double getSampleAz()
Returns the sample's dip azimuth in degrees.

Returns:
the sample's dip azimuth in degrees

getSampleDip

public double getSampleDip()
Returns the sample's dip in degrees.

Returns:
the sample's dip in degrees

getfTest

public double getfTest()
Returns the F-test value for the sample's anisotropy measurement.

Returns:
the F-test value for the sample's anisotropy measurement