Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 10:47:24

0001 #ifndef CondFormatsRPCObjectsChamberLocationSpec_H
0002 #define CondFormatsRPCObjectsChamberLocationSpec_H
0003 #include "CondFormats/Serialization/interface/Serializable.h"
0004 
0005 #include <string>
0006 
0007 /* \class ChamberLocationSpec
0008  * Chamber Location specification as in online DB
0009  */
0010 
0011 struct ChamberLocationSpec {
0012   int diskOrWheel;
0013   int layer;
0014   int sector;
0015   char subsector;
0016   char febZOrnt;
0017   char febZRadOrnt;
0018   char barrelOrEndcap;
0019 
0020   /// debug printout
0021   std::string print(int depth = 0) const;
0022 
0023   std::string chamberLocationName() const;
0024 
0025   COND_SERIALIZABLE;
0026 };
0027 
0028 #endif