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

Core FFPolyhedron: rename z_origin -> z_bottom

parent 2a4f392d
No related branches found
No related tags found
No related merge requests found
...@@ -421,11 +421,11 @@ void FormFactorPolyhedron::setLimits(double _q, int _n) ...@@ -421,11 +421,11 @@ void FormFactorPolyhedron::setLimits(double _q, int _n)
//! Called by child classes to set faces and other internal variables. //! Called by child classes to set faces and other internal variables.
void FormFactorPolyhedron::setPolyhedron(const PolyhedralTopology& topology, double z_origin, void FormFactorPolyhedron::setPolyhedron(const PolyhedralTopology& topology, double z_bottom,
const std::vector<kvector_t>& vertices) const std::vector<kvector_t>& vertices)
{ {
try { try {
m_z_origin = z_origin; m_z_bottom = z_bottom;
m_sym_Ci = topology.symmetry_Ci; m_sym_Ci = topology.symmetry_Ci;
double diameter = 0; double diameter = 0;
...@@ -472,12 +472,12 @@ void FormFactorPolyhedron::setPolyhedron(const PolyhedralTopology& topology, dou ...@@ -472,12 +472,12 @@ void FormFactorPolyhedron::setPolyhedron(const PolyhedralTopology& topology, dou
} }
} }
//! Returns the form factor F(q) of this polyhedron, respecting the offset z_origin. //! Returns the form factor F(q) of this polyhedron, respecting the offset z_bottom.
complex_t FormFactorPolyhedron::evaluate_for_q(cvector_t q) const complex_t FormFactorPolyhedron::evaluate_for_q(cvector_t q) const
{ {
try { try {
return exp_I(-m_z_origin * q.z()) * evaluate_centered(q); return exp_I(-m_z_bottom * q.z()) * evaluate_centered(q);
} catch (std::logic_error& e) { } catch (std::logic_error& e) {
throw std::logic_error("Bug in " + getName() + ": " + e.what() throw std::logic_error("Bug in " + getName() + ": " + e.what()
+ " [please report to the maintainers]"); + " [please report to the maintainers]");
......
...@@ -116,10 +116,10 @@ public: ...@@ -116,10 +116,10 @@ public:
void assert_platonic() const; void assert_platonic() const;
protected: protected:
double m_z_origin; double m_z_bottom;
bool m_sym_Ci; //!< if true, then faces obtainable by inversion are not provided bool m_sym_Ci; //!< if true, then faces obtainable by inversion are not provided
void setPolyhedron(const PolyhedralTopology& topology, double z_origin, void setPolyhedron(const PolyhedralTopology& topology, double z_bottom,
const std::vector<kvector_t>& vertices); const std::vector<kvector_t>& vertices);
private: private:
......
...@@ -4350,7 +4350,7 @@ C++ includes: FormFactorPolyhedron.h ...@@ -4350,7 +4350,7 @@ C++ includes: FormFactorPolyhedron.h
   
%feature("docstring") FormFactorPolyhedron::evaluate_for_q "complex_t FormFactorPolyhedron::evaluate_for_q(cvector_t q) const override final %feature("docstring") FormFactorPolyhedron::evaluate_for_q "complex_t FormFactorPolyhedron::evaluate_for_q(cvector_t q) const override final
   
Returns the form factor F(q) of this polyhedron, respecting the offset z_origin. Returns the form factor F(q) of this polyhedron, respecting the offset z_bottom.
"; ";
   
%feature("docstring") FormFactorPolyhedron::evaluate_centered "complex_t FormFactorPolyhedron::evaluate_centered(cvector_t q) const %feature("docstring") FormFactorPolyhedron::evaluate_centered "complex_t FormFactorPolyhedron::evaluate_centered(cvector_t q) const
......
...@@ -9381,7 +9381,7 @@ class FormFactorPolyhedron(IFormFactorBorn): ...@@ -9381,7 +9381,7 @@ class FormFactorPolyhedron(IFormFactorBorn):
evaluate_for_q(FormFactorPolyhedron self, cvector_t q) -> complex_t evaluate_for_q(FormFactorPolyhedron self, cvector_t q) -> complex_t
complex_t FormFactorPolyhedron::evaluate_for_q(cvector_t q) const override final complex_t FormFactorPolyhedron::evaluate_for_q(cvector_t q) const override final
   
Returns the form factor F(q) of this polyhedron, respecting the offset z_origin. Returns the form factor F(q) of this polyhedron, respecting the offset z_bottom.
   
""" """
return _libBornAgainCore.FormFactorPolyhedron_evaluate_for_q(self, q) return _libBornAgainCore.FormFactorPolyhedron_evaluate_for_q(self, q)
......
...@@ -126735,7 +126735,7 @@ static PyMethodDef SwigMethods[] = { ...@@ -126735,7 +126735,7 @@ static PyMethodDef SwigMethods[] = {
"FormFactorPolyhedron_evaluate_for_q(FormFactorPolyhedron self, cvector_t q) -> complex_t\n" "FormFactorPolyhedron_evaluate_for_q(FormFactorPolyhedron self, cvector_t q) -> complex_t\n"
"complex_t FormFactorPolyhedron::evaluate_for_q(cvector_t q) const override final\n" "complex_t FormFactorPolyhedron::evaluate_for_q(cvector_t q) const override final\n"
"\n" "\n"
"Returns the form factor F(q) of this polyhedron, respecting the offset z_origin. \n" "Returns the form factor F(q) of this polyhedron, respecting the offset z_bottom. \n"
"\n" "\n"
""}, ""},
{ "FormFactorPolyhedron_evaluate_centered", _wrap_FormFactorPolyhedron_evaluate_centered, METH_VARARGS, "\n" { "FormFactorPolyhedron_evaluate_centered", _wrap_FormFactorPolyhedron_evaluate_centered, METH_VARARGS, "\n"
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