Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:02:30

0001 #ifndef CondFormatsRPCObjectsLinkBoardElectronicIndex_H
0002 #define CondFormatsRPCObjectsLinkBoardElectronicIndex_H
0003 
0004 /* \class LinkBoardElectronicIndex
0005  * chamber location describtion as given by RawData, naming follows DB
0006  */
0007 
0008 #include <string>
0009 
0010 struct LinkBoardElectronicIndex {
0011   int dccId;
0012   int dccInputChannelNum;
0013   int tbLinkInputNum;
0014   int lbNumInLink;
0015   std::string print(int depth = 0) const;
0016 };
0017 #endif