File indexing completed on 2026-04-19 07:47:28
0001
0002
0003
0004
0005
0006
0007
0008
0009 #pragma once
0010
0011 #include "Acts/Definitions/Algebra.hpp"
0012 #include "Acts/Definitions/TrackParametrization.hpp"
0013 #include "Acts/Definitions/Units.hpp"
0014 #include "Acts/EventData/SourceLink.hpp"
0015
0016 namespace Acts {
0017
0018
0019
0020 using ParamCovAccessor =
0021 std::function<std::pair<const BoundVector, const BoundMatrix>(
0022 const SourceLink&)>;
0023
0024
0025 struct [[deprecated(
0026 "Will be dropped soon and is replaced by PixelSpacePointBuilder / "
0027 "StripSpacePointBuilder")]] SpacePointBuilderOptions {
0028
0029 std::pair<std::pair<Vector3, Vector3>, std::pair<Vector3, Vector3>>
0030 stripEndsPair;
0031
0032 ParamCovAccessor paramCovAccessor;
0033
0034 Vector3 vertex = {0., 0., 0.};
0035
0036 double stripLengthTolerance = 0.01;
0037
0038 double stripLengthGapTolerance = 0.01;
0039 };
0040
0041
0042 struct [[deprecated(
0043 "Will be dropped soon and is replaced by PixelSpacePointBuilder / "
0044 "StripSpacePointBuilder")]] StripPairOptions {
0045
0046 ParamCovAccessor paramCovAccessor;
0047
0048 Vector3 vertex = {0., 0., 0.};
0049
0050 double diffTheta2 = 1.;
0051
0052 double diffPhi2 = 1.;
0053
0054 double diffDist = 100. * UnitConstants::mm;
0055 };
0056
0057 }