Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
mantid
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
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
mantidproject
mantid
Commits
df183f55
Commit
df183f55
authored
4 years ago
by
Owen Arnold
Browse files
Options
Downloads
Patches
Plain Diff
Remove operator overload due to hiding
parent
2801036b
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Framework/Geometry/inc/MantidGeometry/Crystal/SpaceGroup.h
+0
-2
0 additions, 2 deletions
Framework/Geometry/inc/MantidGeometry/Crystal/SpaceGroup.h
Framework/Geometry/src/Crystal/SpaceGroup.cpp
+0
-9
0 additions, 9 deletions
Framework/Geometry/src/Crystal/SpaceGroup.cpp
with
0 additions
and
11 deletions
Framework/Geometry/inc/MantidGeometry/Crystal/SpaceGroup.h
+
0
−
2
View file @
df183f55
...
@@ -77,8 +77,6 @@ public:
...
@@ -77,8 +77,6 @@ public:
PointGroup_sptr
getPointGroup
()
const
;
PointGroup_sptr
getPointGroup
()
const
;
Group_const_sptr
getSiteSymmetryGroup
(
const
Kernel
::
V3D
&
position
)
const
;
Group_const_sptr
getSiteSymmetryGroup
(
const
Kernel
::
V3D
&
position
)
const
;
bool
operator
==
(
const
SpaceGroup
&
other
)
const
;
bool
operator
!=
(
const
SpaceGroup
&
other
)
const
;
protected
:
protected
:
size_t
m_number
;
size_t
m_number
;
...
...
This diff is collapsed.
Click to expand it.
Framework/Geometry/src/Crystal/SpaceGroup.cpp
+
0
−
9
View file @
df183f55
...
@@ -114,15 +114,6 @@ Group_const_sptr SpaceGroup::getSiteSymmetryGroup(const V3D &position) const {
...
@@ -114,15 +114,6 @@ Group_const_sptr SpaceGroup::getSiteSymmetryGroup(const V3D &position) const {
return
GroupFactory
::
create
<
Group
>
(
siteSymmetryOps
);
return
GroupFactory
::
create
<
Group
>
(
siteSymmetryOps
);
}
}
bool
SpaceGroup
::
operator
==
(
const
SpaceGroup
&
other
)
const
{
return
Group
::
operator
==
(
other
)
&&
this
->
m_number
==
other
.
m_number
&&
this
->
m_hmSymbol
==
other
.
hmSymbol
();
}
bool
SpaceGroup
::
operator
!=
(
const
SpaceGroup
&
other
)
const
{
return
!
this
->
operator
==
(
other
);
}
std
::
ostream
&
operator
<<
(
std
::
ostream
&
stream
,
const
SpaceGroup
&
self
)
{
std
::
ostream
&
operator
<<
(
std
::
ostream
&
stream
,
const
SpaceGroup
&
self
)
{
stream
<<
"Space group with Hermann-Mauguin symbol: "
<<
self
.
hmSymbol
();
stream
<<
"Space group with Hermann-Mauguin symbol: "
<<
self
.
hmSymbol
();
return
stream
;
return
stream
;
...
...
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