Go to the documentation of this file.00001 #include "CondFormats/RPCObjects/interface/LinkBoardElectronicIndex.h"
00002 #include <sstream>
00003
00004 using namespace std;
00005
00006 std::string LinkBoardElectronicIndex::print( int depth ) const
00007 {
00008 ostringstream str;
00009 if (depth >= 0)
00010 str << " ---> dccId: " << dccId
00011 << " dccInputChannelNum: " << dccInputChannelNum
00012 << " tbLinkInputNum: " << tbLinkInputNum
00013 << " lbNumInLink: " << lbNumInLink;
00014
00015 return str.str();
00016 }