File indexing completed on 2024-04-06 12:21:38
0001 #ifndef L1Trigger_RPCTechnicalTrigger_GeometryConstants_h
0002 #define L1Trigger_RPCTechnicalTrigger_GeometryConstants_h
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022 #include <array>
0023 #include <map>
0024
0025
0026
0027 namespace rpctechnicaltrigger {
0028 constexpr std::array<int, 5> s_wheelid = {{-2, -1, 0, 1, 2}};
0029 constexpr std::array<int, 6> s_sec1id = {{12, 2, 4, 6, 8, 10}};
0030 constexpr std::array<int, 6> s_sec2id = {{1, 3, 5, 7, 9, 11}};
0031
0032 extern const std::map<int, int> s_layermap;
0033 }
0034
0035 #endif