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
5e6b1a58
Commit
5e6b1a58
authored
8 years ago
by
Van Herck, Walter
Browse files
Options
Downloads
Patches
Plain Diff
Add field in SimulationElement to indicate if this element contains the specular wavevector
parent
d8ecef9e
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/Binning/SimulationElement.cpp
+11
-4
11 additions, 4 deletions
Core/Binning/SimulationElement.cpp
Core/Binning/SimulationElement.h
+4
-0
4 additions, 0 deletions
Core/Binning/SimulationElement.h
with
15 additions
and
4 deletions
Core/Binning/SimulationElement.cpp
+
11
−
4
View file @
5e6b1a58
...
@@ -21,14 +21,15 @@
...
@@ -21,14 +21,15 @@
SimulationElement
::
SimulationElement
(
double
wavelength
,
double
alpha_i
,
double
phi_i
,
SimulationElement
::
SimulationElement
(
double
wavelength
,
double
alpha_i
,
double
phi_i
,
const
IPixelMap
*
pixelmap
)
const
IPixelMap
*
pixelmap
)
:
m_wavelength
(
wavelength
),
m_alpha_i
(
alpha_i
),
m_phi_i
(
phi_i
),
m_intensity
(
0.0
)
:
m_wavelength
(
wavelength
),
m_alpha_i
(
alpha_i
),
m_phi_i
(
phi_i
),
m_intensity
(
0.0
)
,
m_contains_specular
(
false
)
{
{
mP_pixel_map
.
reset
(
pixelmap
->
clone
());
mP_pixel_map
.
reset
(
pixelmap
->
clone
());
initPolarization
();
initPolarization
();
}
}
SimulationElement
::
SimulationElement
(
const
SimulationElement
&
other
)
SimulationElement
::
SimulationElement
(
const
SimulationElement
&
other
)
:
m_wavelength
(
other
.
m_wavelength
),
m_alpha_i
(
other
.
m_alpha_i
),
m_phi_i
(
other
.
m_phi_i
)
,
:
m_wavelength
(
other
.
m_wavelength
),
m_alpha_i
(
other
.
m_alpha_i
),
m_phi_i
(
other
.
m_phi_i
)
m_intensity
(
other
.
m_intensity
)
,
m_intensity
(
other
.
m_intensity
)
,
m_contains_specular
(
other
.
m_contains_specular
)
{
{
mP_pixel_map
.
reset
(
other
.
mP_pixel_map
->
clone
());
mP_pixel_map
.
reset
(
other
.
mP_pixel_map
->
clone
());
m_polarization
=
other
.
m_polarization
;
m_polarization
=
other
.
m_polarization
;
...
@@ -47,8 +48,8 @@ SimulationElement& SimulationElement::operator=(const SimulationElement &other)
...
@@ -47,8 +48,8 @@ SimulationElement& SimulationElement::operator=(const SimulationElement &other)
}
}
SimulationElement
::
SimulationElement
(
const
SimulationElement
&
other
,
double
x
,
double
y
)
SimulationElement
::
SimulationElement
(
const
SimulationElement
&
other
,
double
x
,
double
y
)
:
m_wavelength
(
other
.
m_wavelength
),
m_alpha_i
(
other
.
m_alpha_i
),
m_phi_i
(
other
.
m_phi_i
)
,
:
m_wavelength
(
other
.
m_wavelength
),
m_alpha_i
(
other
.
m_alpha_i
),
m_phi_i
(
other
.
m_phi_i
)
m_intensity
(
other
.
m_intensity
)
,
m_intensity
(
other
.
m_intensity
)
,
m_contains_specular
(
other
.
m_contains_specular
)
{
{
mP_pixel_map
.
reset
(
other
.
mP_pixel_map
->
createZeroSizeMap
(
x
,
y
));
mP_pixel_map
.
reset
(
other
.
mP_pixel_map
->
createZeroSizeMap
(
x
,
y
));
m_polarization
=
other
.
m_polarization
;
m_polarization
=
other
.
m_polarization
;
...
@@ -84,6 +85,7 @@ void SimulationElement::swapContent(SimulationElement &other)
...
@@ -84,6 +85,7 @@ void SimulationElement::swapContent(SimulationElement &other)
std
::
swap
(
m_polarization
,
other
.
m_polarization
);
std
::
swap
(
m_polarization
,
other
.
m_polarization
);
std
::
swap
(
m_analyzer_operator
,
other
.
m_analyzer_operator
);
std
::
swap
(
m_analyzer_operator
,
other
.
m_analyzer_operator
);
std
::
swap
(
mP_pixel_map
,
other
.
mP_pixel_map
);
std
::
swap
(
mP_pixel_map
,
other
.
mP_pixel_map
);
std
::
swap
(
m_contains_specular
,
other
.
m_contains_specular
);
}
}
void
SimulationElement
::
initPolarization
()
void
SimulationElement
::
initPolarization
()
...
@@ -108,6 +110,11 @@ bool SimulationElement::containsSpecularWavevector() const
...
@@ -108,6 +110,11 @@ bool SimulationElement::containsSpecularWavevector() const
return
mP_pixel_map
->
contains
(
k
);
return
mP_pixel_map
->
contains
(
k
);
}
}
void
SimulationElement
::
setSpecular
(
bool
contains_specular
)
{
m_contains_specular
=
contains_specular
;
}
kvector_t
SimulationElement
::
getK
(
double
x
,
double
y
)
const
{
kvector_t
SimulationElement
::
getK
(
double
x
,
double
y
)
const
{
return
mP_pixel_map
->
getK
(
x
,
y
,
m_wavelength
);
return
mP_pixel_map
->
getK
(
x
,
y
,
m_wavelength
);
}
}
...
...
This diff is collapsed.
Click to expand it.
Core/Binning/SimulationElement.h
+
4
−
0
View file @
5e6b1a58
...
@@ -85,6 +85,9 @@ public:
...
@@ -85,6 +85,9 @@ public:
//! check if element contains given wavevector
//! check if element contains given wavevector
bool
containsSpecularWavevector
()
const
;
bool
containsSpecularWavevector
()
const
;
//! indicate that this element contains the specular wavevector
void
setSpecular
(
bool
contains_specular
);
private
:
private
:
//! swap function
//! swap function
void
swapContent
(
SimulationElement
&
other
);
void
swapContent
(
SimulationElement
&
other
);
...
@@ -99,6 +102,7 @@ private:
...
@@ -99,6 +102,7 @@ private:
Eigen
::
Matrix2cd
m_analyzer_operator
;
//!< polarization analyzer operator
Eigen
::
Matrix2cd
m_analyzer_operator
;
//!< polarization analyzer operator
#endif
#endif
std
::
unique_ptr
<
IPixelMap
>
mP_pixel_map
;
std
::
unique_ptr
<
IPixelMap
>
mP_pixel_map
;
bool
m_contains_specular
;
};
};
...
...
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