Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Peter Sherwood
athena
Commits
97eae582
Commit
97eae582
authored
7 years ago
by
Scott Snyder
Committed by
scott snyder
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
TrigT1CaloCalibTools: Fix gcc7 warning.
gcc7 warning: return of wrong type Former-commit-id:
87ad50db
parent
0e1d272c
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Trigger/TrigT1/TrigT1CaloCalibTools/src/L1CaloLArTowerEnergy.cxx
+2
-2
2 additions, 2 deletions
.../TrigT1/TrigT1CaloCalibTools/src/L1CaloLArTowerEnergy.cxx
with
2 additions
and
2 deletions
Trigger/TrigT1/TrigT1CaloCalibTools/src/L1CaloLArTowerEnergy.cxx
+
2
−
2
View file @
97eae582
...
@@ -83,13 +83,13 @@ namespace LVL1{
...
@@ -83,13 +83,13 @@ namespace LVL1{
sc
=
m_ttTool
->
retrieveConditions
();
sc
=
m_ttTool
->
retrieveConditions
();
if
(
!
sc
.
isSuccess
())
{
if
(
!
sc
.
isSuccess
())
{
ATH_MSG_ERROR
(
"Cannot retrieve Conditions in L1TriggerTowerTool."
);
ATH_MSG_ERROR
(
"Cannot retrieve Conditions in L1TriggerTowerTool."
);
return
StatusCode
::
RECOVERABLE
;
return
false
;
}
}
// init trigger tower to cell mapping - needed each event?
// init trigger tower to cell mapping - needed each event?
if
(
!
m_cells2tt
->
initCaloCellsTriggerTowers
(
caloCellContainer
))
{
if
(
!
m_cells2tt
->
initCaloCellsTriggerTowers
(
caloCellContainer
))
{
ATH_MSG_ERROR
(
"Can not initialize L1CaloCells2TriggerTowers with CaloCellContainer "
<<
m_caloCellContainerName
);
ATH_MSG_ERROR
(
"Can not initialize L1CaloCells2TriggerTowers with CaloCellContainer "
<<
m_caloCellContainerName
);
return
StatusCode
::
RECOVERABLE
;
return
false
;
}
}
Identifier
TTid
;
Identifier
TTid
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment