File indexing completed on 2025-08-06 08:10:04
0001
0002
0003
0004
0005
0006
0007
0008
0009 #pragma once
0010
0011 #include "Acts/Detector/DetectorVolume.hpp"
0012 #include "Acts/Navigation/NavigationDelegates.hpp"
0013 #include "Acts/Navigation/NavigationStateFillers.hpp"
0014 #include "Acts/Navigation/NavigationStateUpdaters.hpp"
0015 #include "Acts/Utilities/VectorHelpers.hpp"
0016
0017 #include <array>
0018 #include <memory>
0019
0020 namespace Acts::Experimental {
0021
0022 template <typename grid_t, typename path_generator>
0023 class MultiLayerSurfacesUpdaterImpl : public INavigationDelegate {
0024 public:
0025
0026 using grid_type = grid_t;
0027
0028
0029 grid_type grid;
0030
0031
0032 path_generator pgenerator;
0033
0034
0035 std::array<BinningValue, grid_type::DIM> casts{};
0036
0037
0038 Transform3 transform = Transform3::Identity();
0039
0040
0041
0042
0043
0044 MultiLayerSurfacesUpdaterImpl(
0045 grid_type igrid, const std::array<BinningValue, grid_type::DIM>& icasts,
0046 const Transform3& itr = Transform3::Identity())
0047 : grid(std::move(igrid)), casts(icasts), transform(itr) {}
0048
0049 MultiLayerSurfacesUpdaterImpl() = delete;
0050
0051 void update(const GeometryContext& gctx, NavigationState& nState) const {
0052
0053 auto lposition = transform * nState.position;
0054 auto ldirection = transform.linear() * nState.direction;
0055
0056 auto step = std::sqrt(std::pow(grid.binWidth()[0], 2) +
0057 std::pow(grid.binWidth()[1], 2));
0058 auto path = pgenerator(lposition, ldirection, step, grid.numLocalBins()[1]);
0059
0060 std::vector<const Acts::Surface*> surfCandidates = {};
0061
0062 for (const auto& p : path) {
0063 const auto& entry = grid.atPosition(castPosition(p));
0064 const auto extracted =
0065 IndexedSurfacesExtractor::extract(gctx, nState, entry);
0066 surfCandidates.insert(surfCandidates.end(), extracted.begin(),
0067 extracted.end());
0068 }
0069
0070 resolveDuplicates(gctx, surfCandidates);
0071 SurfacesFiller::fill(nState, surfCandidates);
0072
0073 updateCandidates(gctx, nState);
0074 }
0075
0076
0077
0078
0079 std::array<ActsScalar, grid_type::DIM> castPosition(
0080 const Vector3& position) const {
0081 std::array<ActsScalar, grid_type::DIM> casted{};
0082 fillCasts(position, casted,
0083 std::make_integer_sequence<std::size_t, grid_type::DIM>{});
0084 return casted;
0085 }
0086
0087
0088
0089
0090
0091 void resolveDuplicates(const GeometryContext& gctx,
0092 std::vector<const Acts::Surface*>& surfaces) const {
0093
0094 std::sort(surfaces.begin(), surfaces.end(),
0095 [&gctx](const auto& surf1, const auto& surf2) {
0096 if (surf1->center(gctx).x() != surf2->center(gctx).x()) {
0097 return surf1->center(gctx).x() < surf2->center(gctx).x();
0098 }
0099 if (surf1->center(gctx).y() != surf2->center(gctx).y()) {
0100 return surf1->center(gctx).y() < surf2->center(gctx).y();
0101 }
0102 return surf1->center(gctx).z() < surf2->center(gctx).z();
0103 });
0104
0105
0106 surfaces.erase(std::unique(surfaces.begin(), surfaces.end()),
0107 surfaces.end());
0108 }
0109
0110 private:
0111
0112
0113
0114 template <typename Array, std::size_t... idx>
0115 void fillCasts(const Vector3& position, Array& a,
0116 std::index_sequence<idx...> ) const {
0117 ((a[idx] = VectorHelpers::cast(position, casts[idx])), ...);
0118 }
0119 };
0120
0121 struct PathGridSurfacesGenerator {
0122 std::vector<Vector3> operator()(Vector3 startPosition,
0123 const Vector3& direction, ActsScalar stepSize,
0124 std::size_t numberOfSteps) const {
0125 std::vector<Vector3> pathCoordinates = {};
0126 pathCoordinates.reserve(numberOfSteps);
0127
0128 Vector3 position = std::move(startPosition);
0129 Vector3 step = stepSize * direction;
0130
0131 for (std::size_t i = 0; i < numberOfSteps; i++) {
0132 pathCoordinates.push_back(position);
0133 position = position + step;
0134 }
0135
0136 return pathCoordinates;
0137 }
0138 };
0139
0140 }