Warning, file /acts/Core/include/Acts/Seeding/SeedFinderUtils.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 "Acts/EventData/SpacePointMutableData.hpp"
0012 #include "Acts/Seeding/SeedFinderConfig.hpp"
0013
0014 namespace Acts {
0015
0016
0017 struct LinCircle {
0018 LinCircle() = default;
0019 LinCircle(float ct, float idr, float er, float u, float v, float X, float Y)
0020 : cotTheta(ct), iDeltaR(idr), Er(er), U(u), V(v), x(X), y(Y) {}
0021
0022 float cotTheta{0.};
0023 float iDeltaR{0.};
0024 float Er{0.};
0025 float U{0.};
0026 float V{0.};
0027 float x{0.};
0028 float y{0.};
0029 };
0030
0031 template <typename external_spacepoint_t, typename callable_t>
0032 LinCircle transformCoordinates(Acts::SpacePointMutableData& mutableData,
0033 const external_spacepoint_t& sp,
0034 const external_spacepoint_t& spM, bool bottom,
0035 callable_t&& extractFunction);
0036
0037
0038
0039
0040
0041
0042
0043
0044
0045
0046
0047 template <typename external_spacepoint_t>
0048 void transformCoordinates(Acts::SpacePointMutableData& mutableData,
0049 const std::vector<const external_spacepoint_t*>& vec,
0050 const external_spacepoint_t& spM, bool bottom,
0051 std::vector<LinCircle>& linCircleVec);
0052
0053
0054
0055
0056
0057
0058
0059
0060
0061
0062 template <typename external_spacepoint_t>
0063 bool xyzCoordinateCheck(
0064 const Acts::SeedFinderConfig<external_spacepoint_t>& config,
0065 const external_spacepoint_t& sp, const double* spacepointPosition,
0066 double* outputCoordinates);
0067
0068 }
0069
0070 #include "Acts/Seeding/SeedFinderUtils.ipp"