Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #include "CondFormats/RPCObjects/interface/LinkBoardElectronicIndex.h"
0002 #include <sstream>
0003 
0004 using namespace std;
0005 
0006 std::string LinkBoardElectronicIndex::print(int depth) const {
0007   ostringstream str;
0008   if (depth >= 0)
0009     str << " ---> dccId: " << dccId << " dccInputChannelNum: " << dccInputChannelNum
0010         << " tbLinkInputNum: " << tbLinkInputNum << " lbNumInLink: " << lbNumInLink;
0011 
0012   return str.str();
0013 }