Skip to content
Snippets Groups Projects
Commit 5e2f46ff authored by Beerwerth, Randolf's avatar Beerwerth, Randolf
Browse files

Hide concrete type returned by SpecularMagneticStrategy

parent dfe20ead
No related branches found
No related tags found
No related merge requests found
...@@ -16,7 +16,6 @@ ...@@ -16,7 +16,6 @@
#include "DelayedProgressCounter.h" #include "DelayedProgressCounter.h"
#include "ScalarRTCoefficients.h" #include "ScalarRTCoefficients.h"
#include "SpecularScalarStrategy.h" #include "SpecularScalarStrategy.h"
#include "SpecularMagneticStrategy.h"
#include "SpecularSimulationElement.h" #include "SpecularSimulationElement.h"
SpecularComputationTerm::SpecularComputationTerm() = default; SpecularComputationTerm::SpecularComputationTerm() = default;
...@@ -59,7 +58,7 @@ void SpecularMatrixTerm::eval(SpecularSimulationElement& elem, ...@@ -59,7 +58,7 @@ void SpecularMatrixTerm::eval(SpecularSimulationElement& elem,
} }
double SpecularMatrixTerm::intensity(const SpecularSimulationElement& elem, double SpecularMatrixTerm::intensity(const SpecularSimulationElement& elem,
std::unique_ptr<MatrixRTCoefficients_v2>& coeff) const SpecularMagneticStrategy::single_coeff_t& coeff) const
{ {
const auto& polarization = elem.polarizationHandler().getPolarization(); const auto& polarization = elem.polarizationHandler().getPolarization();
const auto& analyzer = elem.polarizationHandler().getAnalyzerOperator(); const auto& analyzer = elem.polarizationHandler().getAnalyzerOperator();
......
...@@ -15,6 +15,8 @@ ...@@ -15,6 +15,8 @@
#ifndef SPECULARCOMPUTATIONTERM_H_ #ifndef SPECULARCOMPUTATIONTERM_H_
#define SPECULARCOMPUTATIONTERM_H_ #define SPECULARCOMPUTATIONTERM_H_
#include "SpecularMagneticStrategy.h"
#include <memory> #include <memory>
#include <vector> #include <vector>
...@@ -57,7 +59,7 @@ class SpecularMatrixTerm : public SpecularComputationTerm ...@@ -57,7 +59,7 @@ class SpecularMatrixTerm : public SpecularComputationTerm
protected: protected:
void eval(SpecularSimulationElement& elem, const std::vector<Slice>& slices) const override; void eval(SpecularSimulationElement& elem, const std::vector<Slice>& slices) const override;
double intensity(const SpecularSimulationElement& elem, double intensity(const SpecularSimulationElement& elem,
std::unique_ptr<MatrixRTCoefficients_v2>& coeff) const; SpecularMagneticStrategy::single_coeff_t& coeff) const;
}; };
#endif /* SPECULARCOMPUTATIONTERM_H_ */ #endif /* SPECULARCOMPUTATIONTERM_H_ */
...@@ -80,19 +80,19 @@ MatrixFresnelMap::getCoefficients(const kvector_t& kvec, size_t layer_index, ...@@ -80,19 +80,19 @@ MatrixFresnelMap::getCoefficients(const kvector_t& kvec, size_t layer_index,
const std::vector<Slice>& slices, CoefficientHash& hash_table) const const std::vector<Slice>& slices, CoefficientHash& hash_table) const
{ {
if (!m_use_cache) { if (!m_use_cache) {
auto coeffs = computeRT<RTCoefficients>(slices, kvec); auto coeffs = computeRT<MatrixRTCoefficients_v2>(slices, kvec);
return std::unique_ptr<RTCoefficients>(coeffs[layer_index]->clone()); return SpecularMagneticStrategy::single_coeff_t(coeffs[layer_index]->clone());
} }
const auto& coef_vector = getCoefficientsFromCache(kvec, slices, hash_table); const auto& coef_vector = getCoefficientsFromCache(kvec, slices, hash_table);
return std::unique_ptr<RTCoefficients>(coef_vector[layer_index]->clone()); return SpecularMagneticStrategy::single_coeff_t(coef_vector[layer_index]->clone());
} }
const std::vector<std::unique_ptr<MatrixFresnelMap::RTCoefficients>>& const SpecularMagneticStrategy::coeffs_t&
MatrixFresnelMap::getCoefficientsFromCache(kvector_t kvec, const std::vector<Slice>& slices, MatrixFresnelMap::getCoefficientsFromCache(kvector_t kvec, const std::vector<Slice>& slices,
MatrixFresnelMap::CoefficientHash& hash_table) const MatrixFresnelMap::CoefficientHash& hash_table) const
{ {
auto it = hash_table.find(kvec); auto it = hash_table.find(kvec);
if (it == hash_table.end()) if (it == hash_table.end())
it = hash_table.insert({kvec, computeRT<RTCoefficients>(slices, kvec)}).first; it = hash_table.insert({kvec, computeRT<MatrixRTCoefficients_v2>(slices, kvec)}).first;
return it->second; return it->second;
} }
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
#include "IFresnelMap.h" #include "IFresnelMap.h"
#include "MatrixRTCoefficients.h" #include "MatrixRTCoefficients.h"
#include "MatrixRTCoefficients_v2.h" #include "MatrixRTCoefficients_v2.h"
#include "SpecularMagneticStrategy.h"
#include <cstddef> #include <cstddef>
#include <memory> #include <memory>
#include <unordered_map> #include <unordered_map>
...@@ -34,8 +35,6 @@ class SimulationElement; ...@@ -34,8 +35,6 @@ class SimulationElement;
class BA_CORE_API_ MatrixFresnelMap : public IFresnelMap class BA_CORE_API_ MatrixFresnelMap : public IFresnelMap
{ {
public: public:
using RTCoefficients = MatrixRTCoefficients_v2;
MatrixFresnelMap(); MatrixFresnelMap();
~MatrixFresnelMap() override; ~MatrixFresnelMap() override;
...@@ -53,7 +52,7 @@ private: ...@@ -53,7 +52,7 @@ private:
size_t operator()(const kvector_t& kvec) const noexcept; size_t operator()(const kvector_t& kvec) const noexcept;
}; };
using CoefficientHash = std::unordered_map<kvector_t, std::vector<std::unique_ptr<RTCoefficients>>, HashKVector>; using CoefficientHash = std::unordered_map<kvector_t, SpecularMagneticStrategy::coeffs_t, HashKVector>;
std::unique_ptr<const ILayerRTCoefficients> getCoefficients(const kvector_t& kvec, std::unique_ptr<const ILayerRTCoefficients> getCoefficients(const kvector_t& kvec,
size_t layer_index) const override; size_t layer_index) const override;
...@@ -65,7 +64,7 @@ private: ...@@ -65,7 +64,7 @@ private:
mutable CoefficientHash m_hash_table_out; mutable CoefficientHash m_hash_table_out;
mutable CoefficientHash m_hash_table_in; mutable CoefficientHash m_hash_table_in;
const std::vector<std::unique_ptr<MatrixFresnelMap::RTCoefficients>>& const SpecularMagneticStrategy::coeffs_t&
getCoefficientsFromCache(kvector_t kvec, const std::vector<Slice>& slices, getCoefficientsFromCache(kvector_t kvec, const std::vector<Slice>& slices,
CoefficientHash& hash_table) const; CoefficientHash& hash_table) const;
}; };
......
...@@ -29,21 +29,19 @@ constexpr double magnetic_prefactor = PhysConsts::m_n * PhysConsts::g_factor_n * ...@@ -29,21 +29,19 @@ constexpr double magnetic_prefactor = PhysConsts::m_n * PhysConsts::g_factor_n *
constexpr complex_t I(0.0, 1.0); constexpr complex_t I(0.0, 1.0);
} }
std::vector<std::unique_ptr<MatrixRTCoefficients_v2>> SpecularMagneticStrategy::coeffs_t
SpecularMagneticStrategy::Execute(const std::vector<Slice>& slices, SpecularMagneticStrategy::Execute(const std::vector<Slice>& slices, const kvector_t& k) const
const kvector_t& k) const
{ {
return Execute(slices, KzComputation::computeReducedKz(slices, k)); return Execute(slices, KzComputation::computeReducedKz(slices, k));
} }
std::vector<std::unique_ptr<MatrixRTCoefficients_v2>> SpecularMagneticStrategy::coeffs_t
SpecularMagneticStrategy::Execute(const std::vector<Slice>& slices, SpecularMagneticStrategy::Execute(const std::vector<Slice>& slices, const std::vector<complex_t>& kz) const
const std::vector<complex_t>& kz) const
{ {
if(slices.size() != kz.size()) if(slices.size() != kz.size())
throw std::runtime_error("Number of slices does not match the size of the kz-vector"); throw std::runtime_error("Number of slices does not match the size of the kz-vector");
std::vector<std::unique_ptr<MatrixRTCoefficients_v2>> result; SpecularMagneticStrategy::coeffs_t result;
for(auto& coeff : computeTR(slices, kz)) for(auto& coeff : computeTR(slices, kz))
result.push_back( std::make_unique<MatrixRTCoefficients_v2>(coeff) ); result.push_back( std::make_unique<MatrixRTCoefficients_v2>(coeff) );
......
...@@ -28,14 +28,17 @@ class Slice; ...@@ -28,14 +28,17 @@ class Slice;
class BA_CORE_API_ SpecularMagneticStrategy class BA_CORE_API_ SpecularMagneticStrategy
{ {
public: public:
typedef std::unique_ptr<const MatrixRTCoefficients_v2> single_coeff_t;
typedef std::vector<single_coeff_t> coeffs_t;
//! Computes refraction angle reflection/transmission coefficients //! Computes refraction angle reflection/transmission coefficients
//! for given sliced multilayer and wavevector k //! for given sliced multilayer and wavevector k
std::vector<std::unique_ptr<MatrixRTCoefficients_v2>> coeffs_t
Execute(const std::vector<Slice>& slices, const kvector_t& k) const; Execute(const std::vector<Slice>& slices, const kvector_t& k) const;
//! Computes refraction angle reflection/transmission coefficients //! Computes refraction angle reflection/transmission coefficients
//! for given sliced multilayer and a set of kz projections corresponding to each slice //! for given sliced multilayer and a set of kz projections corresponding to each slice
std::vector<std::unique_ptr<MatrixRTCoefficients_v2>> coeffs_t
Execute(const std::vector<Slice>& slices, const std::vector<complex_t>& kz) const; Execute(const std::vector<Slice>& slices, const std::vector<complex_t>& kz) const;
static std::vector<MatrixRTCoefficients_v2> computeTR(const std::vector<Slice>& slices, static std::vector<MatrixRTCoefficients_v2> computeTR(const std::vector<Slice>& slices,
......
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