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
75a58f99
Commit
75a58f99
authored
5 years ago
by
Frank Winklmeier
Browse files
Options
Downloads
Patches
Plain Diff
TrkExTools: Remove unused StatusCode return value
parent
a166205e
No related branches found
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Tracking/TrkExtrapolation/TrkExTools/TrkExTools/Navigator.h
+1
-1
1 addition, 1 deletion
Tracking/TrkExtrapolation/TrkExTools/TrkExTools/Navigator.h
Tracking/TrkExtrapolation/TrkExTools/src/Navigator.cxx
+2
-5
2 additions, 5 deletions
Tracking/TrkExtrapolation/TrkExTools/src/Navigator.cxx
with
3 additions
and
6 deletions
Tracking/TrkExtrapolation/TrkExTools/TrkExTools/Navigator.h
+
1
−
1
View file @
75a58f99
...
@@ -134,7 +134,7 @@ namespace Trk {
...
@@ -134,7 +134,7 @@ namespace Trk {
(
void
)
trackPar
;
(
void
)
trackPar
;
}
}
StatusCode
updateTrackingGeometry
()
const
;
void
updateTrackingGeometry
()
const
;
bool
m_validationMode
;
//!<This becomes a dummy option for now
bool
m_validationMode
;
//!<This becomes a dummy option for now
...
...
This diff is collapsed.
Click to expand it.
Tracking/TrkExtrapolation/TrkExTools/src/Navigator.cxx
+
2
−
5
View file @
75a58f99
...
@@ -605,16 +605,13 @@ Trk::Navigator::trackingGeometry() const {
...
@@ -605,16 +605,13 @@ Trk::Navigator::trackingGeometry() const {
return
m_trackingGeometry
;
return
m_trackingGeometry
;
}
}
StatusCode
void
Trk
::
Navigator
::
updateTrackingGeometry
()
const
{
Trk
::
Navigator
::
updateTrackingGeometry
()
const
{
// -------------------- public TrackingGeometry (from DetectorStore) ----------------------------
// -------------------- public TrackingGeometry (from DetectorStore) ----------------------------
StatusCode
s
=
StatusCode
::
SUCCESS
;
if
(
detStore
()
->
retrieve
(
m_trackingGeometry
,
m_trackingGeometryName
).
isFailure
())
{
s
=
detStore
()
->
retrieve
(
m_trackingGeometry
,
m_trackingGeometryName
);
if
(
s
.
isFailure
())
{
ATH_MSG_FATAL
(
"Could not retrieve TrackingGeometry '"
<<
m_trackingGeometryName
<<
"' from DetectorStore."
);
ATH_MSG_FATAL
(
"Could not retrieve TrackingGeometry '"
<<
m_trackingGeometryName
<<
"' from DetectorStore."
);
ATH_MSG_FATAL
(
" - probably the chosen layout is not supported / no cool tag exists. "
);
ATH_MSG_FATAL
(
" - probably the chosen layout is not supported / no cool tag exists. "
);
throw
Trk
::
NavigatorException
();
throw
Trk
::
NavigatorException
();
}
}
return
s
;
}
}
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