-
Wuttke, Joachim authoredWuttke, Joachim authored
IInterferenceFunction.h 2.45 KiB
// ************************************************************************************************
//
// BornAgain: simulate and fit reflection and scattering
//
//! @file Sample/Aggregate/IInterferenceFunction.h
//! @brief Defines and implements the interface class IInterferenceFunction.
//!
//! @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)
//
// ************************************************************************************************
#ifndef USER_API
#ifndef BORNAGAIN_SAMPLE_AGGREGATE_IINTERFERENCEFUNCTION_H
#define BORNAGAIN_SAMPLE_AGGREGATE_IINTERFERENCEFUNCTION_H
#include "Sample/Scattering/ISampleNode.h"
#include "Base/Vector/Vectors3D.h"
//! Abstract base class of interference functions.
class IInterferenceFunction : public ISampleNode {
public:
IInterferenceFunction(const NodeMeta& meta, const std::vector<double>& PValues);
IInterferenceFunction(double position_var);
IInterferenceFunction* clone() const override = 0;
//! Evaluates the interference function for a given wavevector transfer
virtual double evaluate(const kvector_t q, double outer_iff = 1.0) const;
//! Sets the variance of the position for the calculation of the DW factor
//! It is defined as the variance in each relevant dimension
void setPositionVariance(double var);
//! Returns the position variance
double positionVariance() const { return m_position_var; }
//! If defined by this interference function's parameters, returns the particle density (per
//! area). Otherwise, returns zero or a user-defined value
virtual double getParticleDensity() const { return 0.0; }
//! Indicates if this interference function can be used with a multilayer (DWBA mode)
virtual bool supportsMultilayer() const { return true; }
//! Evaluates the Debye-Waller factor for a given wavevector transfer
double DWfactor(kvector_t q) const;
protected:
double m_position_var;
//! Calculates the structure factor in the absence of extra inner structure
double iff_no_inner(const kvector_t q, double outer_iff) const;
//! Calculates the structure factor without Debye-Waller factor
virtual double iff_without_dw(const kvector_t q) const = 0;
};
#endif // BORNAGAIN_SAMPLE_AGGREGATE_IINTERFERENCEFUNCTION_H
#endif // USER_API