00001 #include "CondFormats/RPCObjects/interface/ChamberLocationSpec.h" 00002 #include <sstream> 00003 00004 std::string ChamberLocationSpec::print( int depth ) const 00005 { 00006 std::ostringstream str; 00007 if (depth >=0) { 00008 str << " ChamberLocationSpec: " << std::endl 00009 << " --->DiskOrWheel: " << diskOrWheel 00010 << " Layer: " << layer 00011 << " Sector: " << sector 00012 << " Subsector: " << subsector 00013 << " ChamberLocationName: " << chamberLocationName 00014 << " FebZOrnt: " << febZOrnt 00015 << " FebZRadOrnt: " << febZRadOrnt 00016 << " BarrelOrEndcap: " << barrelOrEndcap; 00017 } 00018 return str.str(); 00019 }