diff --git a/Framework/Geometry/BaseTrajectory.h b/Framework/Geometry/BaseTrajectory.h index a5c690eedea8d54a94275221315d3d6c47ff3d86..e4eafb853117b47e4778e14b17c4ba54f46ad7b4 100644 --- a/Framework/Geometry/BaseTrajectory.h +++ b/Framework/Geometry/BaseTrajectory.h @@ -16,12 +16,12 @@ namespace corsika::geometry { public: //!< for \f$ t = 0 \f$, the starting Point shall be returned. virtual Point GetPosition(corsika::units::si::TimeType) const = 0; - + /*! * returns the arc length between two points of the trajectory * parameterized by \arg t1 and \arg t2. Requires \arg t2 > \arg t1. */ - + virtual LengthType DistanceBetween(corsika::units::si::TimeType t1, corsika::units::si::TimeType t2) const = 0; };