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

corr

parent ab413efa
No related branches found
No related tags found
1 merge request!207Simplify IDWBA hierarchy (formerly IComputeFF)
......@@ -15,7 +15,7 @@
#include "Resample/DWBA/DWBA_Pol.h"
#include "Base/Vector/WavevectorInfo.h"
#include "Resample/Element/DiffuseElement.h"
#include "Resample/Flux/IFlux.h"
#include "Resample/Flux/MatrixFlux.h"
#include "Sample/Scattering/IFormFactor.h"
namespace {
......@@ -49,8 +49,8 @@ Eigen::Matrix2cd DWBA_Pol::coherentPolFF(const DiffuseElement& ele) const
return result;
}
const IFlux* inFlux = ele.fluxIn(iLayer());
const IFlux* outFlux = ele.fluxOut(iLayer());
const auto* inFlux = dynamic_cast<const MatrixFlux*>(ele.fluxIn(iLayer()));
const auto* outFlux = dynamic_cast<const MatrixFlux*>(ele.fluxOut(iLayer()));
// the required wavevectors inside the layer for
// different eigenmodes and in- and outgoing wavevector;
......
......@@ -31,8 +31,8 @@ complex_t DWBA_Scalar::coherentFF(const DiffuseElement& ele) const
// no slicing, pure Born approximation
return m_ff->theFF(wavevectors);
const IFlux* inFlux = ele.fluxIn(iLayer());
const IFlux* outFlux = ele.fluxOut(iLayer());
const auto* inFlux = dynamic_cast<const ScalarFlux*>(ele.fluxIn(iLayer()));
const auto* outFlux = dynamic_cast<const ScalarFlux*>(ele.fluxOut(iLayer()));
// Retrieve the two different incoming wavevectors in the layer
const cvector_t& ki = wavevectors.getKi();
......
#include "Resample/Coherence/FFSum.h"
#include "Resample/FFCompute/ComputeDWBA.h"
#include "Resample/DWBA/DWBA_Scalar.h"
#include "Sample/HardParticle/FormFactorFullSphere.h"
#include "Tests/GTestWrapper/google_test.h"
......@@ -9,7 +9,7 @@ class CoherentFFSumTest : public ::testing::Test {
TEST_F(CoherentFFSumTest, RelAbundance)
{
FormFactorFullSphere ff(5.0);
std::shared_ptr<const IComputeFF> part(new ComputeDWBA(ff));
auto part = std::make_unique<const DWBA_Scalar>(ff);
CoherentFFSum ffw(1.0, {part});
EXPECT_EQ(1.0, ffw.relativeAbundance());
EXPECT_EQ(5.0, ffw.radialExtension());
......
......@@ -247,15 +247,6 @@ The following functions return the transmitted and reflected amplitudes for diff
Returns z-part of the two wavevector eigenmodes.
";
%feature("docstring") IFlux::getScalarT "virtual complex_t IFlux::getScalarT() const
";
%feature("docstring") IFlux::getScalarR "virtual complex_t IFlux::getScalarR() const
";
%feature("docstring") IFlux::getScalarKz "virtual complex_t IFlux::getScalarKz() const
";
// File: classIInterparticleStrategy.xml
%feature("docstring") IInterparticleStrategy "
......@@ -567,7 +558,7 @@ Returns z-part of the two wavevector eigenmodes.
%feature("docstring") ScalarFlux::getScalarR "complex_t ScalarFlux::getScalarR() const
";
%feature("docstring") ScalarFlux::getScalarKz "virtual complex_t ScalarFlux::getScalarKz() const
%feature("docstring") ScalarFlux::getScalarKz "complex_t ScalarFlux::getScalarKz() const
";
......
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