Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review 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
atlas
athena
Merge requests
!58168
MuonRIO_OnTrackCreators: Fix clang warnings.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
MuonRIO_OnTrackCreators: Fix clang warnings.
ssnyder/athena:clang.MuonRIO_OnTrackCreators-20221107
into
master
Overview
4
Commits
1
Pipelines
1
Changes
1
Merged
Scott Snyder
requested to merge
ssnyder/athena:clang.MuonRIO_OnTrackCreators-20221107
into
master
2 years ago
Overview
4
Commits
1
Pipelines
1
Changes
1
Expand
Missing override keywords.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
3fd2e91d
1 commit,
2 years ago
1 file
+
5
−
5
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
MuonSpectrometer/MuonReconstruction/MuonRIO_OnTrackCreators/MuonClusterOnTrackCreator/src/MuonClusterOnTrackCreator.h
+
5
−
5
Options
/*
Copyright (C) 2002-202
0
CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-202
2
CERN for the benefit of the ATLAS collaboration
*/
///////////////////////////////////////////////////////////////////
@@ -33,7 +33,7 @@ namespace Muon {
public:
MuonClusterOnTrackCreator
(
const
std
::
string
&
,
const
std
::
string
&
,
const
IInterface
*
);
virtual
~
MuonClusterOnTrackCreator
()
=
default
;
virtual
StatusCode
initialize
();
virtual
StatusCode
initialize
()
override
;
/** @brief Create new Muon::MuonClusterOnTrack from a Trk::PrepRawData and a predicted Trk::TrackParameter.
@param RIO Trk::PrepRawData object to be calibrated
@@ -41,7 +41,7 @@ namespace Muon {
@return a pointer to a new Muon::MuonClusterOnTrack object, zero if calibration failed.
The ownership of the new Muon::MuonClusterOnTrack is passed to the client calling the tool
*/
virtual
const
MuonClusterOnTrack
*
createRIO_OnTrack
(
const
Trk
::
PrepRawData
&
RIO
,
const
Amg
::
Vector3D
&
GP
)
const
;
virtual
const
MuonClusterOnTrack
*
createRIO_OnTrack
(
const
Trk
::
PrepRawData
&
RIO
,
const
Amg
::
Vector3D
&
GP
)
const
override
;
/** @brief Create new Muon::MuonClusterOnTrack from a Trk::PrepRawData and a prediction of the global position and direction.
It is only implemented for the CSCs, for RPC and TGC Trk::PrepRawData the result is the same as for the routine without the
@@ -53,7 +53,7 @@ namespace Muon {
The ownership of the new Muon::MuonClusterOnTrack is passed to the client calling the tool
*/
virtual
const
MuonClusterOnTrack
*
createRIO_OnTrack
(
const
Trk
::
PrepRawData
&
RIO
,
const
Amg
::
Vector3D
&
GP
,
const
Amg
::
Vector3D
&
GD
)
const
;
const
Amg
::
Vector3D
&
GD
)
const
override
;
/** @brief Create new Muon::MuonClusterOnTrack from a Trk::PrepRawData and the predicted Trk::TrackParameter at the measurement
surface.
@@ -62,7 +62,7 @@ namespace Muon {
@return a pointer to a new Muon::MuonClusterOnTrack object, zero if calibration failed.
The ownership of the new Muon::MuonClusterOnTrack is passed to the client calling the tool
*/
virtual
const
MuonClusterOnTrack
*
correct
(
const
Trk
::
PrepRawData
&
RIO
,
const
Trk
::
TrackParameters
&
TP
)
const
;
virtual
const
MuonClusterOnTrack
*
correct
(
const
Trk
::
PrepRawData
&
RIO
,
const
Trk
::
TrackParameters
&
TP
)
const
override
;
/** @brief Create new Muon::MuonClusterOnTrack from a Trk::PrepRawData and a predicted Trk::TrackParameter.
Loading