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
839fec7c
Commit
839fec7c
authored
8 years ago
by
Van Herck, Walter
Browse files
Options
Downloads
Patches
Plain Diff
Remove translating Transform3D back and forth in FormFactorDecoratorRotation::clone()
parent
db42d8f0
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/DecoratedFormFactor/FormFactorDecoratorRotation.cpp
+9
-4
9 additions, 4 deletions
Core/DecoratedFormFactor/FormFactorDecoratorRotation.cpp
Core/DecoratedFormFactor/FormFactorDecoratorRotation.h
+2
-0
2 additions, 0 deletions
Core/DecoratedFormFactor/FormFactorDecoratorRotation.h
with
11 additions
and
4 deletions
Core/DecoratedFormFactor/FormFactorDecoratorRotation.cpp
+
9
−
4
View file @
839fec7c
...
@@ -27,12 +27,9 @@ FormFactorDecoratorRotation::FormFactorDecoratorRotation(
...
@@ -27,12 +27,9 @@ FormFactorDecoratorRotation::FormFactorDecoratorRotation(
m_transform
=
rotation
.
getTransform3D
();
m_transform
=
rotation
.
getTransform3D
();
}
}
// TODO: can we avoid the conversion from IRotation to Transform3D and back?
FormFactorDecoratorRotation
*
FormFactorDecoratorRotation
::
clone
()
const
FormFactorDecoratorRotation
*
FormFactorDecoratorRotation
::
clone
()
const
{
{
std
::
unique_ptr
<
IRotation
>
P_rotation
(
IRotation
::
createRotation
(
m_transform
));
return
new
FormFactorDecoratorRotation
(
*
mp_form_factor
,
m_transform
);
return
new
FormFactorDecoratorRotation
(
*
mp_form_factor
,
*
P_rotation
);
}
}
complex_t
FormFactorDecoratorRotation
::
evaluate
(
const
WavevectorInfo
&
wavevectors
)
const
complex_t
FormFactorDecoratorRotation
::
evaluate
(
const
WavevectorInfo
&
wavevectors
)
const
...
@@ -47,6 +44,14 @@ Eigen::Matrix2cd FormFactorDecoratorRotation::evaluatePol(const WavevectorInfo &
...
@@ -47,6 +44,14 @@ Eigen::Matrix2cd FormFactorDecoratorRotation::evaluatePol(const WavevectorInfo &
return
mp_form_factor
->
evaluatePol
(
rotated_wavevectors
);
return
mp_form_factor
->
evaluatePol
(
rotated_wavevectors
);
}
}
FormFactorDecoratorRotation
::
FormFactorDecoratorRotation
(
const
IFormFactor
&
form_factor
,
const
Transform3D
&
transform
)
:
IFormFactorDecorator
(
form_factor
)
{
setName
(
BornAgain
::
FormFactorDecoratorRotationType
);
m_transform
=
transform
;
}
WavevectorInfo
FormFactorDecoratorRotation
::
rotate_wavevectors
(
WavevectorInfo
FormFactorDecoratorRotation
::
rotate_wavevectors
(
const
WavevectorInfo
&
wavevectors
)
const
const
WavevectorInfo
&
wavevectors
)
const
{
{
...
...
This diff is collapsed.
Click to expand it.
Core/DecoratedFormFactor/FormFactorDecoratorRotation.h
+
2
−
0
View file @
839fec7c
...
@@ -40,6 +40,8 @@ public:
...
@@ -40,6 +40,8 @@ public:
private
:
private
:
Transform3D
m_transform
;
Transform3D
m_transform
;
//! Private constructor for cloning.
FormFactorDecoratorRotation
(
const
IFormFactor
&
form_factor
,
const
Transform3D
&
transform
);
WavevectorInfo
rotate_wavevectors
(
const
WavevectorInfo
&
wavevectors
)
const
;
WavevectorInfo
rotate_wavevectors
(
const
WavevectorInfo
&
wavevectors
)
const
;
};
};
...
...
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