Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
mantidproject
mantid
Commits
3fbdbd9c
Commit
3fbdbd9c
authored
Mar 23, 2020
by
Hahn, Steven
Browse files
Change passing by const reference to value
Signed-off-by:
Steven Hahn
<
hahnse@ornl.gov
>
parent
2bd701b8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Framework/Algorithms/src/Minus.cpp
View file @
3fbdbd9c
...
...
@@ -33,13 +33,13 @@ void Minus::performBinaryOperation(const HistogramData::Histogram &lhs,
HistogramData
::
HistogramE
&
EOut
)
{
using
std
::
placeholders
::
_1
;
std
::
transform
(
lhs
.
y
().
begin
(),
lhs
.
y
().
end
(),
YOut
.
begin
(),
[
rhsY
](
const
double
&
l
)
{
return
l
-
rhsY
;
});
[
rhsY
](
double
l
)
{
return
l
-
rhsY
;
});
// Only do E if non-zero, otherwise just copy
if
(
rhsE
!=
0
)
{
double
rhsE2
=
rhsE
*
rhsE
;
std
::
transform
(
lhs
.
e
().
begin
(),
lhs
.
e
().
end
(),
EOut
.
begin
(),
[
rhsE2
](
const
double
&
l
)
{
return
std
::
sqrt
(
l
*
l
+
rhsE2
);
});
[
rhsE2
](
double
l
)
{
return
std
::
sqrt
(
l
*
l
+
rhsE2
);
});
}
else
EOut
=
lhs
.
e
();
}
...
...
Framework/Algorithms/src/Plus.cpp
View file @
3fbdbd9c
...
...
@@ -36,14 +36,14 @@ void Plus::performBinaryOperation(const HistogramData::Histogram &lhs,
HistogramData
::
HistogramE
&
EOut
)
{
using
std
::
placeholders
::
_1
;
std
::
transform
(
lhs
.
y
().
begin
(),
lhs
.
y
().
end
(),
YOut
.
begin
(),
[
rhsY
](
const
double
&
l
)
{
return
l
+
rhsY
;
});
[
rhsY
](
double
l
)
{
return
l
+
rhsY
;
});
// Only do E if non-zero, otherwise just copy
if
(
rhsE
!=
0.
)
{
double
rhsE2
=
rhsE
*
rhsE
;
std
::
transform
(
lhs
.
e
().
begin
(),
lhs
.
e
().
end
(),
EOut
.
begin
(),
[
rhsE2
](
const
double
&
l
)
{
return
std
::
sqrt
(
l
*
l
+
rhsE2
);
});
[
rhsE2
](
double
l
)
{
return
std
::
sqrt
(
l
*
l
+
rhsE2
);
});
}
else
EOut
=
lhs
.
e
();
}
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment