ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
GeometryStatics.hpp
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file GeometryStatics.hpp
1 // This file is part of the Acts project.
2 //
3 // Copyright (C) 2016-2018 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 
10 // GeometryStatics.h, Acts project
12 
13 #pragma once
15 
18 namespace Acts {
19 
20 // transformations
21 
22 static const Transform3D s_idTransform =
23  Transform3D::Identity();
24 static const Rotation3D s_idRotation =
25  Rotation3D::Identity();
26 
27 // axis system
28 static const Vector3D s_xAxis(1, 0, 0);
29 static const Vector3D s_yAxis(0, 1, 0);
30 static const Vector3D s_zAxis(0, 0, 1);
31 
32 // unit vectors
33 static const Vector2D s_origin2D(0., 0.);
34 
35 // origin
36 
37 static const Vector3D s_origin(0, 0, 0);
38 
39 namespace detail {
40 static const double _helper[9] = {0., 1., 0., 1., 0., 0., 0., 0., -1.};
41 }
42 
44 } // namespace Acts