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

Update reference data involving FF FullSphere: has improved

parent 0e47b749
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@
//!
//! @homepage http://www.bornagainproject.org
//! @license GNU General Public License v3 or higher (see COPYING)
//! @copyright Forschungszentrum Jülich GmbH 2015
//! @copyright Forschungszentrum Jülich GmbH 2015-16
//! @authors Scientific Computing Group at MLZ Garching
//! @authors C. Durniak, M. Ganeva, G. Pospelov, W. Van Herck, J. Wuttke
//
......
......@@ -34,9 +34,7 @@ FormFactorTruncatedSphere::FormFactorTruncatedSphere(double radius, double heigh
mP_integrator = make_integrator_complex(this, &FormFactorTruncatedSphere::Integrand);
}
FormFactorTruncatedSphere::~FormFactorTruncatedSphere()
{
}
FormFactorTruncatedSphere::~FormFactorTruncatedSphere() {}
bool FormFactorTruncatedSphere::check_initialization() const
{
......
......@@ -34,16 +34,13 @@ public:
//! @param radius of Truncated Sphere
//! @param height of Truncated Sphere
FormFactorTruncatedSphere(double radius, double height);
virtual ~FormFactorTruncatedSphere();
virtual FormFactorTruncatedSphere *clone() const;
virtual void accept(ISampleVisitor *visitor) const;
virtual double getRadius() const;
double getHeight() const;
virtual double getRadius() const { return m_radius; }
double getHeight() const { return m_height; }
protected:
virtual bool check_initialization() const;
......@@ -62,16 +59,4 @@ private:
#endif
};
inline double FormFactorTruncatedSphere::getRadius() const
{
return m_radius;
}
inline double FormFactorTruncatedSphere::getHeight() const
{
return m_height;
}
#endif // FORMFACTORTRUNCATEDSPHERE_H
No preview for this file type
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment