1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
// ************************************************************************************************
//
// BornAgain: simulate and fit reflection and scattering
//
//! @file Sample/HardParticle/Bar.cpp
//! @brief Implements classes Bar*.
//!
//! @homepage http://www.bornagainproject.org
//! @license GNU General Public License v3 or higher (see COPYING)
//! @copyright Forschungszentrum Jülich GmbH 2018
//! @authors Scientific Computing Group at MLZ (see CITATION, AUTHORS)
//
// ************************************************************************************************
#include "Sample/HardParticle/Bar.h"
#include "Base/Util/Assert.h"
#include "Sample/HardParticle/Ripples.h"
// ************************************************************************************************
// class BarGauss
// ************************************************************************************************
BarGauss::BarGauss(const std::vector<double> P)
: IProfileRectangularRipple(P)
{
validateOrThrow();
}
BarGauss::BarGauss(double length, double width, double height)
: BarGauss(std::vector<double>{length, width, height})
{
}
BarGauss* BarGauss::clone() const
{
return new BarGauss(m_length, m_width, m_height);
}
bool BarGauss::contains(const R3&) const
{
throw std::runtime_error("BarGauss cannot be used as mesocrystal outer shape");
}
complex_t BarGauss::factor_x(complex_t qx) const
{
ASSERT(m_validated);
return ripples::factor_x_Gauss(qx, m_length);
}
// ************************************************************************************************
// class BarLorentz
// ************************************************************************************************
BarLorentz::BarLorentz(const std::vector<double> P)
: IProfileRectangularRipple(P)
{
validateOrThrow();
}
BarLorentz::BarLorentz(double length, double width, double height)
: BarLorentz(std::vector<double>{length, width, height})
{
}
BarLorentz* BarLorentz::clone() const
{
return new BarLorentz(m_length, m_width, m_height);
}
bool BarLorentz::contains(const R3&) const
{
throw std::runtime_error("BarLorentz cannot be used as mesocrystal outer shape");
}
complex_t BarLorentz::factor_x(complex_t qx) const
{
ASSERT(m_validated);
return ripples::factor_x_Lorentz(qx, m_length);
}
|