91 MsgStream log(
msgSvc(), name() );
116 std::string fullPath =
"/Calib/MucCal";
117 log << MSG::INFO <<
"execute() fullPath = " << fullPath << endmsg;
125 SmartDataPtr<CalibData::MucCalibData>
test( m_pCalibDataSvc, fullPath );
128 std::cout <<
"m_uniformEff=" <<
test->getUniformEff() << std::endl;
129 std::cout <<
"m_UniformNos=" <<
test->getUniformNos() << std::endl;
130 std::cout <<
"m_UniformClst=" <<
test->getUniformClst() << std::endl;
131 for (
int i = 0; i < LAYER_MAX; i++ )
133 std::cout <<
"m_layerEff[" << i <<
"]=" <<
test->getLayerEff( i ) <<
" m_layerNos[" << i
134 <<
"]=" <<
test->getLayerNos( i ) << std::endl;
135 for (
int j = 0; j < CLST_MAX; j++ )
137 std::cout <<
"m_layerClstPro[" << i <<
"][" << j <<
"]=" <<
test->getLayerClstPro( i, j )
142 for (
int i = 0; i < PART_MAX; i++ )
144 for (
int j = 0; j < ( ( i == 1 ) ? B_SEG_NUM : E_SEG_NUM ); j++ )
146 for (
int k = 0; k < ( ( i == 1 ) ? B_LAY_NUM : E_LAY_NUM ); k++ )
148 std::cout <<
"Box: " << i <<
"\t" << j <<
"\t" << k <<
"\t"
149 <<
test->getBoxEff( i, j, k ) << endl;
172 return StatusCode::SUCCESS;