27 std::vector<uint64_t>::const_iterator iRL(rProp.begin());
28 std::vector<uint64_t>::const_iterator prEnd(rProp.end());
30 std::vector<float>::const_iterator iSF(sProp.begin());
31 std::vector<float>::const_iterator psEnd(sProp.end());
32 if (rProp.size() != sProp.size())
34 ATH_MSG_ERROR(
"Length of RunLumiList differs from length of ScaleFactorList!");
35 return StatusCode::FAILURE;
37 for( ; iRL != prEnd && iSF != psEnd; ++iRL, ++iSF )
41 return StatusCode::SUCCESS;