Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
BornAgain
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mlz
BornAgain
Commits
badd2e05
Commit
badd2e05
authored
6 years ago
by
Van Herck, Walter
Browse files
Options
Downloads
Patches
Plain Diff
Refactor: non-const ref method arguments to return value
parent
408e1e5c
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
Core/Aggregate/InterferenceFunction2DLattice.cpp
+15
-15
15 additions, 15 deletions
Core/Aggregate/InterferenceFunction2DLattice.cpp
Core/Aggregate/InterferenceFunction2DLattice.h
+3
-4
3 additions, 4 deletions
Core/Aggregate/InterferenceFunction2DLattice.h
with
18 additions
and
19 deletions
Core/Aggregate/InterferenceFunction2DLattice.cpp
+
15
−
15
View file @
badd2e05
...
@@ -158,13 +158,12 @@ void InterferenceFunction2DLattice::init_parameters()
...
@@ -158,13 +158,12 @@ void InterferenceFunction2DLattice::init_parameters()
double
InterferenceFunction2DLattice
::
interferenceForXi
(
double
xi
)
const
double
InterferenceFunction2DLattice
::
interferenceForXi
(
double
xi
)
const
{
{
double
result
=
0.0
;
double
result
=
0.0
;
double
qx_frac
,
qy_frac
;
auto
q_frac
=
calculateReciprocalVectorFraction
(
m_qx
,
m_qy
,
xi
);
calculateReciprocalVectorFraction
(
m_qx
,
m_qy
,
xi
,
qx_frac
,
qy_frac
);
for
(
int
i
=
-
m_na
-
1
;
i
<
m_na
+
2
;
++
i
)
{
for
(
int
i
=
-
m_na
-
1
;
i
<
m_na
+
2
;
++
i
)
{
for
(
int
j
=
-
m_nb
-
1
;
j
<
m_nb
+
2
;
++
j
)
{
for
(
int
j
=
-
m_nb
-
1
;
j
<
m_nb
+
2
;
++
j
)
{
double
qx
=
q
x
_frac
+
i
*
m_sbase
.
m_asx
+
j
*
m_sbase
.
m_bsx
;
double
qx
=
q_frac
.
first
+
i
*
m_sbase
.
m_asx
+
j
*
m_sbase
.
m_bsx
;
double
qy
=
q
y
_frac
+
i
*
m_sbase
.
m_asy
+
j
*
m_sbase
.
m_bsy
;
double
qy
=
q_frac
.
second
+
i
*
m_sbase
.
m_asy
+
j
*
m_sbase
.
m_bsy
;
result
+=
interferenceAtOneRecLatticePoint
(
qx
,
qy
);
result
+=
interferenceAtOneRecLatticePoint
(
qx
,
qy
);
}
}
}
}
...
@@ -177,22 +176,22 @@ double InterferenceFunction2DLattice::interferenceAtOneRecLatticePoint(double qx
...
@@ -177,22 +176,22 @@ double InterferenceFunction2DLattice::interferenceAtOneRecLatticePoint(double qx
throw
Exceptions
::
NullPointerException
(
throw
Exceptions
::
NullPointerException
(
"InterferenceFunction2DLattice::interferenceAtOneRecLatticePoint"
"InterferenceFunction2DLattice::interferenceAtOneRecLatticePoint"
" -> Error! No decay function defined."
);
" -> Error! No decay function defined."
);
double
q_X
,
q_Y
;
double
gamma
=
m_decay
->
gamma
();
double
gamma
=
m_decay
->
gamma
();
transformToPrincipalAxes
(
qx
,
qy
,
gamma
,
q_X
,
q_Y
);
auto
qXY
=
transformToPrincipalAxes
(
qx
,
qy
,
gamma
);
return
m_decay
->
evaluate
(
q
_X
,
q_Y
);
return
m_decay
->
evaluate
(
q
XY
.
first
,
qXY
.
second
);
}
}
// Rotate between orthonormal systems (q_x,q_y) -> (q_X,q_Y)
// Rotate between orthonormal systems (q_x,q_y) -> (q_X,q_Y)
void
InterferenceFunction2DLattice
::
transformToPrincipalAxes
(
std
::
pair
<
double
,
double
>
double
qx
,
double
qy
,
double
gamma
,
double
&
q_X
,
double
&
q_Y
)
const
InterferenceFunction2DLattice
::
transformToPrincipalAxes
(
double
qx
,
double
qy
,
double
gamma
)
const
{
{
q_X
=
qx
*
std
::
cos
(
gamma
)
+
qy
*
std
::
sin
(
gamma
);
double
q_X
=
qx
*
std
::
cos
(
gamma
)
+
qy
*
std
::
sin
(
gamma
);
q_Y
=
-
qx
*
std
::
sin
(
gamma
)
+
qy
*
std
::
cos
(
gamma
);
double
q_Y
=
-
qx
*
std
::
sin
(
gamma
)
+
qy
*
std
::
cos
(
gamma
);
return
{
q_X
,
q_Y
};
}
}
void
InterferenceFunction2DLattice
::
calculateReciprocalVectorFraction
(
std
::
pair
<
double
,
double
>
InterferenceFunction2DLattice
::
calculateReciprocalVectorFraction
(
double
qx
,
double
qy
,
double
xi
,
double
&
qx_frac
,
double
&
qy_frac
)
const
double
qx
,
double
qy
,
double
xi
)
const
{
{
double
a
=
m_lattice
->
length1
();
double
a
=
m_lattice
->
length1
();
double
b
=
m_lattice
->
length2
();
double
b
=
m_lattice
->
length2
();
...
@@ -203,8 +202,9 @@ void InterferenceFunction2DLattice::calculateReciprocalVectorFraction(
...
@@ -203,8 +202,9 @@ void InterferenceFunction2DLattice::calculateReciprocalVectorFraction(
int
qa_int
=
static_cast
<
int
>
(
std
::
lround
(
a
*
qx_rot
/
M_TWOPI
));
int
qa_int
=
static_cast
<
int
>
(
std
::
lround
(
a
*
qx_rot
/
M_TWOPI
));
int
qb_int
=
static_cast
<
int
>
(
int
qb_int
=
static_cast
<
int
>
(
std
::
lround
(
b
*
(
qx
*
std
::
cos
(
alpha
)
+
qy
*
std
::
sin
(
alpha
))
/
M_TWOPI
));
std
::
lround
(
b
*
(
qx
*
std
::
cos
(
alpha
)
+
qy
*
std
::
sin
(
alpha
))
/
M_TWOPI
));
qx_frac
=
qx_rot
-
qa_int
*
m_sbase
.
m_asx
-
qb_int
*
m_sbase
.
m_bsx
;
double
qx_frac
=
qx_rot
-
qa_int
*
m_sbase
.
m_asx
-
qb_int
*
m_sbase
.
m_bsx
;
qy_frac
=
qy_rot
-
qa_int
*
m_sbase
.
m_asy
-
qb_int
*
m_sbase
.
m_bsy
;
double
qy_frac
=
qy_rot
-
qa_int
*
m_sbase
.
m_asy
-
qb_int
*
m_sbase
.
m_bsy
;
return
{
qx_frac
,
qy_frac
};
}
}
void
InterferenceFunction2DLattice
::
initialize_rec_vectors
()
void
InterferenceFunction2DLattice
::
initialize_rec_vectors
()
...
...
This diff is collapsed.
Click to expand it.
Core/Aggregate/InterferenceFunction2DLattice.h
+
3
−
4
View file @
badd2e05
...
@@ -65,13 +65,12 @@ private:
...
@@ -65,13 +65,12 @@ private:
double
interferenceAtOneRecLatticePoint
(
double
qx
,
double
qy
)
const
;
double
interferenceAtOneRecLatticePoint
(
double
qx
,
double
qy
)
const
;
//! Returns reciprocal coordinates in the coordinate system rotated by the angle gamma
//! Returns reciprocal coordinates in the coordinate system rotated by the angle gamma
void
transformToPrincipalAxes
(
double
qx
,
double
qy
,
double
gamma
,
std
::
pair
<
double
,
double
>
transformToPrincipalAxes
(
double
qx
,
double
qy
,
double
gamma
)
const
;
double
&
q_X
,
double
&
q_Y
)
const
;
//! Returns qx,qy coordinates of q - qint, where qint is a reciprocal lattice vector
//! Returns qx,qy coordinates of q - qint, where qint is a reciprocal lattice vector
//! bounding the reciprocal unit cell to which q belongs
//! bounding the reciprocal unit cell to which q belongs
void
calculateReciprocalVectorFraction
(
double
qx
,
double
qy
,
double
xi
,
std
::
pair
<
double
,
double
>
calculateReciprocalVectorFraction
(
double
&
qx
_frac
,
double
&
qy
_frac
)
const
;
double
qx
,
double
qy
,
double
xi
)
const
;
//! Initializes the x,y coordinates of the a*,b* reciprocal bases
//! Initializes the x,y coordinates of the a*,b* reciprocal bases
void
initialize_rec_vectors
();
void
initialize_rec_vectors
();
...
...
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