ATLAS Offline Software
geometry_constants.h
Go to the documentation of this file.
1 // Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
2 
3 #ifndef GEOMETRY_CONSTANTS_H
4 #define GEOMETRY_CONSTANTS_H
5 
14 {
15  // inner radii of endcap strips
16  // from strip TDR (ATLAS-TDR-025) table 3.2 on page 29
17  const std::vector<float> strip_endcap_innerRadii {
18  384.5, 403.5, 427.5, 456.4,
19  489.8, 507.9, 535.0, 559.1,
20  575.6, 606.4,
21  638.6, 670.8, 697.1, 723.3,
22  756.9, 811.5,
23  867.5, 907.6,
24  967.8 // this is the outer radius of the outer row of the outer ring
25  };
26 
27  const std::vector<int> strip_endcap_nRows = {4,4,2,4,2,2};
28 
29 }
30 
31 #endif // GEOMETRY_CONSTANTS_H
geometry_constants::strip_endcap_nRows
const std::vector< int > strip_endcap_nRows
Definition: geometry_constants.h:27
geometry_constants::strip_endcap_innerRadii
const std::vector< float > strip_endcap_innerRadii
Definition: geometry_constants.h:17
geometry_constants
Definition: geometry_constants.h:14