Package edu.sc.seis.TauP
Class TimeDist
- java.lang.Object
-
- edu.sc.seis.TauP.TimeDist
-
- All Implemented Interfaces:
java.lang.Cloneable
public class TimeDist extends java.lang.Object implements java.lang.Cloneable
Holds the ray parameter, time and distance increments, and optionally a depth, for a ray passing through some layer.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description TimeDist
add(TimeDist td)
java.lang.Object
clone()
boolean
equals(java.lang.Object o)
double
getDepth()
double
getDistDeg()
double
getDistRadian()
double
getP()
double
getTime()
int
hashCode()
static TimeDist
linearInterpOnDepth(TimeDist tdA, TimeDist tdB, double depth)
Linearly interpolates two TimeDist objects using depth as the interpolation variable.static TimeDist
linearInterpOnTime(TimeDist tdA, TimeDist tdB, double time)
Linearly interpolates two TimeDist objects using time as the interpolation variable.TimeDist
negateDistance()
java.lang.String
toString()
-
-
-
Method Detail
-
negateDistance
public TimeDist negateDistance()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
getP
public double getP()
-
getDepth
public double getDepth()
-
getTime
public double getTime()
-
getDistRadian
public double getDistRadian()
-
getDistDeg
public double getDistDeg()
-
linearInterpOnDepth
public static TimeDist linearInterpOnDepth(TimeDist tdA, TimeDist tdB, double depth)
Linearly interpolates two TimeDist objects using depth as the interpolation variable.- Parameters:
tdA
-tdB
-depth
-- Returns:
-
linearInterpOnTime
public static TimeDist linearInterpOnTime(TimeDist tdA, TimeDist tdB, double time)
Linearly interpolates two TimeDist objects using time as the interpolation variable.- Parameters:
tdA
- first TimeDisttdB
- second TimeDisttime
- interp time- Returns:
-
clone
public java.lang.Object clone()
- Overrides:
clone
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-