Warning, file /acts/Core/include/Acts/Propagator/NavigatorOptions.hpp was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009 #pragma once
0010
0011 #include <functional>
0012
0013 namespace Acts {
0014
0015 class GeometryContext;
0016 class Surface;
0017
0018 struct NavigatorPlainOptions {
0019
0020 explicit NavigatorPlainOptions(const GeometryContext &gctx)
0021 : geoContext(gctx) {}
0022
0023
0024 std::reference_wrapper<const GeometryContext> geoContext;
0025
0026 const Surface *startSurface{};
0027 const Surface *targetSurface{};
0028 };
0029
0030 }