From dbdb5a86ddb2dcd6f0660d6a540eda3cacf51d5c Mon Sep 17 00:00:00 2001 From: "Joachim Wuttke (h)" <j.wuttke@fz-juelich.de> Date: Thu, 15 Jul 2021 14:41:27 +0200 Subject: [PATCH] ProcessedSample::fluxesIn used in DepthProbeComputation --- Core/Computation/DepthProbeComputation.cpp | 5 +++-- Resample/Processed/ProcessedSample.cpp | 5 +++++ Resample/Processed/ProcessedSample.h | 3 +++ 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/Core/Computation/DepthProbeComputation.cpp b/Core/Computation/DepthProbeComputation.cpp index 18ed1a910c5..e18737e5fbb 100644 --- a/Core/Computation/DepthProbeComputation.cpp +++ b/Core/Computation/DepthProbeComputation.cpp @@ -17,7 +17,6 @@ #include "Base/Progress/ProgressHandler.h" #include "Core/Element/DepthProbeElement.h" #include "Resample/Flux/IFlux.h" -#include "Resample/Fresnel/IFresnelMap.h" #include "Resample/Processed/ProcessedSample.h" DepthProbeComputation::DepthProbeComputation(const ProcessedSample& re_sample, @@ -44,6 +43,8 @@ void DepthProbeComputation::runProtected() size_t start_z_ind = n_z; std::valarray<double> intensities(0.0, n_z); + std::vector<std::unique_ptr<const IFlux>> fluxes = m_re_sample.fluxesIn(ele.getKi()); + double z_layer_bottom(0.0); double z_layer_top(0.0); for (size_t i_layer = 0; i_layer < n_layers && start_z_ind != 0; ++i_layer) { @@ -51,7 +52,7 @@ void DepthProbeComputation::runProtected() z_layer_top = i_layer ? m_re_sample.sliceTopZ(i_layer) : 0; // get R & T coefficients for current layer - const auto flux = m_re_sample.fresnelMap()->getInFlux(ele.getKi(), i_layer); + const auto& flux = fluxes[i_layer]; const complex_t R = flux->getScalarR(); const complex_t T = flux->getScalarT(); const complex_t kz_out = flux->getScalarKz(); diff --git a/Resample/Processed/ProcessedSample.cpp b/Resample/Processed/ProcessedSample.cpp index 2ee60493bb6..1d6099f726b 100644 --- a/Resample/Processed/ProcessedSample.cpp +++ b/Resample/Processed/ProcessedSample.cpp @@ -323,6 +323,11 @@ bool ProcessedSample::hasRoughness() const return false; } +std::vector<std::unique_ptr<const IFlux>> ProcessedSample::fluxesIn(const kvector_t& k) const +{ + return m_specular_strategy->Execute(m_refined_stack, k); +} + double ProcessedSample::crossCorrSpectralFun(const kvector_t kvec, size_t j, size_t k) const { const double xCorrLength = m_sample.crossCorrLength(); diff --git a/Resample/Processed/ProcessedSample.h b/Resample/Processed/ProcessedSample.h index 2ac626b39c5..dda57c6bbcd 100644 --- a/Resample/Processed/ProcessedSample.h +++ b/Resample/Processed/ProcessedSample.h @@ -25,6 +25,7 @@ #include <memory> #include <vector> +class IFlux; class IFresnelMap; class ISpecularStrategy; class Material; @@ -59,6 +60,8 @@ public: bool hasRoughness() const; const MultiLayer& sample() const { return m_sample; } + std::vector<std::unique_ptr<const IFlux>> fluxesIn(const kvector_t& k) const; + //! Fourier transform of the correlation function of roughnesses between the interfaces double crossCorrSpectralFun(const kvector_t kvec, size_t j, size_t k) const; -- GitLab