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

ditto Rotation

parent 7fc07bda
No related branches found
No related tags found
1 merge request!560Resolve Decorator Pattern in IFormFactor hierarchy
...@@ -72,7 +72,6 @@ protected: ...@@ -72,7 +72,6 @@ protected:
std::unique_ptr<const Material> m_material; std::unique_ptr<const Material> m_material;
std::unique_ptr<const Material> m_ambient_material; std::unique_ptr<const Material> m_ambient_material;
std::unique_ptr<const R3> m_position; std::unique_ptr<const R3> m_position;
private:
std::unique_ptr<const RotMatrix> m_rotMatrix; std::unique_ptr<const RotMatrix> m_rotMatrix;
}; };
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
FormFactorDecoratorRotation::FormFactorDecoratorRotation(const IDecoratableBorn& ff, FormFactorDecoratorRotation::FormFactorDecoratorRotation(const IDecoratableBorn& ff,
const RotMatrix& rotMatrix) const RotMatrix& rotMatrix)
: DecoratedFF(ff), m_rotMatrix(std::make_unique<RotMatrix>(rotMatrix)) : DecoratedFF(ff)
{ {
setRotMatrix(rotMatrix); setRotMatrix(rotMatrix);
} }
......
...@@ -44,9 +44,6 @@ public: ...@@ -44,9 +44,6 @@ public:
#ifndef SWIG #ifndef SWIG
Eigen::Matrix2cd thePolFF(const WavevectorInfo& wavevectors) const override; Eigen::Matrix2cd thePolFF(const WavevectorInfo& wavevectors) const override;
#endif #endif
private:
std::unique_ptr<RotMatrix> m_rotMatrix;
}; };
#endif // BORNAGAIN_SAMPLE_SCATTERING_FORMFACTORDECORATORROTATION_H #endif // BORNAGAIN_SAMPLE_SCATTERING_FORMFACTORDECORATORROTATION_H
......
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