Skip to content
Snippets Groups Projects
Commit 87ad50db authored by Scott Snyder's avatar Scott Snyder Committed by scott snyder
Browse files

TrigT1CaloCalibTools: Fix gcc7 warning.

gcc7 warning: return of wrong type
parent 3fa73e85
No related branches found
No related tags found
No related merge requests found
......@@ -83,13 +83,13 @@ namespace LVL1{
sc = m_ttTool->retrieveConditions();
if(!sc.isSuccess()) {
ATH_MSG_ERROR( "Cannot retrieve Conditions in L1TriggerTowerTool." );
return StatusCode::RECOVERABLE;
return false;
}
// init trigger tower to cell mapping - needed each event?
if(!m_cells2tt->initCaloCellsTriggerTowers(caloCellContainer)) {
ATH_MSG_ERROR( "Can not initialize L1CaloCells2TriggerTowers with CaloCellContainer "<< m_caloCellContainerName );
return StatusCode::RECOVERABLE;
return false;
}
Identifier TTid;
......
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