Warning, file /include/Acts/EventData/Types.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/Definitions/TrackParametrization.hpp"
0012
0013 #include <cstdint>
0014 #include <limits>
0015
0016 namespace Acts {
0017
0018 using TrackIndexType = std::uint32_t;
0019 static constexpr TrackIndexType kTrackIndexInvalid =
0020 std::numeric_limits<TrackIndexType>::max();
0021
0022 using ProjectorBitset = std::uint64_t;
0023
0024 template <std::size_t measdim>
0025 using SubspaceIndices = std::array<std::uint8_t, measdim>;
0026 using BoundSubspaceIndices = SubspaceIndices<eBoundSize>;
0027 static constexpr BoundSubspaceIndices kBoundSubspaceIndicesInvalid = {
0028 eBoundSize, eBoundSize, eBoundSize, eBoundSize, eBoundSize, eBoundSize};
0029 using SerializedSubspaceIndices = std::uint64_t;
0030
0031 }