edu.sc.seis.TauP
Class TimeDist

java.lang.Object
  |
  +--edu.sc.seis.TauP.TimeDist

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.


Field Summary
 double depth
           
 double dist
           
 double p
           
 double time
           
 
Constructor Summary
TimeDist()
           
TimeDist(double p)
           
TimeDist(double p, double time, double dist)
           
TimeDist(double p, double time, double dist, double depth)
           
 
Method Summary
 void add(TimeDist td)
           
 java.lang.Object clone()
           
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

p

public double p

depth

public double depth

time

public double time

dist

public double dist
Constructor Detail

TimeDist

public TimeDist()

TimeDist

public TimeDist(double p)

TimeDist

public TimeDist(double p,
                double time,
                double dist)

TimeDist

public TimeDist(double p,
                double time,
                double dist,
                double depth)
Method Detail

add

public void add(TimeDist td)

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object

clone

public java.lang.Object clone()