CMS 3D CMS Logo

CMSSW_4_4_3_patch1/src/CondFormats/RPCObjects/interface/ChamberLocationSpec.h

Go to the documentation of this file.
00001 #ifndef CondFormatsRPCObjectsChamberLocationSpec_H
00002 #define CondFormatsRPCObjectsChamberLocationSpec_H
00003 #include<string>
00004 
00005 /* \class ChamberLocationSpec
00006  * Chamber Location specification as in online DB
00007  */
00008 
00009 struct ChamberLocationSpec {
00010   int diskOrWheel;
00011   int layer;
00012   int sector;
00013   char subsector;
00014   char febZOrnt;
00015   char febZRadOrnt;
00016   char barrelOrEndcap; 
00017 
00019   std::string print( int depth = 0) const;
00020 
00021   std::string chamberLocationName() const;
00022 
00023 };
00024 
00025 
00026 #endif