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

IParticle: privatize members

parent bb566246
No related branches found
No related tags found
1 merge request!1169minor clarifications
...@@ -26,9 +26,9 @@ Compound* Compound::clone() const ...@@ -26,9 +26,9 @@ Compound* Compound::clone() const
result->setAbundance(m_abundance); result->setAbundance(m_abundance);
for (size_t index = 0; index < m_particles.size(); ++index) for (size_t index = 0; index < m_particles.size(); ++index)
result->addParticle(*m_particles[index]); result->addParticle(*m_particles[index]);
if (m_rotation) if (rotation())
result->setRotation(*m_rotation); result->setRotation(*rotation());
result->setParticlePosition(m_position); result->setParticlePosition(particlePosition());
return result; return result;
} }
......
...@@ -32,9 +32,9 @@ CoreAndShell* CoreAndShell::clone() const ...@@ -32,9 +32,9 @@ CoreAndShell* CoreAndShell::clone() const
{ {
auto* result = new CoreAndShell(*m_shell, *m_core); auto* result = new CoreAndShell(*m_shell, *m_core);
result->setAbundance(m_abundance); result->setAbundance(m_abundance);
if (m_rotation) if (rotation())
result->setRotation(*m_rotation); result->setRotation(*rotation());
result->setParticlePosition(m_position); result->setParticlePosition(particlePosition());
return result; return result;
} }
......
...@@ -83,6 +83,8 @@ public: ...@@ -83,6 +83,8 @@ public:
protected: protected:
double m_abundance{1.0}; double m_abundance{1.0};
private:
R3 m_position; R3 m_position;
std::unique_ptr<IRotation> m_rotation; std::unique_ptr<IRotation> m_rotation;
}; };
......
...@@ -35,9 +35,9 @@ Mesocrystal* Mesocrystal::clone() const ...@@ -35,9 +35,9 @@ Mesocrystal* Mesocrystal::clone() const
{ {
auto* result = new Mesocrystal(m_crystal->clone(), m_meso_formfactor->clone()); auto* result = new Mesocrystal(m_crystal->clone(), m_meso_formfactor->clone());
result->setAbundance(m_abundance); result->setAbundance(m_abundance);
if (m_rotation) if (rotation())
result->setRotation(*m_rotation); result->setRotation(*rotation());
result->setParticlePosition(m_position); result->setParticlePosition(particlePosition());
return result; return result;
} }
......
...@@ -37,9 +37,9 @@ Particle* Particle::clone() const ...@@ -37,9 +37,9 @@ Particle* Particle::clone() const
ASSERT(m_formfactor); ASSERT(m_formfactor);
auto* result = new Particle(m_material, *m_formfactor); auto* result = new Particle(m_material, *m_formfactor);
result->setAbundance(m_abundance); result->setAbundance(m_abundance);
if (m_rotation) if (rotation())
result->setRotation(*m_rotation); result->setRotation(*rotation());
result->setParticlePosition(m_position); result->setParticlePosition(particlePosition());
return result; return result;
} }
......
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