Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:21:38

0001 #ifndef L1Trigger_RPCTechnicalTrigger_GeometryConstants_h
0002 #define L1Trigger_RPCTechnicalTrigger_GeometryConstants_h
0003 // -*- C++ -*-
0004 //
0005 // Package:     L1Trigger/RPCTechnicalTrigger
0006 // Class  :     GeometryConstants
0007 //
0008 /**\class GeometryConstants GeometryConstants.h "GeometryConstants.h"
0009 
0010  Description: [one line class summary]
0011 
0012  Usage:
0013     <usage>
0014 
0015 */
0016 //
0017 // Original Author:  Christopher Jones
0018 //         Created:  Fri, 16 Nov 2018 19:59:59 GMT
0019 //
0020 
0021 // system include files
0022 #include <array>
0023 #include <map>
0024 // user include files
0025 
0026 // forward declarations
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 }  // namespace rpctechnicaltrigger
0034 
0035 #endif