Skip to content
Snippets Groups Projects
Commit 630944ff authored by Will Leight's avatar Will Leight
Browse files

Fixed a couple of compiler warnings that I missed the first time

Former-commit-id: bc75a94b
parent 738ad00e
No related branches found
No related tags found
No related merge requests found
......@@ -57,7 +57,7 @@ StatusCode MuonDetailedTrackTruthMaker::initialize()
}
m_detailedTrackTruthNames.reserve ( m_trackCollectionNames.size());
for(int i=0;i<m_trackCollectionNames.size();i++){
for(unsigned int i=0;i<m_trackCollectionNames.size();i++){
m_detailedTrackTruthNames.emplace_back(m_trackCollectionNames.at(i).key()+"Truth");
ATH_MSG_INFO("process "<<m_trackCollectionNames.at(i).key()<<" for detailed truth collection "<<m_detailedTrackTruthNames.at(i).key());
}
......@@ -81,8 +81,6 @@ StatusCode MuonDetailedTrackTruthMaker::finalize()
StatusCode MuonDetailedTrackTruthMaker::execute() {
ATH_MSG_DEBUG( "MuonDetailedTrackTruthMaker::execute()");
StatusCode sc;
//----------------------------------------------------------------
// Retrieve prep raw data truth
std::vector<const PRD_MultiTruthCollection*> prdCollectionVector;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment