Skip to content
Snippets Groups Projects
Commit 5e6b1a58 authored by Van Herck, Walter's avatar Van Herck, Walter
Browse files

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
...@@ -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);
} }
......
...@@ -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;
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment