Back to home page

EIC code displayed by LXR

 
 

    


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 // This file is part of the ACTS project.
0002 //
0003 // Copyright (C) 2016 CERN for the benefit of the ACTS project
0004 //
0005 // This Source Code Form is subject to the terms of the Mozilla Public
0006 // License, v. 2.0. If a copy of the MPL was not distributed with this
0007 // file, You can obtain one at https://mozilla.org/MPL/2.0/.
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 }  // namespace Acts