Skip to content
Snippets Groups Projects
Commit ed3b7b1c authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

expand auto

parent 292e58cd
No related branches found
No related tags found
1 merge request!1657Ingest several internal reports into DevRef
No preview for this file type
......@@ -718,6 +718,10 @@ In the case of a semi-infinite layer, the vertical component becomes zero and
Last updated to reflect the actual code in May 2023.
%===============================================================================
\subsection{Call chain}
%===============================================================================
\footnotesize
\parindent=0pt
\parskip=1ex
......@@ -758,6 +762,12 @@ compute up and down travelling amplitudes for each sample layer.
Functions \T{fluxes} and \T{topLayerR} are implemented
in files \SRC{Resample/Specular}{ComputeFluxScalar.cpp} and
\SRC{Resample/Specular}{ComputeFluxMagnetic.cpp}.
\SRC{Resample/Specular}{ComputeFluxMagnetic.cpp},
where they share some local functions.
%===============================================================================
\subsection{Scalar fluxes}
%===============================================================================
\index{Multilayer|)}%
......@@ -183,7 +183,7 @@ Fluxes Compute::SpecularMagnetic::fluxes(const SliceStack& slices, const R3& k,
ASSERT(slices.size() == kz.size());
Fluxes result;
for (auto& coeff : ::computeFlux(slices, kz, slices.roughnessModel(), forward))
for (const MatrixFlux& coeff : ::computeFlux(slices, kz, slices.roughnessModel(), forward))
result.emplace_back(new MatrixFlux(coeff));
return result;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment