Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
LinearizerTrackParameters.hpp
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file LinearizerTrackParameters.hpp
1 // This file is part of the Acts project.
2 //
3 // Copyright (C) 2023 CERN for the benefit of the Acts project
4 //
5 // This Source Code Form is subject to the terms of the Mozilla Public
6 // License, v. 2.0. If a copy of the MPL was not distributed with this
7 // file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 
9 #pragma once
10 
11 namespace Acts {
12 
22 enum LinIndices : unsigned int {
23  // Global spatial position of a point on the track, must be stored as one
24  // continuous block.
25  eLinPos0 = 0u,
28  // Global time when particle is at the point
29  eLinTime = 3u,
30  // Angles of the particle momentum in the global frame at the point
31  eLinPhi = 4u,
33  // Global inverse-momentum-like parameter, i.e. q/p or 1/p, at the point
34  // The naming is inconsistent for the case of neutral track parameters where
35  // the value is interpreted as 1/p not as q/p. This is intentional to avoid
36  // having multiple aliases for the same element and for lack of an acceptable
37  // common name.
39  // Total number of components
40  eLinSize = 7u,
41  // Number of space-time components (3+1)
43  // Number of momentum components
45 };
46 
47 } // namespace Acts