14 MsgStream log(
msgSvc(), name() );
16 std::vector<std::string>::iterator it;
17 for ( it = m_string_vec.begin(); it != m_string_vec.end(); ++it )
19 TString tmpfn = ( *it ).c_str();
20 gSystem->ExpandPathName( tmpfn );
22 TFile* tmp =
new TFile( tmpfn );
23 log << MSG::DEBUG <<
"Try to Load File: " << *it << endmsg;
26 log << MSG::WARNING <<
"Load File Failed: " << *it << endmsg;
30 return StatusCode::SUCCESS;