45 MsgStream log(
msgSvc(), name());
46 log << MSG::INFO <<
"in execute()" << endreq;
49 std::vector<Algorithm*>::const_iterator it = subAlgorithms()->begin();
50 std::vector<Algorithm*>::const_iterator end = subAlgorithms()->end();
51 for(; it != end; it++) {
52 sc = (*it)->execute();
54 log <<
"Error while executing " << (*it)->name() << endreq;
57 return StatusCode::SUCCESS;