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
9a7dd527
Commit
9a7dd527
authored
4 years ago
by
Christos Anastopoulos
Browse files
Options
Downloads
Patches
Plain Diff
TrkAlignableSurfaces. Clang llvm 9 warnings on missing override
parent
b0a7f876
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Tracking/TrkDetDescr/TrkAlignableSurfaces/TrkAlignableSurfaces/AlignablePlaneSurface.h
+7
-7
7 additions, 7 deletions
...ableSurfaces/TrkAlignableSurfaces/AlignablePlaneSurface.h
with
7 additions
and
7 deletions
Tracking/TrkDetDescr/TrkAlignableSurfaces/TrkAlignableSurfaces/AlignablePlaneSurface.h
+
7
−
7
View file @
9a7dd527
...
...
@@ -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 */
...
...
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