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
!38253
TrkAlignableSurfaces. Clang llvm 9 warnings on missing override
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
TrkAlignableSurfaces. Clang llvm 9 warnings on missing override
ATLAS-EGamma/athena:AlignableSurefaces_missing_override
into
master
Overview
2
Commits
1
Pipelines
1
Changes
1
Merged
Christos Anastopoulos
requested to merge
ATLAS-EGamma/athena:AlignableSurefaces_missing_override
into
master
4 years ago
Overview
2
Commits
1
Pipelines
1
Changes
1
Expand
Mentioning
@ssnyder
as I know he is looking at some of these, so as we do not overlap
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
9a7dd527
1 commit,
4 years ago
1 file
+
7
−
7
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Tracking/TrkDetDescr/TrkAlignableSurfaces/TrkAlignableSurfaces/AlignablePlaneSurface.h
+
7
−
7
Options
@@ -66,9 +66,9 @@ public:
/**Assignment operator */
AlignablePlaneSurface
&
operator
=
(
const
AlignablePlaneSurface
&
sf
);
/**Equality operator*/
bool
operator
==
(
const
Surface
&
sf
)
const
;
virtual
bool
operator
==
(
const
Surface
&
sf
)
const
override
;
/**Implicit constructor - uses the copy constructor */
AlignablePlaneSurface
*
clone
()
const
;
virtual
AlignablePlaneSurface
*
clone
()
const
override
;
/** return associated Detector Element - forwarded from nominal Surface */
const
TrkDetElementBase
*
associatedDetectorElement
()
const
;
@@ -85,19 +85,19 @@ public:
virtual
const
PlaneSurface
&
surfaceRepresentation
()
const
override
;
/** Get the nominal surface */
const
PlaneSurface
&
nominalSurface
()
const
;
virtual
const
PlaneSurface
&
nominalSurface
()
const
override
;
/** Get the nominal transformation */
const
Amg
::
Transform3D
&
nominalTransform
()
const
;
virtual
const
Amg
::
Transform3D
&
nominalTransform
()
const
override
;
/** Add an alignment correction on top of the actual one */
void
addAlignmentCorrection
(
Amg
::
Transform3D
&
corr
);
virtual
void
addAlignmentCorrection
(
Amg
::
Transform3D
&
corr
)
override
;
/** Set an alignment correction on top of the nominal one */
void
setAlignmentCorrection
(
Amg
::
Transform3D
&
corr
);
virtual
void
setAlignmentCorrection
(
Amg
::
Transform3D
&
corr
)
override
;
/** Set an alignment correction on top of the nominal one */
void
setAlignableTransform
(
Amg
::
Transform3D
&
trans
);
virtual
void
setAlignableTransform
(
Amg
::
Transform3D
&
trans
)
override
;
protected:
/** The pointer ro the nominal Surface */
Loading