From b321aedcbf3f8856df77715a7f2a0a6157b0ca72 Mon Sep 17 00:00:00 2001 From: luca-s Date: Wed, 4 Feb 2026 10:05:05 +0100 Subject: [PATCH] [ttt] Update comments for TravelTime struct members --- libs/seiscomp/seismology/ttt.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libs/seiscomp/seismology/ttt.h b/libs/seiscomp/seismology/ttt.h index 8b43374f..9c52faee 100644 --- a/libs/seiscomp/seismology/ttt.h +++ b/libs/seiscomp/seismology/ttt.h @@ -69,12 +69,12 @@ class SC_SYSTEM_CORE_API TravelTime { bool operator<(const TravelTime &other) const; std::string phase; //!< phase code like "P", "pP", "PKiKP" etc. - double time; //!< actual travel time in seconds - double dtdd; //!< dt/dd angular slowness in sec/deg - double dtdh; //!< dt/dh dependence of time on source depth + double time; //!< [sec] actual travel time + double dtdd; //!< [sec/deg] dt/dd angular slowness + double dtdh; //!< [sec/km] dt/dh dependence of time on source depth double dddp; //!< dd/dp - double takeoff; //!< take-off angle at source - OPT(double) azi; //!< azimuth angle at source (for 3D models) + double takeoff; //!< [deg] take-off angle at source: 0(down):180(up) + OPT(double) azi; //!< [deg] azimuth angle at source (for 3D models) };