Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:08:11

0001 #ifndef RPCNameHelper_H
0002 #define RPCNameHelper_H
0003 
0004 #include "DataFormats/MuonDetId/interface/RPCDetId.h"
0005 #include <string>
0006 #include <array>
0007 
0008 struct RPCNameHelper {
0009   static std::string name(const RPCDetId& detId, const bool useRoll);
0010   static std::string chamberName(const RPCDetId& detId);
0011   static std::string rollName(const RPCDetId& detId);
0012   static std::string regionName(const int region);
0013 
0014   static const std::array<std::string, 3> regionNames;
0015 };
0016 
0017 #endif