BornAgain
1.19.0
Simulate and fit neutron and x-ray scattering at grazing incidence
|
Interference function of a 2D lattice. More...
Public Member Functions | |
InterferenceFunction2DLattice (const Lattice2D &lattice) | |
~InterferenceFunction2DLattice () override | |
void | accept (INodeVisitor *visitor) const override |
Calls the INodeVisitor's visit method. More... | |
InterferenceFunction2DLattice * | clone () const override |
Returns a clone of this ISampleNode object. More... | |
std::vector< const Material * > | containedMaterials () const |
Returns set of unique materials contained in this ISampleNode. More... | |
int | copyNumber (const INode *node) const |
Returns copyNumber of child, which takes into account existence of children with same name. More... | |
ParameterPool * | createParameterTree () const |
Creates new parameter pool, with all local parameters and those of its children. More... | |
std::string | displayName () const |
Returns display name, composed from the name of node and it's copy number. More... | |
double | DWfactor (kvector_t q) const |
Evaluates the Debye-Waller factor for a given wavevector transfer. More... | |
virtual double | evaluate (const kvector_t q, double outer_iff=1.0) const |
Evaluates the interference function for a given wavevector transfer. More... | |
std::vector< const INode * > | getChildren () const override |
Returns a vector of children. More... | |
const std::string & | getName () const |
double | getParticleDensity () const override |
Returns the particle density associated with this 2d lattice. More... | |
bool | integrationOverXi () const |
bool | isMagnetic () const |
Returns true if there is any magnetic material in this ISampleNode. More... | |
const Lattice2D & | lattice () const |
virtual const Material * | material () const |
Returns nullptr, unless overwritten to return a specific material. More... | |
void | onChange () override |
Action to be taken in inherited class when a parameter has changed. More... | |
RealParameter * | parameter (const std::string &name) const |
Returns parameter with given 'name'. More... | |
ParameterPool * | parameterPool () const |
Returns pointer to the parameter pool. More... | |
std::string | parametersToString () const |
Returns multiline string representing available parameters. More... | |
INode * | parent () |
const INode * | parent () const |
double | positionVariance () const |
Returns the position variance. More... | |
std::vector< const INode * > | progeny () const |
Returns a vector of all descendants. More... | |
void | registerChild (INode *node) |
RealParameter & | registerParameter (const std::string &name, double *parpointer) |
void | registerVector (const std::string &base_name, kvector_t *p_vec, const std::string &units="nm") |
void | removeParameter (const std::string &name) |
void | removeVector (const std::string &base_name) |
void | setDecayFunction (const IFTDecayFunction2D &decay) |
Sets two-dimensional decay function. More... | |
void | setIntegrationOverXi (bool integrate_xi) |
void | setName (const std::string &name) |
void | setParameterValue (const std::string &name, double value) |
virtual void | setParent (const INode *newParent) |
void | setPositionVariance (double var) |
Sets the variance of the position for the calculation of the DW factor It is defined as the variance in each relevant dimension. More... | |
void | setVectorValue (const std::string &base_name, kvector_t value) |
virtual bool | supportsMultilayer () const |
Indicates if this interference function can be used with a multilayer (DWBA mode) More... | |
virtual void | transferToCPP () |
Used for Python overriding of clone (see swig/tweaks.py) More... | |
virtual std::string | treeToString () const |
Returns multiline string representing tree structure below the node. More... | |
Static Public Member Functions | |
static std::string | XComponentName (const std::string &base_name) |
static std::string | YComponentName (const std::string &base_name) |
static std::string | ZComponentName (const std::string &base_name) |
Protected Member Functions | |
double | iff_no_inner (const kvector_t q, double outer_iff) const |
Calculates the structure factor in the absence of extra inner structure. More... | |
Protected Attributes | |
const size_t | m_NP |
std::vector< double > | m_P |
double | m_position_var |
Private Member Functions | |
std::pair< double, double > | calculateReciprocalVectorFraction (double qx, double qy, double xi) const |
Returns qx,qy coordinates of q - qint, where qint is a reciprocal lattice vector bounding the reciprocal unit cell to which q belongs. More... | |
double | iff_without_dw (const kvector_t q) const override |
Calculates the structure factor without Debye-Waller factor. More... | |
void | initialize_calc_factors () |
Initializes factors needed in each calculation. More... | |
void | initialize_rec_vectors () |
Initializes the x,y coordinates of the a*,b* reciprocal bases. More... | |
double | interferenceAtOneRecLatticePoint (double qx, double qy) const |
Returns interference from a single reciprocal lattice vector. More... | |
double | interferenceForXi (double xi) const |
std::pair< double, double > | rotateOrthonormal (double qx, double qy, double gamma) const |
Returns reciprocal coordinates in the coordinate system rotated by the angle gamma. More... | |
Private Attributes | |
std::unique_ptr< IFTDecayFunction2D > | m_decay |
bool | m_integrate_xi |
Integrate over the orientation xi. More... | |
std::unique_ptr< Lattice2D > | m_lattice |
int | m_na |
std::string | m_name |
int | m_nb |
determines the number of reciprocal lattice points to use More... | |
const INode * | m_parent {nullptr} |
std::unique_ptr< ParameterPool > | m_pool |
parameter pool (kind of pointer-to-implementation) More... | |
double | m_qx |
double | m_qy |
Lattice2D::ReciprocalBases | m_sbase |
reciprocal lattice is stored without xi More... | |
Interference function of a 2D lattice.
Definition at line 26 of file InterferenceFunction2DLattice.h.
InterferenceFunction2DLattice::InterferenceFunction2DLattice | ( | const Lattice2D & | lattice | ) |
Definition at line 27 of file InterferenceFunction2DLattice.cpp.
References Lattice2D::clone(), initialize_rec_vectors(), lattice(), m_lattice, INode::registerChild(), and IParametricComponent::setName().
Referenced by clone().
|
overridedefault |
|
inlineoverridevirtual |
Calls the INodeVisitor's visit method.
Implements INode.
Definition at line 33 of file InterferenceFunction2DLattice.h.
References INodeVisitor::visit().
|
private |
Returns qx,qy coordinates of q - qint, where qint is a reciprocal lattice vector bounding the reciprocal unit cell to which q belongs.
Definition at line 140 of file InterferenceFunction2DLattice.cpp.
References Lattice2D::ReciprocalBases::m_asx, Lattice2D::ReciprocalBases::m_asy, Lattice2D::ReciprocalBases::m_bsx, Lattice2D::ReciprocalBases::m_bsy, m_lattice, m_sbase, and M_TWOPI.
Referenced by interferenceForXi().
|
overridevirtual |
Returns a clone of this ISampleNode object.
Implements IInterferenceFunction.
Definition at line 38 of file InterferenceFunction2DLattice.cpp.
References InterferenceFunction2DLattice(), integrationOverXi(), m_decay, m_lattice, and IInterferenceFunction::m_position_var.
|
inherited |
Returns set of unique materials contained in this ISampleNode.
Definition at line 26 of file ISampleNode.cpp.
References INode::getChildren(), and ISampleNode::material().
Referenced by MultiLayerUtils::ContainsCompatibleMaterials(), SampleToPython::initLabels(), and ISampleNode::isMagnetic().
|
inherited |
Returns copyNumber of child, which takes into account existence of children with same name.
Definition at line 94 of file INode.cpp.
References INode::getChildren(), IParametricComponent::getName(), and INode::parent().
Referenced by INode::displayName().
|
virtualinherited |
Creates new parameter pool, with all local parameters and those of its children.
Reimplemented from IParametricComponent.
Definition at line 126 of file INode.cpp.
References NodeUtils::nodePath(), INode::parent(), and INode::progeny().
Referenced by ISimulation::runSimulation(), DepthProbeSimulation::validateParametrization(), OffSpecularSimulation::validateParametrization(), and SpecularSimulation::validateParametrization().
|
inherited |
Returns display name, composed from the name of node and it's copy number.
Definition at line 115 of file INode.cpp.
References INode::copyNumber(), IParametricComponent::getName(), and INode::m_parent.
Referenced by NodeUtils::nodePath().
|
inherited |
Evaluates the Debye-Waller factor for a given wavevector transfer.
Definition at line 48 of file IInterferenceFunction.cpp.
References IInterferenceFunction::m_position_var, BasicVector3D< T >::mag2(), BasicVector3D< T >::setZ(), and IInterferenceFunction::supportsMultilayer().
Referenced by IInterferenceFunction::iff_no_inner().
|
virtualinherited |
Evaluates the interference function for a given wavevector transfer.
Reimplemented in InterferenceFunction2DSuperLattice.
Definition at line 35 of file IInterferenceFunction.cpp.
References IInterferenceFunction::iff_no_inner().
|
overridevirtual |
|
inlineinherited |
Definition at line 70 of file IParametricComponent.h.
References IParametricComponent::m_name.
Referenced by Beam::Beam(), ConvolutionDetectorResolution::ConvolutionDetectorResolution(), IDetector::IDetector(), Instrument::Instrument(), IParametricComponent::IParametricComponent(), SampleBuilderNode::SampleBuilderNode(), Layer::clone(), INode::copyNumber(), IParametricComponent::createParameterTree(), IFormFactor::createSlicedFormFactor(), SampleToPython::defineInterferenceFunctions(), INode::displayName(), Beam::operator=(), SampleBuilderNode::operator=(), GUIObjectBuilder::populateInstrumentModel(), PyImportAssistant::populateModels(), GUIDomainSampleVisitor::populateSampleModel(), IParametricComponent::registerParameter(), IFormFactor::sliceFormFactor(), and GUIDomainSampleVisitor::visit().
|
overridevirtual |
Returns the particle density associated with this 2d lattice.
Reimplemented from IInterferenceFunction.
Definition at line 71 of file InterferenceFunction2DLattice.cpp.
References m_lattice.
Referenced by interferenceForXi().
|
protectedinherited |
Calculates the structure factor in the absence of extra inner structure.
Definition at line 56 of file IInterferenceFunction.cpp.
References IInterferenceFunction::DWfactor(), and IInterferenceFunction::iff_without_dw().
Referenced by IInterferenceFunction::evaluate(), and InterferenceFunction2DSuperLattice::interferenceForXi().
|
overrideprivatevirtual |
Calculates the structure factor without Debye-Waller factor.
Implements IInterferenceFunction.
Definition at line 88 of file InterferenceFunction2DLattice.cpp.
References RealIntegrator::integrate(), interferenceForXi(), m_decay, m_integrate_xi, m_lattice, m_qx, m_qy, M_TWOPI, BasicVector3D< T >::x(), and BasicVector3D< T >::y().
|
private |
Initializes factors needed in each calculation.
Definition at line 172 of file InterferenceFunction2DLattice.cpp.
References m_decay, m_lattice, m_na, and m_nb.
Referenced by onChange(), and setDecayFunction().
|
private |
Initializes the x,y coordinates of the a*,b* reciprocal bases.
Definition at line 161 of file InterferenceFunction2DLattice.cpp.
References m_lattice, m_sbase, and Lattice2D::reciprocalBases().
Referenced by InterferenceFunction2DLattice(), and onChange().
|
inline |
Definition at line 38 of file InterferenceFunction2DLattice.h.
References m_integrate_xi.
Referenced by clone(), and TransformFromDomain::set2DLatticeItem().
|
private |
Returns interference from a single reciprocal lattice vector.
Definition at line 117 of file InterferenceFunction2DLattice.cpp.
References m_decay, and rotateOrthonormal().
Referenced by interferenceForXi().
|
private |
Definition at line 102 of file InterferenceFunction2DLattice.cpp.
References calculateReciprocalVectorFraction(), getParticleDensity(), interferenceAtOneRecLatticePoint(), Lattice2D::ReciprocalBases::m_asx, Lattice2D::ReciprocalBases::m_asy, Lattice2D::ReciprocalBases::m_bsx, Lattice2D::ReciprocalBases::m_bsy, m_na, m_nb, m_qx, m_qy, and m_sbase.
Referenced by iff_without_dw().
|
inherited |
Returns true if there is any magnetic material in this ISampleNode.
Definition at line 40 of file ISampleNode.cpp.
References ISampleNode::containedMaterials().
Referenced by ProcessedSample::initLayouts().
const Lattice2D & InterferenceFunction2DLattice::lattice | ( | ) | const |
Definition at line 63 of file InterferenceFunction2DLattice.cpp.
References m_lattice.
Referenced by InterferenceFunction2DLattice(), and TransformFromDomain::set2DLatticeItem().
|
inlinevirtualinherited |
Returns nullptr, unless overwritten to return a specific material.
Reimplemented in Particle, and Layer.
Definition at line 37 of file ISampleNode.h.
Referenced by ISampleNode::containedMaterials(), FormFactorCoreShell::setAmbientMaterial(), FormFactorCrystal::setAmbientMaterial(), FormFactorWeighted::setAmbientMaterial(), FormFactorDecoratorMaterial::setAmbientMaterial(), IFormFactorDecorator::setAmbientMaterial(), and FormFactorDecoratorMaterial::setMaterial().
|
overridevirtual |
Action to be taken in inherited class when a parameter has changed.
Reimplemented from IParametricComponent.
Definition at line 82 of file InterferenceFunction2DLattice.cpp.
References initialize_calc_factors(), and initialize_rec_vectors().
|
inherited |
Returns parameter with given 'name'.
Definition at line 86 of file IParametricComponent.cpp.
References IParametricComponent::m_pool, and RealSpace::Particles::name().
Referenced by DepthProbeSimulation::initialize(), SpecularSimulation::initialize(), Lattice3D::initialize(), IParticle::registerAbundance(), ParticleLayout::registerParticleDensity(), IParticle::registerPosition(), Layer::registerThickness(), Lattice2D::setRotationEnabled(), and DistributionLogNormal::setUnits().
|
inlineinherited |
Returns pointer to the parameter pool.
Definition at line 39 of file IParametricComponent.h.
References IParametricComponent::m_pool.
Referenced by INode::INode(), IParametricComponent::IParametricComponent(), pyfmt2::argumentList(), SampleBuilderNode::borrow_builder_parameters(), SampleBuilderNode::reset(), and IDistribution1D::setUnits().
|
inherited |
Returns multiline string representing available parameters.
Definition at line 43 of file IParametricComponent.cpp.
References IParametricComponent::createParameterTree().
|
inherited |
Definition at line 89 of file INode.cpp.
References INode::m_parent.
|
inherited |
Definition at line 84 of file INode.cpp.
References INode::m_parent.
Referenced by INode::copyNumber(), INode::createParameterTree(), ParticleDistribution::generateParticles(), NodeUtils::nodePath(), Lattice2D::onChange(), SampleProvider::setBuilder(), SampleProvider::setParent(), and SampleProvider::setSample().
|
inlineinherited |
Returns the position variance.
Definition at line 39 of file IInterferenceFunction.h.
References IInterferenceFunction::m_position_var.
Referenced by TransformFromDomain::setFinite2DLatticeItem().
|
inherited |
Returns a vector of all descendants.
Definition at line 68 of file INode.cpp.
References INode::getChildren().
Referenced by INode::createParameterTree(), and ParticleDistribution::generateParticles().
|
inherited |
Definition at line 57 of file INode.cpp.
References ASSERT, and INode::setParent().
Referenced by Beam::Beam(), Crystal::Crystal(), IDetector::IDetector(), Instrument::Instrument(), InterferenceFunction2DLattice(), InterferenceFunction2DParaCrystal::InterferenceFunction2DParaCrystal(), InterferenceFunction2DSuperLattice::InterferenceFunction2DSuperLattice(), InterferenceFunctionFinite2DLattice::InterferenceFunctionFinite2DLattice(), Particle::Particle(), ParticleDistribution::ParticleDistribution(), ParticleLayout::addAndRegisterAbstractParticle(), ParticleCoreShell::addAndRegisterCore(), MultiLayer::addAndRegisterInterface(), MultiLayer::addAndRegisterLayer(), ParticleCoreShell::addAndRegisterShell(), Layer::addLayout(), ParticleComposition::addParticlePointer(), ISimulation::initialize(), MesoCrystal::initialize(), Beam::operator=(), Instrument::operator=(), IParticle::rotate(), ParticleLayout::setAndRegisterInterferenceFunction(), ISimulation::setBackground(), InterferenceFunction1DLattice::setDecayFunction(), setDecayFunction(), Instrument::setDetector(), IDetector::setDetectorResolution(), Beam::setFootprintFactor(), Particle::setFormFactor(), InterferenceFunctionFinite3DLattice::setLattice(), InterferenceFunctionRadialParaCrystal::setProbabilityDistribution(), InterferenceFunction2DParaCrystal::setProbabilityDistributions(), ConvolutionDetectorResolution::setResolutionFunction(), IParticle::setRotation(), LayerInterface::setRoughness(), and InterferenceFunction2DSuperLattice::setSubstructureIFF().
|
inherited |
Definition at line 51 of file IParametricComponent.cpp.
References IParametricComponent::getName(), IParametricComponent::m_pool, RealSpace::Particles::name(), and IParametricComponent::onChange().
Referenced by BasicLattice2D::BasicLattice2D(), Beam::Beam(), CylindersInBABuilder::CylindersInBABuilder(), DetectionProperties::DetectionProperties(), HexagonalLattice2D::HexagonalLattice2D(), IInterferenceFunction::IInterferenceFunction(), INode::INode(), InterferenceFunction1DLattice::InterferenceFunction1DLattice(), InterferenceFunction2DParaCrystal::InterferenceFunction2DParaCrystal(), InterferenceFunctionHardDisk::InterferenceFunctionHardDisk(), InterferenceFunctionRadialParaCrystal::InterferenceFunctionRadialParaCrystal(), InterferenceFunctionTwin::InterferenceFunctionTwin(), Lattice2D::Lattice2D(), LayerRoughness::LayerRoughness(), MultiLayer::MultiLayer(), ParticleDistribution::ParticleDistribution(), PlainMultiLayerBySLDBuilder::PlainMultiLayerBySLDBuilder(), ResolutionFunction2DGaussian::ResolutionFunction2DGaussian(), ResonatorBuilder::ResonatorBuilder(), SquareLattice2D::SquareLattice2D(), TriangularRippleBuilder::TriangularRippleBuilder(), IParticle::registerAbundance(), ParticleLayout::registerParticleDensity(), Layer::registerThickness(), IParametricComponent::registerVector(), ParticleLayout::registerWeight(), and Lattice2D::setRotationEnabled().
|
inherited |
Definition at line 57 of file IParametricComponent.cpp.
References ModelView::Utils::base_name(), IParametricComponent::registerParameter(), RealParameter::setUnit(), IParametricComponent::XComponentName(), IParametricComponent::YComponentName(), and IParametricComponent::ZComponentName().
Referenced by Beam::Beam(), DetectionProperties::DetectionProperties(), InterferenceFunctionTwin::InterferenceFunctionTwin(), MultiLayer::MultiLayer(), Lattice3D::initialize(), and IParticle::registerPosition().
|
inherited |
Definition at line 91 of file IParametricComponent.cpp.
References IParametricComponent::m_pool, and RealSpace::Particles::name().
Referenced by IParticle::registerAbundance(), ParticleLayout::registerParticleDensity(), Layer::registerThickness(), IParametricComponent::removeVector(), and Lattice2D::setRotationEnabled().
|
inherited |
Definition at line 96 of file IParametricComponent.cpp.
References ModelView::Utils::base_name(), IParametricComponent::removeParameter(), IParametricComponent::XComponentName(), IParametricComponent::YComponentName(), and IParametricComponent::ZComponentName().
Referenced by IParticle::registerPosition().
|
private |
Returns reciprocal coordinates in the coordinate system rotated by the angle gamma.
Definition at line 128 of file InterferenceFunction2DLattice.cpp.
Referenced by interferenceAtOneRecLatticePoint().
void InterferenceFunction2DLattice::setDecayFunction | ( | const IFTDecayFunction2D & | decay | ) |
Sets two-dimensional decay function.
decay | two-dimensional decay function in reciprocal space |
Definition at line 50 of file InterferenceFunction2DLattice.cpp.
References IFTDecayFunction2D::clone(), initialize_calc_factors(), m_decay, and INode::registerChild().
Referenced by BoxesSquareLattice2DBuilder::buildSample(), ParticleCompositionBuilder::buildSample(), Basic2DLatticeBuilder::buildSample(), SquareLattice2DBuilder::buildSample(), CenteredSquareLattice2DBuilder::buildSample(), and RotatedSquareLattice2DBuilder::buildSample().
void InterferenceFunction2DLattice::setIntegrationOverXi | ( | bool | integrate_xi | ) |
Definition at line 57 of file InterferenceFunction2DLattice.cpp.
References m_integrate_xi, and m_lattice.
|
inlineinherited |
Definition at line 69 of file IParametricComponent.h.
References IParametricComponent::m_name, and RealSpace::Particles::name().
Referenced by BasicLattice2D::BasicLattice2D(), Beam::Beam(), ConvolutionDetectorResolution::ConvolutionDetectorResolution(), Crystal::Crystal(), DetectionProperties::DetectionProperties(), DistributionHandler::DistributionHandler(), FormFactorCoreShell::FormFactorCoreShell(), FormFactorCrystal::FormFactorCrystal(), FormFactorDecoratorMaterial::FormFactorDecoratorMaterial(), FormFactorDecoratorPositionFactor::FormFactorDecoratorPositionFactor(), FormFactorDecoratorRotation::FormFactorDecoratorRotation(), FormFactorWeighted::FormFactorWeighted(), HexagonalLattice2D::HexagonalLattice2D(), IDetector::IDetector(), INode::INode(), Instrument::Instrument(), InterferenceFunction1DLattice::InterferenceFunction1DLattice(), InterferenceFunction2DLattice(), InterferenceFunction2DParaCrystal::InterferenceFunction2DParaCrystal(), InterferenceFunction2DSuperLattice::InterferenceFunction2DSuperLattice(), InterferenceFunction3DLattice::InterferenceFunction3DLattice(), InterferenceFunctionFinite2DLattice::InterferenceFunctionFinite2DLattice(), InterferenceFunctionFinite3DLattice::InterferenceFunctionFinite3DLattice(), InterferenceFunctionHardDisk::InterferenceFunctionHardDisk(), InterferenceFunctionNone::InterferenceFunctionNone(), InterferenceFunctionRadialParaCrystal::InterferenceFunctionRadialParaCrystal(), InterferenceFunctionTwin::InterferenceFunctionTwin(), ISampleBuilder::ISampleBuilder(), IsGISAXSDetector::IsGISAXSDetector(), Lattice3D::Lattice3D(), Layer::Layer(), LayerInterface::LayerInterface(), LayerRoughness::LayerRoughness(), MultiLayer::MultiLayer(), ParticleCoreShell::ParticleCoreShell(), ParticleDistribution::ParticleDistribution(), ParticleLayout::ParticleLayout(), RectangularDetector::RectangularDetector(), ResolutionFunction2DGaussian::ResolutionFunction2DGaussian(), SampleBuilderNode::SampleBuilderNode(), SphericalDetector::SphericalDetector(), SquareLattice2D::SquareLattice2D(), Layer::clone(), LayersWithAbsorptionBuilder::createSampleByIndex(), Basic2DParaCrystalBuilder::createSampleByIndex(), ParticleInVacuumBuilder::createSampleByIndex(), SimpleMagneticRotationBuilder::createSampleByIndex(), DepthProbeSimulation::initialize(), GISASSimulation::initialize(), OffSpecularSimulation::initialize(), SpecularSimulation::initialize(), SpecularDetector1D::initialize(), MesoCrystal::initialize(), Particle::initialize(), ParticleComposition::initialize(), Beam::operator=(), SampleBuilderNode::operator=(), SampleBuilderNode::reset(), and SampleBuilderNode::setSBN().
|
inherited |
Definition at line 65 of file IParametricComponent.cpp.
References IParametricComponent::createParameterTree(), IParametricComponent::m_pool, RealSpace::Particles::name(), and ParameterPool::setMatchedParametersValue().
Referenced by AsymRippleBuilder::buildSample(), and IParametricComponent::setVectorValue().
|
virtualinherited |
Reimplemented in SampleProvider.
Definition at line 79 of file INode.cpp.
References INode::m_parent.
Referenced by INode::registerChild(), SampleProvider::setBuilder(), and SampleProvider::setParent().
|
inherited |
Sets the variance of the position for the calculation of the DW factor It is defined as the variance in each relevant dimension.
Definition at line 40 of file IInterferenceFunction.cpp.
References IInterferenceFunction::m_position_var.
Referenced by FiniteSquareLattice2DBuilder::buildSample(), SuperLatticeBuilder::buildSample(), and InterferenceFunctionItem::setPositionVariance().
|
inherited |
Definition at line 78 of file IParametricComponent.cpp.
References ModelView::Utils::base_name(), IParametricComponent::setParameterValue(), BasicVector3D< T >::x(), IParametricComponent::XComponentName(), BasicVector3D< T >::y(), IParametricComponent::YComponentName(), BasicVector3D< T >::z(), and IParametricComponent::ZComponentName().
|
inlinevirtualinherited |
Indicates if this interference function can be used with a multilayer (DWBA mode)
Reimplemented in InterferenceFunctionFinite3DLattice, and InterferenceFunction3DLattice.
Definition at line 46 of file IInterferenceFunction.h.
Referenced by IInterferenceFunction::DWfactor().
|
inlinevirtualinherited |
Used for Python overriding of clone (see swig/tweaks.py)
Definition at line 34 of file ICloneable.h.
|
virtualinherited |
Returns multiline string representing tree structure below the node.
Definition at line 52 of file INode.cpp.
References NodeUtils::nodeToString().
|
staticinherited |
Definition at line 103 of file IParametricComponent.cpp.
References ModelView::Utils::base_name().
Referenced by Lattice3D::initialize(), IParticle::registerPosition(), IParametricComponent::registerVector(), IParametricComponent::removeVector(), IParametricComponent::setVectorValue(), and VectorParameterTranslator::translate().
|
staticinherited |
Definition at line 108 of file IParametricComponent.cpp.
References ModelView::Utils::base_name().
Referenced by IParametricComponent::registerVector(), IParametricComponent::removeVector(), IParametricComponent::setVectorValue(), and VectorParameterTranslator::translate().
|
staticinherited |
Definition at line 113 of file IParametricComponent.cpp.
References ModelView::Utils::base_name().
Referenced by IParametricComponent::registerVector(), IParametricComponent::removeVector(), IParametricComponent::setVectorValue(), and VectorParameterTranslator::translate().
|
private |
Definition at line 72 of file InterferenceFunction2DLattice.h.
Referenced by clone(), getChildren(), iff_without_dw(), initialize_calc_factors(), interferenceAtOneRecLatticePoint(), and setDecayFunction().
|
private |
Integrate over the orientation xi.
Definition at line 71 of file InterferenceFunction2DLattice.h.
Referenced by iff_without_dw(), integrationOverXi(), and setIntegrationOverXi().
|
private |
Definition at line 73 of file InterferenceFunction2DLattice.h.
Referenced by InterferenceFunction2DLattice(), calculateReciprocalVectorFraction(), clone(), getChildren(), getParticleDensity(), iff_without_dw(), initialize_calc_factors(), initialize_rec_vectors(), lattice(), and setIntegrationOverXi().
|
private |
Definition at line 75 of file InterferenceFunction2DLattice.h.
Referenced by initialize_calc_factors(), and interferenceForXi().
|
privateinherited |
Definition at line 73 of file IParametricComponent.h.
Referenced by IParametricComponent::getName(), and IParametricComponent::setName().
|
private |
determines the number of reciprocal lattice points to use
Definition at line 75 of file InterferenceFunction2DLattice.h.
Referenced by initialize_calc_factors(), and interferenceForXi().
|
protectedinherited |
Definition at line 88 of file INode.h.
Referenced by INode::INode().
|
protectedinherited |
Definition at line 89 of file INode.h.
Referenced by INode::INode(), and IFootprintFactor::setWidthRatio().
|
privateinherited |
Definition at line 83 of file INode.h.
Referenced by INode::displayName(), INode::parent(), and INode::setParent().
|
privateinherited |
parameter pool (kind of pointer-to-implementation)
Definition at line 74 of file IParametricComponent.h.
Referenced by IParametricComponent::createParameterTree(), IParametricComponent::parameter(), IParametricComponent::parameterPool(), IParametricComponent::registerParameter(), IParametricComponent::removeParameter(), and IParametricComponent::setParameterValue().
|
protectedinherited |
Definition at line 52 of file IInterferenceFunction.h.
Referenced by IInterferenceFunction::IInterferenceFunction(), InterferenceFunctionNone::clone(), InterferenceFunctionRadialParaCrystal::clone(), InterferenceFunctionTwin::clone(), InterferenceFunction1DLattice::clone(), clone(), InterferenceFunction2DParaCrystal::clone(), InterferenceFunction2DSuperLattice::clone(), InterferenceFunction3DLattice::clone(), InterferenceFunctionFinite2DLattice::clone(), InterferenceFunctionFinite3DLattice::clone(), InterferenceFunctionHardDisk::clone(), IInterferenceFunction::DWfactor(), IInterferenceFunction::positionVariance(), and IInterferenceFunction::setPositionVariance().
|
mutableprivate |
Definition at line 76 of file InterferenceFunction2DLattice.h.
Referenced by iff_without_dw(), and interferenceForXi().
|
mutableprivate |
Definition at line 77 of file InterferenceFunction2DLattice.h.
Referenced by iff_without_dw(), and interferenceForXi().
|
private |
reciprocal lattice is stored without xi
Definition at line 74 of file InterferenceFunction2DLattice.h.
Referenced by calculateReciprocalVectorFraction(), initialize_rec_vectors(), and interferenceForXi().