CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_2_9_HLT1_bphpatch4/src/CondFormats/RPCObjects/src/ChamberStripSpec.cc

Go to the documentation of this file.
00001 #include "CondFormats/RPCObjects/interface/ChamberStripSpec.h"
00002 #include <sstream>
00003 
00004 std::string ChamberStripSpec::print( int depth ) const
00005 {
00006   std::ostringstream str;
00007   if (depth >= 0) { 
00008     str << " ChamberStripSpec: " 
00009         << " pin: "<<cablePinNumber
00010         << ", chamber: "<<chamberStripNumber
00011         << ", CMS strip: "<<cmsStripNumber
00012         << std::endl;
00013   }
00014   return str.str();
00015 }
00016