From 6b179d5fc2ec99f8c9ce1238984d67bbaf71db54 Mon Sep 17 00:00:00 2001 From: Walter Van Herck <w.van.herck@fz-juelich.de> Date: Fri, 26 Jan 2018 17:38:15 +0100 Subject: [PATCH] Removed some more obsolete methods related to unit conversion --- Core/Fitting/FitObject.cpp | 6 - Core/Fitting/FitObject.h | 2 - Core/Fitting/FitSuiteObjects.cpp | 5 - Core/Fitting/FitSuiteObjects.h | 2 - Core/Instrument/DetectorFunctions.cpp | 56 - Core/Instrument/DetectorFunctions.h | 6 - .../Core/Detector/SphericalDetectorTest.h | 14 - auto/Wrap/doxygen_core.i | 1828 +++++++++-------- auto/Wrap/doxygen_fit.i | 154 +- auto/Wrap/libBornAgainCore.py | 1209 ++++++----- auto/Wrap/libBornAgainCore_wrap.cpp | 1316 ++++++------ auto/Wrap/libBornAgainFit.py | 52 +- auto/Wrap/libBornAgainFit_wrap.cpp | 52 +- 13 files changed, 2465 insertions(+), 2237 deletions(-) diff --git a/Core/Fitting/FitObject.cpp b/Core/Fitting/FitObject.cpp index 8c46b639040..1d629c39945 100644 --- a/Core/Fitting/FitObject.cpp +++ b/Core/Fitting/FitObject.cpp @@ -61,12 +61,6 @@ std::vector<const INode*> FitObject::getChildren() const return std::vector<const INode*>() << m_simulation; } -std::string FitObject::getDefaultAxisUnits() const -{ - return DetectorFunctions::detectorUnitsName( - m_simulation->getInstrument().getDetector()->defaultAxesUnits()); -} - //! Initialize detector, if necessary, to match experimental data void FitObject::init_dataset(const OutputData<double>& real_data) { diff --git a/Core/Fitting/FitObject.h b/Core/Fitting/FitObject.h index 4ab83de4527..fd1a89ddbf7 100644 --- a/Core/Fitting/FitObject.h +++ b/Core/Fitting/FitObject.h @@ -65,8 +65,6 @@ public: std::vector<const INode*> getChildren() const; - std::string getDefaultAxisUnits() const; - protected: //! Registers some class members for later access via parameter pool virtual void init_parameters() {} diff --git a/Core/Fitting/FitSuiteObjects.cpp b/Core/Fitting/FitSuiteObjects.cpp index 87737e84e77..ebdd0191b09 100644 --- a/Core/Fitting/FitSuiteObjects.cpp +++ b/Core/Fitting/FitSuiteObjects.cpp @@ -140,11 +140,6 @@ std::vector<const INode*> FitSuiteObjects::getChildren() const return result; } -std::string FitSuiteObjects::getDefaultAxesUnits(size_t i_item) const -{ - return m_fit_objects[check_index(i_item)]->getDefaultAxisUnits(); -} - double FitSuiteObjects::calculateChiSquaredValue() { m_chi2_module->processFitElements(m_fit_elements.begin(), m_fit_elements.end()); diff --git a/Core/Fitting/FitSuiteObjects.h b/Core/Fitting/FitSuiteObjects.h index 82ce717b85b..84c1f66ac53 100644 --- a/Core/Fitting/FitSuiteObjects.h +++ b/Core/Fitting/FitSuiteObjects.h @@ -76,8 +76,6 @@ public: std::vector<const INode*> getChildren() const; - std::string getDefaultAxesUnits(size_t i_item = 0) const; - protected: //! Registers some class members for later access via parameter pool void init_parameters() {} diff --git a/Core/Instrument/DetectorFunctions.cpp b/Core/Instrument/DetectorFunctions.cpp index 7f062fc80fc..b7377c47434 100644 --- a/Core/Instrument/DetectorFunctions.cpp +++ b/Core/Instrument/DetectorFunctions.cpp @@ -22,34 +22,6 @@ #include <map> #include <cctype> -namespace -{ -std::map<std::string, AxesUnits> init_name_to_units_map() -{ - std::map<std::string, AxesUnits> result; - result["nbins"] = AxesUnits::NBINS; - result["radians"] = AxesUnits::RADIANS; - result["rad"] = AxesUnits::RADIANS; - result["degrees"] = AxesUnits::DEGREES; - result["deg"] = AxesUnits::DEGREES; - result["mm"] = AxesUnits::MM; - result["qyqz"] = AxesUnits::QSPACE; - return result; -} - -std::map<AxesUnits, std::string> init_units_to_name_map() -{ - std::map<AxesUnits, std::string> result; - result[AxesUnits::NBINS] = "nbins"; - result[AxesUnits::RADIANS] = "rad"; - result[AxesUnits::DEGREES] = "deg"; - result[AxesUnits::MM] = "mm"; - result[AxesUnits::QSPACE] = "qyqz"; - result[AxesUnits::DEFAULT] = ""; - return result; -} -} - bool DetectorFunctions::hasSameDimensions(const IDetector& detector, const OutputData<double>& data) { if (data.getRank() != detector.dimension()) @@ -107,7 +79,6 @@ std::unique_ptr<OutputData<double>> DetectorFunctions::createDataSet(const Instr std::unique_ptr<OutputData<double>> result(instrument.createDetectorMap(units)); if(put_masked_areas_to_zero) { - SimulationArea area(instrument.getDetector()); for(SimulationArea::iterator it = area.begin(); it!=area.end(); ++it) { (*result)[it.roiIndex()] = data[it.detectorIndex()]; @@ -119,32 +90,5 @@ std::unique_ptr<OutputData<double>> DetectorFunctions::createDataSet(const Instr (*result)[it.roiIndex()] = data[it.detectorIndex()]; } } - return result; } - -AxesUnits DetectorFunctions::detectorUnits(const std::string& unitName) -{ - if(unitName.empty()) - return AxesUnits::DEFAULT; - - static auto units_map = init_name_to_units_map(); - - std::string lowercase = StringUtils::to_lower(unitName); - auto it = units_map.find(lowercase); - if(it == units_map.end()) - throw std::runtime_error("DetectorFunctions::detectorUnits() -> Error. No such " - "detector unit '"+unitName+"'"); - - return it->second; -} - -std::string DetectorFunctions::detectorUnitsName(AxesUnits units) -{ - static auto units_map = init_units_to_name_map(); - auto it = units_map.find(units); - if(it == units_map.end()) - throw std::runtime_error("DetectorFunctions::detectorUnitsName() -> Error. No such " - "detector unit '"+std::to_string(static_cast<int>(units))+"'"); - return it->second; -} diff --git a/Core/Instrument/DetectorFunctions.h b/Core/Instrument/DetectorFunctions.h index 4d0d0897baa..0c92a530a5b 100644 --- a/Core/Instrument/DetectorFunctions.h +++ b/Core/Instrument/DetectorFunctions.h @@ -50,12 +50,6 @@ BA_CORE_API_ std::string axesToString(const OutputData<double>& data); BA_CORE_API_ std::unique_ptr<OutputData<double>> createDataSet(const Instrument& instrument, const OutputData<double> &data, bool put_masked_areas_to_zero=true, AxesUnits units=AxesUnits::DEFAULT); - -//! Translates the name of detector axes units into corresponding enum -BA_CORE_API_ AxesUnits detectorUnits(const std::string& unitName); - -//! Translate detector axes units enum into string. -BA_CORE_API_ std::string detectorUnitsName(AxesUnits units); } #endif // DETECTORFUNCTIONS_H diff --git a/Tests/UnitTests/Core/Detector/SphericalDetectorTest.h b/Tests/UnitTests/Core/Detector/SphericalDetectorTest.h index 23885b6ae01..48d5bebd48f 100644 --- a/Tests/UnitTests/Core/Detector/SphericalDetectorTest.h +++ b/Tests/UnitTests/Core/Detector/SphericalDetectorTest.h @@ -358,20 +358,6 @@ TEST_F(SphericalDetectorTest, Clone) EXPECT_EQ(elementIndexes, expectedElementIndexes); } -TEST_F(SphericalDetectorTest, nameToUnitTranslation) -{ - EXPECT_EQ(DetectorFunctions::detectorUnits(""), AxesUnits::DEFAULT); - EXPECT_EQ(DetectorFunctions::detectorUnits("QyQz"), AxesUnits::QSPACE); - EXPECT_EQ(DetectorFunctions::detectorUnits("qyqz"), AxesUnits::QSPACE); - EXPECT_EQ(DetectorFunctions::detectorUnits("MM"), AxesUnits::MM); - EXPECT_EQ(DetectorFunctions::detectorUnits("mm"), AxesUnits::MM); - EXPECT_EQ(DetectorFunctions::detectorUnits("radians"), AxesUnits::RADIANS); - EXPECT_EQ(DetectorFunctions::detectorUnits("rad"), AxesUnits::RADIANS); - EXPECT_EQ(DetectorFunctions::detectorUnits("degrees"), AxesUnits::DEGREES); - EXPECT_EQ(DetectorFunctions::detectorUnits("deg"), AxesUnits::DEGREES); - EXPECT_THROW(DetectorFunctions::detectorUnits("xxx"), std::runtime_error); -} - // Test retrieval of analyzer properties TEST_F(SphericalDetectorTest, AnalyzerProperties) { diff --git a/auto/Wrap/doxygen_core.i b/auto/Wrap/doxygen_core.i index 2f9dc742e47..90f165176c9 100644 --- a/auto/Wrap/doxygen_core.i +++ b/auto/Wrap/doxygen_core.i @@ -15,7 +15,7 @@ C++ includes: AdjustMinimizerStrategy.h %feature("docstring") AdjustMinimizerStrategy::AdjustMinimizerStrategy "AdjustMinimizerStrategy::AdjustMinimizerStrategy(const std::string &minimizerName, const std::string &algorithmName=\"\", const std::string &optionString=\"\") "; -%feature("docstring") AdjustMinimizerStrategy::clone "AdjustMinimizerStrategy * AdjustMinimizerStrategy::clone() const +%feature("docstring") AdjustMinimizerStrategy::clone "AdjustMinimizerStrategy * AdjustMinimizerStrategy::clone() const "; %feature("docstring") AdjustMinimizerStrategy::setMinimizer "void AdjustMinimizerStrategy::setMinimizer(const std::string &minimizerName, const std::string &algorithmName=\"\", const std::string &optionString=\"\") @@ -38,7 +38,7 @@ C++ includes: AdjustMinimizerStrategy.h // File: classAsymRippleBuilder.xml %feature("docstring") AsymRippleBuilder ""; -%feature("docstring") AsymRippleBuilder::buildSample "MultiLayer * AsymRippleBuilder::buildSample() const +%feature("docstring") AsymRippleBuilder::buildSample "MultiLayer * AsymRippleBuilder::buildSample() const "; @@ -47,10 +47,13 @@ C++ includes: AdjustMinimizerStrategy.h Wrapper for detector axes units, required for a better representation of detector axes units in python -C++ includes: IDetector.h +C++ includes: UnitConverters.h "; +// File: structUnitConverterSimple_1_1AxisData.xml + + // File: classBaseMaterialImpl.xml %feature("docstring") BaseMaterialImpl ""; @@ -135,7 +138,7 @@ C++ includes: TwoDimLatticeBuilder.h %feature("docstring") Basic2DLatticeBuilder::Basic2DLatticeBuilder "Basic2DLatticeBuilder::Basic2DLatticeBuilder() "; -%feature("docstring") Basic2DLatticeBuilder::buildSample "MultiLayer * Basic2DLatticeBuilder::buildSample() const +%feature("docstring") Basic2DLatticeBuilder::buildSample "MultiLayer * Basic2DLatticeBuilder::buildSample() const "; @@ -153,7 +156,7 @@ C++ includes: ParaCrystalBuilder.h %feature("docstring") Basic2DParaCrystalBuilder::~Basic2DParaCrystalBuilder "Basic2DParaCrystalBuilder::~Basic2DParaCrystalBuilder() "; -%feature("docstring") Basic2DParaCrystalBuilder::buildSample "MultiLayer * Basic2DParaCrystalBuilder::buildSample() const +%feature("docstring") Basic2DParaCrystalBuilder::buildSample "MultiLayer * Basic2DParaCrystalBuilder::buildSample() const "; %feature("docstring") Basic2DParaCrystalBuilder::createSample "MultiLayer * Basic2DParaCrystalBuilder::createSample(size_t index=0) @@ -169,7 +172,7 @@ C++ includes: ParaCrystalBuilder.h %feature("docstring") BasicLattice::BasicLattice "BasicLattice::BasicLattice(double length1, double length2, double angle, double rotation_angle=0.0) "; -%feature("docstring") BasicLattice::clone "BasicLattice * BasicLattice::clone() const +%feature("docstring") BasicLattice::clone "BasicLattice * BasicLattice::clone() const "; %feature("docstring") BasicLattice::accept "void BasicLattice::accept(INodeVisitor *visitor) const final @@ -177,16 +180,16 @@ C++ includes: ParaCrystalBuilder.h Calls the INodeVisitor's visit method. "; -%feature("docstring") BasicLattice::length1 "virtual double BasicLattice::length1() const +%feature("docstring") BasicLattice::length1 "virtual double BasicLattice::length1() const "; -%feature("docstring") BasicLattice::length2 "virtual double BasicLattice::length2() const +%feature("docstring") BasicLattice::length2 "virtual double BasicLattice::length2() const "; -%feature("docstring") BasicLattice::latticeAngle "virtual double BasicLattice::latticeAngle() const +%feature("docstring") BasicLattice::latticeAngle "virtual double BasicLattice::latticeAngle() const "; -%feature("docstring") BasicLattice::unitCellArea "double BasicLattice::unitCellArea() const +%feature("docstring") BasicLattice::unitCellArea "double BasicLattice::unitCellArea() const "; @@ -298,14 +301,14 @@ Returns this, trivially converted to complex type. Returns real parts. "; -%feature("docstring") BasicVector3D::dot "auto BasicVector3D< T >::dot(const BasicVector3D< U > &v) const -> decltype(this->x() *v.x()) +%feature("docstring") BasicVector3D::dot "auto BasicVector3D< T >::dot(const BasicVector3D< U > &v) const -> decltype(this->x()*v.x()) Returns dot product of vectors (antilinear in the first [=self] argument). Returns dot product of (complex) vectors (antilinear in the first [=self] argument). "; -%feature("docstring") BasicVector3D::cross "auto BasicVector3D< T >::cross(const BasicVector3D< U > &v) const -> BasicVector3D< decltype(this->x() *v.x())> +%feature("docstring") BasicVector3D::cross "auto BasicVector3D< T >::cross(const BasicVector3D< U > &v) const -> BasicVector3D< decltype(this->x()*v.x())> Returns cross product of vectors (linear in both arguments). @@ -409,7 +412,7 @@ Sets beam to sample width ratio in footprint factor. Sets the polarization density matrix according to the given Bloch vector. "; -%feature("docstring") Beam::getBlochVector "kvector_t Beam::getBlochVector() const +%feature("docstring") Beam::getBlochVector "kvector_t Beam::getBlochVector() const "; %feature("docstring") Beam::getPolarization "Eigen::Matrix2cd Beam::getPolarization() const @@ -417,13 +420,13 @@ Sets the polarization density matrix according to the given Bloch vector. Returns the polarization density matrix (in spin basis along z-axis) "; -%feature("docstring") Beam::getWavelength "double Beam::getWavelength() const +%feature("docstring") Beam::getWavelength "double Beam::getWavelength() const "; -%feature("docstring") Beam::getAlpha "double Beam::getAlpha() const +%feature("docstring") Beam::getAlpha "double Beam::getAlpha() const "; -%feature("docstring") Beam::getPhi "double Beam::getPhi() const +%feature("docstring") Beam::getPhi "double Beam::getPhi() const "; %feature("docstring") Beam::accept "void Beam::accept(INodeVisitor *visitor) const override @@ -441,10 +444,10 @@ Calls the INodeVisitor's visit method. %feature("docstring") Bin1D::Bin1D "Bin1D::Bin1D(double lower, double upper) "; -%feature("docstring") Bin1D::getMidPoint "double Bin1D::getMidPoint() const +%feature("docstring") Bin1D::getMidPoint "double Bin1D::getMidPoint() const "; -%feature("docstring") Bin1D::getBinSize "double Bin1D::getBinSize() const +%feature("docstring") Bin1D::getBinSize "double Bin1D::getBinSize() const "; @@ -467,10 +470,10 @@ C++ includes: Bin.h creation on Bin1DCVector from alpha and phi bins "; -%feature("docstring") Bin1DCVector::getMidPoint "cvector_t Bin1DCVector::getMidPoint() const +%feature("docstring") Bin1DCVector::getMidPoint "cvector_t Bin1DCVector::getMidPoint() const "; -%feature("docstring") Bin1DCVector::getDelta "cvector_t Bin1DCVector::getDelta() const +%feature("docstring") Bin1DCVector::getDelta "cvector_t Bin1DCVector::getDelta() const "; @@ -493,10 +496,10 @@ C++ includes: Bin.h creation on Bin1DKVector from alpha and phi bins "; -%feature("docstring") Bin1DKVector::getMidPoint "kvector_t Bin1DKVector::getMidPoint() const +%feature("docstring") Bin1DKVector::getMidPoint "kvector_t Bin1DKVector::getMidPoint() const "; -%feature("docstring") Bin1DKVector::getDelta "kvector_t Bin1DKVector::getDelta() const +%feature("docstring") Bin1DKVector::getDelta "kvector_t Bin1DKVector::getDelta() const "; @@ -546,7 +549,7 @@ C++ includes: BoxCompositionBuilder.h %feature("docstring") BoxCompositionRotateXBuilder::BoxCompositionRotateXBuilder "BoxCompositionRotateXBuilder::BoxCompositionRotateXBuilder() "; -%feature("docstring") BoxCompositionRotateXBuilder::buildSample "MultiLayer * BoxCompositionRotateXBuilder::buildSample() const +%feature("docstring") BoxCompositionRotateXBuilder::buildSample "MultiLayer * BoxCompositionRotateXBuilder::buildSample() const "; @@ -561,7 +564,7 @@ C++ includes: BoxCompositionBuilder.h %feature("docstring") BoxCompositionRotateYBuilder::BoxCompositionRotateYBuilder "BoxCompositionRotateYBuilder::BoxCompositionRotateYBuilder() "; -%feature("docstring") BoxCompositionRotateYBuilder::buildSample "MultiLayer * BoxCompositionRotateYBuilder::buildSample() const +%feature("docstring") BoxCompositionRotateYBuilder::buildSample "MultiLayer * BoxCompositionRotateYBuilder::buildSample() const "; @@ -576,7 +579,7 @@ C++ includes: BoxCompositionBuilder.h %feature("docstring") BoxCompositionRotateZandYBuilder::BoxCompositionRotateZandYBuilder "BoxCompositionRotateZandYBuilder::BoxCompositionRotateZandYBuilder() "; -%feature("docstring") BoxCompositionRotateZandYBuilder::buildSample "MultiLayer * BoxCompositionRotateZandYBuilder::buildSample() const +%feature("docstring") BoxCompositionRotateZandYBuilder::buildSample "MultiLayer * BoxCompositionRotateZandYBuilder::buildSample() const "; @@ -591,7 +594,7 @@ C++ includes: BoxCompositionBuilder.h %feature("docstring") BoxCompositionRotateZBuilder::BoxCompositionRotateZBuilder "BoxCompositionRotateZBuilder::BoxCompositionRotateZBuilder() "; -%feature("docstring") BoxCompositionRotateZBuilder::buildSample "MultiLayer * BoxCompositionRotateZBuilder::buildSample() const +%feature("docstring") BoxCompositionRotateZBuilder::buildSample "MultiLayer * BoxCompositionRotateZBuilder::buildSample() const "; @@ -606,7 +609,7 @@ C++ includes: BoxesSquareLatticeBuilder.h %feature("docstring") BoxesSquareLatticeBuilder::BoxesSquareLatticeBuilder "BoxesSquareLatticeBuilder::BoxesSquareLatticeBuilder() "; -%feature("docstring") BoxesSquareLatticeBuilder::buildSample "MultiLayer * BoxesSquareLatticeBuilder::buildSample() const +%feature("docstring") BoxesSquareLatticeBuilder::buildSample "MultiLayer * BoxesSquareLatticeBuilder::buildSample() const "; @@ -621,7 +624,7 @@ C++ includes: BoxCompositionBuilder.h %feature("docstring") BoxStackCompositionBuilder::BoxStackCompositionBuilder "BoxStackCompositionBuilder::BoxStackCompositionBuilder() "; -%feature("docstring") BoxStackCompositionBuilder::buildSample "MultiLayer * BoxStackCompositionBuilder::buildSample() const +%feature("docstring") BoxStackCompositionBuilder::buildSample "MultiLayer * BoxStackCompositionBuilder::buildSample() const "; @@ -654,7 +657,7 @@ C++ includes: TwoDimLatticeBuilder.h %feature("docstring") CenteredSquareLatticeBuilder::CenteredSquareLatticeBuilder "CenteredSquareLatticeBuilder::CenteredSquareLatticeBuilder() "; -%feature("docstring") CenteredSquareLatticeBuilder::buildSample "MultiLayer * CenteredSquareLatticeBuilder::buildSample() const +%feature("docstring") CenteredSquareLatticeBuilder::buildSample "MultiLayer * CenteredSquareLatticeBuilder::buildSample() const "; @@ -702,10 +705,10 @@ C++ includes: ComputationStatus.h %feature("docstring") ComputationStatus::ComputationStatus "ComputationStatus::ComputationStatus() "; -%feature("docstring") ComputationStatus::isCompleted "bool ComputationStatus::isCompleted() const +%feature("docstring") ComputationStatus::isCompleted "bool ComputationStatus::isCompleted() const "; -%feature("docstring") ComputationStatus::errorMessage "std::string ComputationStatus::errorMessage() const +%feature("docstring") ComputationStatus::errorMessage "std::string ComputationStatus::errorMessage() const "; %feature("docstring") ComputationStatus::setRunning "void ComputationStatus::setRunning() @@ -732,7 +735,7 @@ C++ includes: ParticleDistributionsBuilder.h %feature("docstring") ConesWithLimitsDistributionBuilder::ConesWithLimitsDistributionBuilder "ConesWithLimitsDistributionBuilder::ConesWithLimitsDistributionBuilder() "; -%feature("docstring") ConesWithLimitsDistributionBuilder::buildSample "MultiLayer * ConesWithLimitsDistributionBuilder::buildSample() const +%feature("docstring") ConesWithLimitsDistributionBuilder::buildSample "MultiLayer * ConesWithLimitsDistributionBuilder::buildSample() const "; @@ -750,10 +753,10 @@ C++ includes: ConstantBackground.h %feature("docstring") ConstantBackground::~ConstantBackground "ConstantBackground::~ConstantBackground() "; -%feature("docstring") ConstantBackground::clone "ConstantBackground * ConstantBackground::clone() const override final +%feature("docstring") ConstantBackground::clone "ConstantBackground * ConstantBackground::clone() const overridefinal "; -%feature("docstring") ConstantBackground::backgroundValue "double ConstantBackground::backgroundValue() const +%feature("docstring") ConstantBackground::backgroundValue "double ConstantBackground::backgroundValue() const "; %feature("docstring") ConstantBackground::accept "void ConstantBackground::accept(INodeVisitor *visitor) const override @@ -761,7 +764,7 @@ C++ includes: ConstantBackground.h Calls the INodeVisitor's visit method. "; -%feature("docstring") ConstantBackground::addBackGround "double ConstantBackground::addBackGround(double intensity) const override final +%feature("docstring") ConstantBackground::addBackGround "double ConstantBackground::addBackGround(double intensity) const overridefinal "; @@ -835,7 +838,7 @@ Constructor taking a 2 dimensional resolution function as argument. Convolve given intensities with the encapsulated resolution. "; -%feature("docstring") ConvolutionDetectorResolution::clone "ConvolutionDetectorResolution * ConvolutionDetectorResolution::clone() const +%feature("docstring") ConvolutionDetectorResolution::clone "ConvolutionDetectorResolution * ConvolutionDetectorResolution::clone() const "; %feature("docstring") ConvolutionDetectorResolution::accept "void ConvolutionDetectorResolution::accept(INodeVisitor *visitor) const final @@ -843,7 +846,7 @@ Convolve given intensities with the encapsulated resolution. Calls the INodeVisitor's visit method. "; -%feature("docstring") ConvolutionDetectorResolution::getResolutionFunction2D "const IResolutionFunction2D * ConvolutionDetectorResolution::getResolutionFunction2D() const +%feature("docstring") ConvolutionDetectorResolution::getResolutionFunction2D "const IResolutionFunction2D * ConvolutionDetectorResolution::getResolutionFunction2D() const "; %feature("docstring") ConvolutionDetectorResolution::getChildren "std::vector< const INode * > ConvolutionDetectorResolution::getChildren() const @@ -899,7 +902,7 @@ C++ includes: CoreShellParticleBuilder.h %feature("docstring") CoreShellBoxRotateZandYBuilder::CoreShellBoxRotateZandYBuilder "CoreShellBoxRotateZandYBuilder::CoreShellBoxRotateZandYBuilder() "; -%feature("docstring") CoreShellBoxRotateZandYBuilder::buildSample "MultiLayer * CoreShellBoxRotateZandYBuilder::buildSample() const +%feature("docstring") CoreShellBoxRotateZandYBuilder::buildSample "MultiLayer * CoreShellBoxRotateZandYBuilder::buildSample() const "; @@ -914,7 +917,7 @@ C++ includes: CoreShellParticleBuilder.h %feature("docstring") CoreShellParticleBuilder::CoreShellParticleBuilder "CoreShellParticleBuilder::CoreShellParticleBuilder() "; -%feature("docstring") CoreShellParticleBuilder::buildSample "MultiLayer * CoreShellParticleBuilder::buildSample() const +%feature("docstring") CoreShellParticleBuilder::buildSample "MultiLayer * CoreShellParticleBuilder::buildSample() const "; @@ -929,7 +932,7 @@ C++ includes: RipplesBuilder.h %feature("docstring") CosineRippleBuilder::CosineRippleBuilder "CosineRippleBuilder::CosineRippleBuilder() "; -%feature("docstring") CosineRippleBuilder::buildSample "MultiLayer * CosineRippleBuilder::buildSample() const +%feature("docstring") CosineRippleBuilder::buildSample "MultiLayer * CosineRippleBuilder::buildSample() const "; @@ -947,33 +950,33 @@ C++ includes: Crystal.h %feature("docstring") Crystal::~Crystal "Crystal::~Crystal() "; -%feature("docstring") Crystal::clone "Crystal * Crystal::clone() const override final +%feature("docstring") Crystal::clone "Crystal * Crystal::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") Crystal::accept "void Crystal::accept(INodeVisitor *visitor) const override final +%feature("docstring") Crystal::accept "void Crystal::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") Crystal::createTotalFormFactor "IFormFactor * Crystal::createTotalFormFactor(const IFormFactor &meso_crystal_form_factor, const IRotation *p_rotation, const kvector_t &translation) const override final +%feature("docstring") Crystal::createTotalFormFactor "IFormFactor * Crystal::createTotalFormFactor(const IFormFactor &meso_crystal_form_factor, const IRotation *p_rotation, const kvector_t &translation) const overridefinal Creates a total form factor for the mesocrystal with a specific shape and content The bulk content of the mesocrystal is encapsulated by the IClusteredParticles object itself "; -%feature("docstring") Crystal::homogeneousRegions "std::vector< HomogeneousRegion > Crystal::homogeneousRegions() const override final +%feature("docstring") Crystal::homogeneousRegions "std::vector< HomogeneousRegion > Crystal::homogeneousRegions() const overridefinal Creates region information with volumetric densities instead of absolute volume These densities need to be multiplied by the total mesocrystal volume "; -%feature("docstring") Crystal::transformedLattice "Lattice Crystal::transformedLattice(const IRotation *p_rotation=nullptr) const +%feature("docstring") Crystal::transformedLattice "Lattice Crystal::transformedLattice(const IRotation *p_rotation=nullptr) const "; %feature("docstring") Crystal::setDWFactor "void Crystal::setDWFactor(double dw_factor) "; -%feature("docstring") Crystal::getChildren "std::vector< const INode * > Crystal::getChildren() const override final +%feature("docstring") Crystal::getChildren "std::vector< const INode * > Crystal::getChildren() const overridefinal Returns a vector of children (const). "; @@ -999,16 +1002,16 @@ C++ includes: CumulativeValue.h %feature("docstring") CumulativeValue::add "void CumulativeValue::add(double value, double weight=1.0) "; -%feature("docstring") CumulativeValue::getNumberOfEntries "int CumulativeValue::getNumberOfEntries() const +%feature("docstring") CumulativeValue::getNumberOfEntries "int CumulativeValue::getNumberOfEntries() const "; -%feature("docstring") CumulativeValue::getContent "double CumulativeValue::getContent() const +%feature("docstring") CumulativeValue::getContent "double CumulativeValue::getContent() const "; -%feature("docstring") CumulativeValue::getAverage "double CumulativeValue::getAverage() const +%feature("docstring") CumulativeValue::getAverage "double CumulativeValue::getAverage() const "; -%feature("docstring") CumulativeValue::getRMS "double CumulativeValue::getRMS() const +%feature("docstring") CumulativeValue::getRMS "double CumulativeValue::getRMS() const "; @@ -1053,7 +1056,7 @@ clone function retrieve a 1d bin for the given index "; -%feature("docstring") CustomBinAxis::getBinCenters "std::vector< double > CustomBinAxis::getBinCenters() const +%feature("docstring") CustomBinAxis::getBinCenters "std::vector< double > CustomBinAxis::getBinCenters() const "; %feature("docstring") CustomBinAxis::createClippedAxis "CustomBinAxis * CustomBinAxis::createClippedAxis(double left, double right) const @@ -1073,7 +1076,7 @@ C++ includes: CustomMorphologyBuilder.h %feature("docstring") CustomMorphologyBuilder::CustomMorphologyBuilder "CustomMorphologyBuilder::CustomMorphologyBuilder() "; -%feature("docstring") CustomMorphologyBuilder::buildSample "MultiLayer * CustomMorphologyBuilder::buildSample() const +%feature("docstring") CustomMorphologyBuilder::buildSample "MultiLayer * CustomMorphologyBuilder::buildSample() const "; @@ -1088,7 +1091,7 @@ C++ includes: CylindersAndPrismsBuilder.h %feature("docstring") CylindersAndPrismsBuilder::CylindersAndPrismsBuilder "CylindersAndPrismsBuilder::CylindersAndPrismsBuilder() "; -%feature("docstring") CylindersAndPrismsBuilder::buildSample "MultiLayer * CylindersAndPrismsBuilder::buildSample() const +%feature("docstring") CylindersAndPrismsBuilder::buildSample "MultiLayer * CylindersAndPrismsBuilder::buildSample() const "; @@ -1103,7 +1106,7 @@ C++ includes: CylindersBuilder.h %feature("docstring") CylindersInBABuilder::CylindersInBABuilder "CylindersInBABuilder::CylindersInBABuilder() "; -%feature("docstring") CylindersInBABuilder::buildSample "MultiLayer * CylindersInBABuilder::buildSample() const +%feature("docstring") CylindersInBABuilder::buildSample "MultiLayer * CylindersInBABuilder::buildSample() const "; @@ -1118,7 +1121,7 @@ C++ includes: CylindersBuilder.h %feature("docstring") CylindersInDWBABuilder::CylindersInDWBABuilder "CylindersInDWBABuilder::CylindersInDWBABuilder() "; -%feature("docstring") CylindersInDWBABuilder::buildSample "MultiLayer * CylindersInDWBABuilder::buildSample() const +%feature("docstring") CylindersInDWBABuilder::buildSample "MultiLayer * CylindersInDWBABuilder::buildSample() const "; @@ -1133,7 +1136,7 @@ C++ includes: SizeDistributionModelsBuilder.h %feature("docstring") CylindersInSSCABuilder::CylindersInSSCABuilder "CylindersInSSCABuilder::CylindersInSSCABuilder() "; -%feature("docstring") CylindersInSSCABuilder::buildSample "MultiLayer * CylindersInSSCABuilder::buildSample() const +%feature("docstring") CylindersInSSCABuilder::buildSample "MultiLayer * CylindersInSSCABuilder::buildSample() const "; @@ -1148,7 +1151,7 @@ C++ includes: ParticleDistributionsBuilder.h %feature("docstring") CylindersWithSizeDistributionBuilder::CylindersWithSizeDistributionBuilder "CylindersWithSizeDistributionBuilder::CylindersWithSizeDistributionBuilder() "; -%feature("docstring") CylindersWithSizeDistributionBuilder::buildSample "MultiLayer * CylindersWithSizeDistributionBuilder::buildSample() const +%feature("docstring") CylindersWithSizeDistributionBuilder::buildSample "MultiLayer * CylindersWithSizeDistributionBuilder::buildSample() const "; @@ -1228,7 +1231,7 @@ Retrieve the analyzer characteristics. will always return positive value "; -%feature("docstring") DetectionProperties::analyzerTotalTransmission "double DetectionProperties::analyzerTotalTransmission() const +%feature("docstring") DetectionProperties::analyzerTotalTransmission "double DetectionProperties::analyzerTotalTransmission() const "; %feature("docstring") DetectionProperties::accept "void DetectionProperties::accept(INodeVisitor *visitor) const final @@ -1251,7 +1254,7 @@ C++ includes: DetectorElement.h %feature("docstring") DetectorElement::setSpecular "void DetectorElement::setSpecular(bool specular=true) "; -%feature("docstring") DetectorElement::isSpecular "bool DetectorElement::isSpecular() const +%feature("docstring") DetectorElement::isSpecular "bool DetectorElement::isSpecular() const "; %feature("docstring") DetectorElement::getAnalyzerOperator "Eigen::Matrix2cd DetectorElement::getAnalyzerOperator() const @@ -1301,13 +1304,13 @@ Init the map of masks for the given detector plane. %feature("docstring") DetectorMask::initMaskData "void DetectorMask::initMaskData(const OutputData< double > &data) "; -%feature("docstring") DetectorMask::isMasked "bool DetectorMask::isMasked(size_t index) const +%feature("docstring") DetectorMask::isMasked "bool DetectorMask::isMasked(size_t index) const "; -%feature("docstring") DetectorMask::getMaskData "const OutputData<bool>* DetectorMask::getMaskData() const +%feature("docstring") DetectorMask::getMaskData "const OutputData<bool>* DetectorMask::getMaskData() const "; -%feature("docstring") DetectorMask::createHistogram "Histogram2D * DetectorMask::createHistogram() const +%feature("docstring") DetectorMask::createHistogram "Histogram2D * DetectorMask::createHistogram() const "; %feature("docstring") DetectorMask::removeMasks "void DetectorMask::removeMasks() @@ -1320,13 +1323,13 @@ remove all masks and return object to initial state returns true if has masks "; -%feature("docstring") DetectorMask::numberOfMaskedChannels "int DetectorMask::numberOfMaskedChannels() const +%feature("docstring") DetectorMask::numberOfMaskedChannels "int DetectorMask::numberOfMaskedChannels() const "; -%feature("docstring") DetectorMask::numberOfMasks "size_t DetectorMask::numberOfMasks() const +%feature("docstring") DetectorMask::numberOfMasks "size_t DetectorMask::numberOfMasks() const "; -%feature("docstring") DetectorMask::getMaskShape "const IShape2D * DetectorMask::getMaskShape(size_t mask_index, bool &mask_value) const +%feature("docstring") DetectorMask::getMaskShape "const IShape2D * DetectorMask::getMaskShape(size_t mask_index, bool &mask_value) const "; @@ -1360,7 +1363,7 @@ Returns the distribution-specific probability density for value x. Returns the distribution-specific mean. "; -%feature("docstring") DistributionCosine::getSigma "double DistributionCosine::getSigma() const +%feature("docstring") DistributionCosine::getSigma "double DistributionCosine::getSigma() const "; %feature("docstring") DistributionCosine::equidistantPoints "std::vector< double > DistributionCosine::equidistantPoints(size_t nbr_samples, double sigma_factor, const RealLimits &limits=RealLimits()) const @@ -1409,10 +1412,10 @@ Returns the distribution-specific probability density for value x. Returns the distribution-specific mean. "; -%feature("docstring") DistributionGate::getMin "double DistributionGate::getMin() const +%feature("docstring") DistributionGate::getMin "double DistributionGate::getMin() const "; -%feature("docstring") DistributionGate::getMax "double DistributionGate::getMax() const +%feature("docstring") DistributionGate::getMax "double DistributionGate::getMax() const "; %feature("docstring") DistributionGate::equidistantPoints "std::vector< double > DistributionGate::equidistantPoints(size_t nbr_samples, double sigma_factor, const RealLimits &limits=RealLimits()) const @@ -1461,7 +1464,7 @@ Returns the distribution-specific probability density for value x. Returns the distribution-specific mean. "; -%feature("docstring") DistributionGaussian::getStdDev "double DistributionGaussian::getStdDev() const +%feature("docstring") DistributionGaussian::getStdDev "double DistributionGaussian::getStdDev() const "; %feature("docstring") DistributionGaussian::equidistantPoints "std::vector< double > DistributionGaussian::equidistantPoints(size_t nbr_samples, double sigma_factor, const RealLimits &limits=RealLimits()) const @@ -1512,7 +1515,7 @@ get the total number of parameter value combinations (product of the individual set the parameter values of the simulation object to a specific combination of values, determined by the index (which must be smaller than the total number of combinations) and returns the weight associated with this combination of parameter values "; -%feature("docstring") DistributionHandler::getDistributions "const DistributionHandler::Distributions_t & DistributionHandler::getDistributions() const +%feature("docstring") DistributionHandler::getDistributions "const DistributionHandler::Distributions_t & DistributionHandler::getDistributions() const "; @@ -1546,10 +1549,10 @@ Returns the distribution-specific probability density for value x. Returns the distribution-specific mean. "; -%feature("docstring") DistributionLogNormal::getMedian "double DistributionLogNormal::getMedian() const +%feature("docstring") DistributionLogNormal::getMedian "double DistributionLogNormal::getMedian() const "; -%feature("docstring") DistributionLogNormal::getScalePar "double DistributionLogNormal::getScalePar() const +%feature("docstring") DistributionLogNormal::getScalePar "double DistributionLogNormal::getScalePar() const "; %feature("docstring") DistributionLogNormal::equidistantPoints "std::vector< double > DistributionLogNormal::equidistantPoints(size_t nbr_samples, double sigma_factor, const RealLimits &limits=RealLimits()) const @@ -1603,7 +1606,7 @@ Returns the distribution-specific probability density for value x. Returns the distribution-specific mean. "; -%feature("docstring") DistributionLorentz::getHWHM "double DistributionLorentz::getHWHM() const +%feature("docstring") DistributionLorentz::getHWHM "double DistributionLorentz::getHWHM() const "; %feature("docstring") DistributionLorentz::equidistantPoints "std::vector< double > DistributionLorentz::equidistantPoints(size_t nbr_samples, double sigma_factor, const RealLimits &limits=RealLimits()) const @@ -1652,13 +1655,13 @@ Returns the distribution-specific probability density for value x. Returns the distribution-specific mean. "; -%feature("docstring") DistributionTrapezoid::getLeftWidth "double DistributionTrapezoid::getLeftWidth() const +%feature("docstring") DistributionTrapezoid::getLeftWidth "double DistributionTrapezoid::getLeftWidth() const "; -%feature("docstring") DistributionTrapezoid::getMiddleWidth "double DistributionTrapezoid::getMiddleWidth() const +%feature("docstring") DistributionTrapezoid::getMiddleWidth "double DistributionTrapezoid::getMiddleWidth() const "; -%feature("docstring") DistributionTrapezoid::getRightWidth "double DistributionTrapezoid::getRightWidth() const +%feature("docstring") DistributionTrapezoid::getRightWidth "double DistributionTrapezoid::getRightWidth() const "; %feature("docstring") DistributionTrapezoid::equidistantPoints "std::vector< double > DistributionTrapezoid::equidistantPoints(size_t nbr_samples, double sigma_factor, const RealLimits &limits=RealLimits()) const @@ -1767,7 +1770,7 @@ theta: Angle of Ellipse rotation in radians "; -%feature("docstring") Ellipse::clone "Ellipse* Ellipse::clone() const +%feature("docstring") Ellipse::clone "Ellipse* Ellipse::clone() const "; %feature("docstring") Ellipse::contains "bool Ellipse::contains(double x, double y) const @@ -1780,19 +1783,19 @@ Returns true if point with given coordinates is inside or on border of the shape Returns true if area defined by two bins is inside or on border of ellipse; more precisely, if mid point of two bins satisfy this condition. "; -%feature("docstring") Ellipse::getCenterX "double Ellipse::getCenterX() const +%feature("docstring") Ellipse::getCenterX "double Ellipse::getCenterX() const "; -%feature("docstring") Ellipse::getCenterY "double Ellipse::getCenterY() const +%feature("docstring") Ellipse::getCenterY "double Ellipse::getCenterY() const "; -%feature("docstring") Ellipse::getRadiusX "double Ellipse::getRadiusX() const +%feature("docstring") Ellipse::getRadiusX "double Ellipse::getRadiusX() const "; -%feature("docstring") Ellipse::getRadiusY "double Ellipse::getRadiusY() const +%feature("docstring") Ellipse::getRadiusY "double Ellipse::getRadiusY() const "; -%feature("docstring") Ellipse::getTheta "double Ellipse::getTheta() const +%feature("docstring") Ellipse::getTheta "double Ellipse::getTheta() const "; @@ -1834,25 +1837,25 @@ C++ includes: FitElement.h %feature("docstring") FitElement::FitElement "FitElement::FitElement(const FitElement &other) "; -%feature("docstring") FitElement::getIndex "size_t FitElement::getIndex() const +%feature("docstring") FitElement::getIndex "size_t FitElement::getIndex() const "; -%feature("docstring") FitElement::getSimulValue "double FitElement::getSimulValue() const +%feature("docstring") FitElement::getSimulValue "double FitElement::getSimulValue() const "; -%feature("docstring") FitElement::getRealValue "double FitElement::getRealValue() const +%feature("docstring") FitElement::getRealValue "double FitElement::getRealValue() const "; -%feature("docstring") FitElement::getWeight "double FitElement::getWeight() const +%feature("docstring") FitElement::getWeight "double FitElement::getWeight() const "; -%feature("docstring") FitElement::getSquaredDifference "double FitElement::getSquaredDifference() const +%feature("docstring") FitElement::getSquaredDifference "double FitElement::getSquaredDifference() const "; %feature("docstring") FitElement::setSquaredDifference "void FitElement::setSquaredDifference(double value) "; -%feature("docstring") FitElement::getResidual "double FitElement::getResidual() const +%feature("docstring") FitElement::getResidual "double FitElement::getResidual() const "; %feature("docstring") FitElement::setResidual "void FitElement::setResidual(double value) @@ -1935,9 +1938,6 @@ Updates ChiSquared map from external vector and returns const reference to it. U Returns a vector of children (const). "; -%feature("docstring") FitObject::getDefaultAxisUnits "std::string FitObject::getDefaultAxisUnits() const -"; - // File: classFitParameter.xml %feature("docstring") FitParameter " @@ -1959,7 +1959,7 @@ C++ includes: FitParameter.h %feature("docstring") FitParameter::~FitParameter "FitParameter::~FitParameter() final "; -%feature("docstring") FitParameter::clone "FitParameter * FitParameter::clone() const +%feature("docstring") FitParameter::clone "FitParameter * FitParameter::clone() const "; %feature("docstring") FitParameter::setValue "void FitParameter::setValue(double value) final @@ -1982,7 +1982,7 @@ Adds real parameter to the collection. Adds parameters from pool which match given wildcard. "; -%feature("docstring") FitParameter::patterns "std::vector< std::string > FitParameter::patterns() const +%feature("docstring") FitParameter::patterns "std::vector< std::string > FitParameter::patterns() const "; %feature("docstring") FitParameter::matchedParameterNames "std::vector< std::string > FitParameter::matchedParameterNames() const @@ -2018,7 +2018,7 @@ C++ includes: FitStrategyAdjustParameters.h %feature("docstring") FitStrategyAdjustParameters::~FitStrategyAdjustParameters "virtual FitStrategyAdjustParameters::~FitStrategyAdjustParameters() "; -%feature("docstring") FitStrategyAdjustParameters::clone "virtual FitStrategyAdjustParameters* FitStrategyAdjustParameters::clone() const +%feature("docstring") FitStrategyAdjustParameters::clone "virtual FitStrategyAdjustParameters* FitStrategyAdjustParameters::clone() const "; %feature("docstring") FitStrategyAdjustParameters::execute "void FitStrategyAdjustParameters::execute() @@ -2056,7 +2056,7 @@ C++ includes: IFitStrategy.h %feature("docstring") FitStrategyDefault::FitStrategyDefault "FitStrategyDefault::FitStrategyDefault() "; -%feature("docstring") FitStrategyDefault::clone "FitStrategyDefault * FitStrategyDefault::clone() const +%feature("docstring") FitStrategyDefault::clone "FitStrategyDefault * FitStrategyDefault::clone() const "; %feature("docstring") FitStrategyDefault::execute "void FitStrategyDefault::execute() @@ -2080,7 +2080,7 @@ C++ includes: FitStrategyAdjustParameters.h %feature("docstring") FitStrategyFixParameters::~FitStrategyFixParameters "virtual FitStrategyFixParameters::~FitStrategyFixParameters() "; -%feature("docstring") FitStrategyFixParameters::clone "virtual FitStrategyFixParameters* FitStrategyFixParameters::clone() const +%feature("docstring") FitStrategyFixParameters::clone "virtual FitStrategyFixParameters* FitStrategyFixParameters::clone() const "; %feature("docstring") FitStrategyFixParameters::clear "virtual void FitStrategyFixParameters::clear() @@ -2107,7 +2107,7 @@ C++ includes: FitStrategyAdjustParameters.h %feature("docstring") FitStrategyReleaseParameters::~FitStrategyReleaseParameters "virtual FitStrategyReleaseParameters::~FitStrategyReleaseParameters() "; -%feature("docstring") FitStrategyReleaseParameters::clone "virtual FitStrategyReleaseParameters* FitStrategyReleaseParameters::clone() const +%feature("docstring") FitStrategyReleaseParameters::clone "virtual FitStrategyReleaseParameters* FitStrategyReleaseParameters::clone() const "; %feature("docstring") FitStrategyReleaseParameters::clear "virtual void FitStrategyReleaseParameters::clear() @@ -2330,13 +2330,13 @@ Returns minimum chi squared value found. %feature("docstring") FitSuite::isInterrupted "bool FitSuite::isInterrupted() "; -%feature("docstring") FitSuite::getRealOutputData "const OutputData< double > * FitSuite::getRealOutputData(size_t i_item=0) const +%feature("docstring") FitSuite::getRealOutputData "const OutputData< double > * FitSuite::getRealOutputData(size_t i_item=0) const "; -%feature("docstring") FitSuite::getSimulationOutputData "const OutputData< double > * FitSuite::getSimulationOutputData(size_t i_item=0) const +%feature("docstring") FitSuite::getSimulationOutputData "const OutputData< double > * FitSuite::getSimulationOutputData(size_t i_item=0) const "; -%feature("docstring") FitSuite::getChiSquaredOutputData "const OutputData< double > * FitSuite::getChiSquaredOutputData(size_t i_item=0) const +%feature("docstring") FitSuite::getChiSquaredOutputData "const OutputData< double > * FitSuite::getChiSquaredOutputData(size_t i_item=0) const "; %feature("docstring") FitSuite::parametersToString "std::string FitSuite::parametersToString() const @@ -2398,10 +2398,10 @@ evaluate method for gradients and residuals called directly from the minimizer evaluate residual and derivative for given data element "; -%feature("docstring") FitSuiteGradientFunction::getNCallsTotal "virtual size_t FitSuiteGradientFunction::getNCallsTotal() const +%feature("docstring") FitSuiteGradientFunction::getNCallsTotal "virtual size_t FitSuiteGradientFunction::getNCallsTotal() const "; -%feature("docstring") FitSuiteGradientFunction::getNCallsGradient "virtual size_t FitSuiteGradientFunction::getNCallsGradient() const +%feature("docstring") FitSuiteGradientFunction::getNCallsGradient "virtual size_t FitSuiteGradientFunction::getNCallsGradient() const "; @@ -2471,7 +2471,7 @@ Runs a single minimization round (called by FitSuiteStrategy) Returns reference to the kit with data. "; -%feature("docstring") FitSuiteImpl::fitObjects "const FitSuiteObjects* FitSuiteImpl::fitObjects() const +%feature("docstring") FitSuiteImpl::fitObjects "const FitSuiteObjects* FitSuiteImpl::fitObjects() const "; %feature("docstring") FitSuiteImpl::fitParameters "FitParameterSet * FitSuiteImpl::fitParameters() @@ -2523,10 +2523,10 @@ Sets fit options. %feature("docstring") FitSuiteImpl::resetInterrupt "void FitSuiteImpl::resetInterrupt() "; -%feature("docstring") FitSuiteImpl::isInterrupted "bool FitSuiteImpl::isInterrupted() const +%feature("docstring") FitSuiteImpl::isInterrupted "bool FitSuiteImpl::isInterrupted() const "; -%feature("docstring") FitSuiteImpl::kernel "const FitKernel * FitSuiteImpl::kernel() const +%feature("docstring") FitSuiteImpl::kernel "const FitKernel * FitSuiteImpl::kernel() const "; %feature("docstring") FitSuiteImpl::setupToString "std::string FitSuiteImpl::setupToString() @@ -2635,7 +2635,7 @@ index accross all element in FitElement vector clear all data "; -%feature("docstring") FitSuiteObjects::size "size_t FitSuiteObjects::size() const +%feature("docstring") FitSuiteObjects::size "size_t FitSuiteObjects::size() const "; %feature("docstring") FitSuiteObjects::begin "iterator FitSuiteObjects::begin() @@ -2649,9 +2649,6 @@ clear all data Returns a vector of children (const). "; -%feature("docstring") FitSuiteObjects::getDefaultAxesUnits "std::string FitSuiteObjects::getDefaultAxesUnits(size_t i_item=0) const -"; - // File: classFitSuitePrintObserver.xml %feature("docstring") FitSuitePrintObserver " @@ -2699,10 +2696,10 @@ C++ includes: FitSuiteStrategies.h %feature("docstring") FitSuiteStrategies::minimize "void FitSuiteStrategies::minimize() "; -%feature("docstring") FitSuiteStrategies::currentStrategyIndex "size_t FitSuiteStrategies::currentStrategyIndex() const +%feature("docstring") FitSuiteStrategies::currentStrategyIndex "size_t FitSuiteStrategies::currentStrategyIndex() const "; -%feature("docstring") FitSuiteStrategies::size "size_t FitSuiteStrategies::size() const +%feature("docstring") FitSuiteStrategies::size "size_t FitSuiteStrategies::size() const "; %feature("docstring") FitSuiteStrategies::clear "void FitSuiteStrategies::clear() @@ -2768,7 +2765,7 @@ Returns value of first point of axis. Returns value of last point of axis. "; -%feature("docstring") FixedBinAxis::getBinCenter "double FixedBinAxis::getBinCenter(size_t index) const +%feature("docstring") FixedBinAxis::getBinCenter "double FixedBinAxis::getBinCenter(size_t index) const "; %feature("docstring") FixedBinAxis::findClosestIndex "size_t FixedBinAxis::findClosestIndex(double value) const @@ -2776,10 +2773,10 @@ Returns value of last point of axis. find bin index which is best match for given value "; -%feature("docstring") FixedBinAxis::getBinCenters "std::vector< double > FixedBinAxis::getBinCenters() const +%feature("docstring") FixedBinAxis::getBinCenters "std::vector< double > FixedBinAxis::getBinCenters() const "; -%feature("docstring") FixedBinAxis::getBinBoundaries "std::vector< double > FixedBinAxis::getBinBoundaries() const +%feature("docstring") FixedBinAxis::getBinBoundaries "std::vector< double > FixedBinAxis::getBinBoundaries() const "; %feature("docstring") FixedBinAxis::createClippedAxis "FixedBinAxis * FixedBinAxis::createClippedAxis(double left, double right) const @@ -2873,26 +2870,26 @@ alpha: dihedral angle in radians between base and facet "; -%feature("docstring") FormFactorAnisoPyramid::clone "FormFactorAnisoPyramid* FormFactorAnisoPyramid::clone() const override final +%feature("docstring") FormFactorAnisoPyramid::clone "FormFactorAnisoPyramid* FormFactorAnisoPyramid::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") FormFactorAnisoPyramid::accept "void FormFactorAnisoPyramid::accept(INodeVisitor *visitor) const override final +%feature("docstring") FormFactorAnisoPyramid::accept "void FormFactorAnisoPyramid::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") FormFactorAnisoPyramid::getLength "double FormFactorAnisoPyramid::getLength() const +%feature("docstring") FormFactorAnisoPyramid::getLength "double FormFactorAnisoPyramid::getLength() const "; -%feature("docstring") FormFactorAnisoPyramid::getWidth "double FormFactorAnisoPyramid::getWidth() const +%feature("docstring") FormFactorAnisoPyramid::getWidth "double FormFactorAnisoPyramid::getWidth() const "; -%feature("docstring") FormFactorAnisoPyramid::getHeight "double FormFactorAnisoPyramid::getHeight() const +%feature("docstring") FormFactorAnisoPyramid::getHeight "double FormFactorAnisoPyramid::getHeight() const "; -%feature("docstring") FormFactorAnisoPyramid::getAlpha "double FormFactorAnisoPyramid::getAlpha() const +%feature("docstring") FormFactorAnisoPyramid::getAlpha "double FormFactorAnisoPyramid::getAlpha() const "; @@ -2921,31 +2918,31 @@ height: height of the box in nanometers "; -%feature("docstring") FormFactorBox::clone "FormFactorBox* FormFactorBox::clone() const override final +%feature("docstring") FormFactorBox::clone "FormFactorBox* FormFactorBox::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") FormFactorBox::accept "void FormFactorBox::accept(INodeVisitor *visitor) const override final +%feature("docstring") FormFactorBox::accept "void FormFactorBox::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") FormFactorBox::getLength "double FormFactorBox::getLength() const +%feature("docstring") FormFactorBox::getLength "double FormFactorBox::getLength() const "; -%feature("docstring") FormFactorBox::getHeight "double FormFactorBox::getHeight() const +%feature("docstring") FormFactorBox::getHeight "double FormFactorBox::getHeight() const "; -%feature("docstring") FormFactorBox::getWidth "double FormFactorBox::getWidth() const +%feature("docstring") FormFactorBox::getWidth "double FormFactorBox::getWidth() const "; -%feature("docstring") FormFactorBox::radialExtension "double FormFactorBox::radialExtension() const override final +%feature("docstring") FormFactorBox::radialExtension "double FormFactorBox::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations "; -%feature("docstring") FormFactorBox::evaluate_for_q "complex_t FormFactorBox::evaluate_for_q(cvector_t q) const override final +%feature("docstring") FormFactorBox::evaluate_for_q "complex_t FormFactorBox::evaluate_for_q(cvector_t q) const overridefinal Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. "; @@ -2968,16 +2965,16 @@ C++ includes: FormFactorCoherentPart.h %feature("docstring") FormFactorCoherentPart::~FormFactorCoherentPart "FormFactorCoherentPart::~FormFactorCoherentPart() "; -%feature("docstring") FormFactorCoherentPart::evaluate "complex_t FormFactorCoherentPart::evaluate(const SimulationElement &sim_element) const +%feature("docstring") FormFactorCoherentPart::evaluate "complex_t FormFactorCoherentPart::evaluate(const SimulationElement &sim_element) const "; -%feature("docstring") FormFactorCoherentPart::evaluatePol "Eigen::Matrix2cd FormFactorCoherentPart::evaluatePol(const SimulationElement &sim_element) const +%feature("docstring") FormFactorCoherentPart::evaluatePol "Eigen::Matrix2cd FormFactorCoherentPart::evaluatePol(const SimulationElement &sim_element) const "; %feature("docstring") FormFactorCoherentPart::setSpecularInfo "void FormFactorCoherentPart::setSpecularInfo(const IFresnelMap *p_fresnel_map, size_t layer_index) "; -%feature("docstring") FormFactorCoherentPart::radialExtension "double FormFactorCoherentPart::radialExtension() const +%feature("docstring") FormFactorCoherentPart::radialExtension "double FormFactorCoherentPart::radialExtension() const "; @@ -2995,28 +2992,28 @@ C++ includes: FormFactorCoherentSum.h %feature("docstring") FormFactorCoherentSum::~FormFactorCoherentSum "FormFactorCoherentSum::~FormFactorCoherentSum() "; -%feature("docstring") FormFactorCoherentSum::clone "FormFactorCoherentSum * FormFactorCoherentSum::clone() const +%feature("docstring") FormFactorCoherentSum::clone "FormFactorCoherentSum * FormFactorCoherentSum::clone() const "; %feature("docstring") FormFactorCoherentSum::addCoherentPart "void FormFactorCoherentSum::addCoherentPart(const FormFactorCoherentPart &part) "; -%feature("docstring") FormFactorCoherentSum::evaluate "complex_t FormFactorCoherentSum::evaluate(const SimulationElement &sim_element) const +%feature("docstring") FormFactorCoherentSum::evaluate "complex_t FormFactorCoherentSum::evaluate(const SimulationElement &sim_element) const "; -%feature("docstring") FormFactorCoherentSum::evaluatePol "Eigen::Matrix2cd FormFactorCoherentSum::evaluatePol(const SimulationElement &sim_element) const +%feature("docstring") FormFactorCoherentSum::evaluatePol "Eigen::Matrix2cd FormFactorCoherentSum::evaluatePol(const SimulationElement &sim_element) const "; %feature("docstring") FormFactorCoherentSum::setSpecularInfo "void FormFactorCoherentSum::setSpecularInfo(const IFresnelMap *p_fresnel_map, size_t layer_index) "; -%feature("docstring") FormFactorCoherentSum::relativeAbundance "double FormFactorCoherentSum::relativeAbundance() const +%feature("docstring") FormFactorCoherentSum::relativeAbundance "double FormFactorCoherentSum::relativeAbundance() const "; %feature("docstring") FormFactorCoherentSum::scaleRelativeAbundance "void FormFactorCoherentSum::scaleRelativeAbundance(double total_abundance) "; -%feature("docstring") FormFactorCoherentSum::radialExtension "double FormFactorCoherentSum::radialExtension() const +%feature("docstring") FormFactorCoherentSum::radialExtension "double FormFactorCoherentSum::radialExtension() const "; @@ -3057,31 +3054,31 @@ alpha: angle between the base and the side surface in radians "; -%feature("docstring") FormFactorCone::clone "FormFactorCone* FormFactorCone::clone() const override final +%feature("docstring") FormFactorCone::clone "FormFactorCone* FormFactorCone::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") FormFactorCone::accept "void FormFactorCone::accept(INodeVisitor *visitor) const override final +%feature("docstring") FormFactorCone::accept "void FormFactorCone::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") FormFactorCone::getHeight "double FormFactorCone::getHeight() const +%feature("docstring") FormFactorCone::getHeight "double FormFactorCone::getHeight() const "; -%feature("docstring") FormFactorCone::getAlpha "double FormFactorCone::getAlpha() const +%feature("docstring") FormFactorCone::getAlpha "double FormFactorCone::getAlpha() const "; -%feature("docstring") FormFactorCone::getRadius "double FormFactorCone::getRadius() const +%feature("docstring") FormFactorCone::getRadius "double FormFactorCone::getRadius() const "; -%feature("docstring") FormFactorCone::radialExtension "double FormFactorCone::radialExtension() const override final +%feature("docstring") FormFactorCone::radialExtension "double FormFactorCone::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations "; -%feature("docstring") FormFactorCone::evaluate_for_q "complex_t FormFactorCone::evaluate_for_q(cvector_t q) const override final +%feature("docstring") FormFactorCone::evaluate_for_q "complex_t FormFactorCone::evaluate_for_q(cvector_t q) const overridefinal Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. "; @@ -3112,23 +3109,23 @@ alpha: dihedral angle in radians between base and facet "; -%feature("docstring") FormFactorCone6::clone "FormFactorCone6* FormFactorCone6::clone() const override final +%feature("docstring") FormFactorCone6::clone "FormFactorCone6* FormFactorCone6::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") FormFactorCone6::accept "void FormFactorCone6::accept(INodeVisitor *visitor) const override final +%feature("docstring") FormFactorCone6::accept "void FormFactorCone6::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") FormFactorCone6::getBaseEdge "double FormFactorCone6::getBaseEdge() const +%feature("docstring") FormFactorCone6::getBaseEdge "double FormFactorCone6::getBaseEdge() const "; -%feature("docstring") FormFactorCone6::getHeight "double FormFactorCone6::getHeight() const +%feature("docstring") FormFactorCone6::getHeight "double FormFactorCone6::getHeight() const "; -%feature("docstring") FormFactorCone6::getAlpha "double FormFactorCone6::getAlpha() const +%feature("docstring") FormFactorCone6::getAlpha "double FormFactorCone6::getAlpha() const "; @@ -3145,45 +3142,45 @@ C++ includes: FormFactorCoreShell.h %feature("docstring") FormFactorCoreShell::FormFactorCoreShell "FormFactorCoreShell::FormFactorCoreShell(IFormFactor *core, IFormFactor *shell) "; -%feature("docstring") FormFactorCoreShell::~FormFactorCoreShell "FormFactorCoreShell::~FormFactorCoreShell() override final +%feature("docstring") FormFactorCoreShell::~FormFactorCoreShell "FormFactorCoreShell::~FormFactorCoreShell() overridefinal "; -%feature("docstring") FormFactorCoreShell::clone "FormFactorCoreShell * FormFactorCoreShell::clone() const override final +%feature("docstring") FormFactorCoreShell::clone "FormFactorCoreShell * FormFactorCoreShell::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") FormFactorCoreShell::accept "void FormFactorCoreShell::accept(INodeVisitor *visitor) const override final +%feature("docstring") FormFactorCoreShell::accept "void FormFactorCoreShell::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") FormFactorCoreShell::radialExtension "double FormFactorCoreShell::radialExtension() const override final +%feature("docstring") FormFactorCoreShell::radialExtension "double FormFactorCoreShell::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations "; -%feature("docstring") FormFactorCoreShell::bottomZ "double FormFactorCoreShell::bottomZ(const IRotation &rotation) const override final +%feature("docstring") FormFactorCoreShell::bottomZ "double FormFactorCoreShell::bottomZ(const IRotation &rotation) const overridefinal Returns the z-coordinate of the lowest point in this shape after a given rotation. "; -%feature("docstring") FormFactorCoreShell::topZ "double FormFactorCoreShell::topZ(const IRotation &rotation) const override final +%feature("docstring") FormFactorCoreShell::topZ "double FormFactorCoreShell::topZ(const IRotation &rotation) const overridefinal Returns the z-coordinate of the lowest point in this shape after a given rotation. "; -%feature("docstring") FormFactorCoreShell::setAmbientMaterial "void FormFactorCoreShell::setAmbientMaterial(Material material) override final +%feature("docstring") FormFactorCoreShell::setAmbientMaterial "void FormFactorCoreShell::setAmbientMaterial(Material material) overridefinal Passes the material in which this particle is embedded. "; -%feature("docstring") FormFactorCoreShell::evaluate "complex_t FormFactorCoreShell::evaluate(const WavevectorInfo &wavevectors) const override final +%feature("docstring") FormFactorCoreShell::evaluate "complex_t FormFactorCoreShell::evaluate(const WavevectorInfo &wavevectors) const overridefinal Returns scattering amplitude for complex wavevectors ki, kf. "; -%feature("docstring") FormFactorCoreShell::evaluatePol "Eigen::Matrix2cd FormFactorCoreShell::evaluatePol(const WavevectorInfo &wavevectors) const override final +%feature("docstring") FormFactorCoreShell::evaluatePol "Eigen::Matrix2cd FormFactorCoreShell::evaluatePol(const WavevectorInfo &wavevectors) const overridefinal Calculates and returns a polarized form factor calculation in DWBA. "; @@ -3200,15 +3197,15 @@ C++ includes: FormFactorCrystal.h %feature("docstring") FormFactorCrystal::FormFactorCrystal "FormFactorCrystal::FormFactorCrystal(const Lattice &lattice, const IFormFactor &basis_form_factor, const IFormFactor &meso_form_factor) "; -%feature("docstring") FormFactorCrystal::~FormFactorCrystal "FormFactorCrystal::~FormFactorCrystal() override final +%feature("docstring") FormFactorCrystal::~FormFactorCrystal "FormFactorCrystal::~FormFactorCrystal() overridefinal "; -%feature("docstring") FormFactorCrystal::clone "FormFactorCrystal* FormFactorCrystal::clone() const override final +%feature("docstring") FormFactorCrystal::clone "FormFactorCrystal* FormFactorCrystal::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") FormFactorCrystal::accept "void FormFactorCrystal::accept(INodeVisitor *visitor) const override final +%feature("docstring") FormFactorCrystal::accept "void FormFactorCrystal::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; @@ -3218,12 +3215,12 @@ Calls the INodeVisitor's visit method. Passes the material in which this particle is embedded. "; -%feature("docstring") FormFactorCrystal::volume "double FormFactorCrystal::volume() const override final +%feature("docstring") FormFactorCrystal::volume "double FormFactorCrystal::volume() const overridefinal Returns the total volume of the particle of this form factor's shape. "; -%feature("docstring") FormFactorCrystal::radialExtension "double FormFactorCrystal::radialExtension() const override final +%feature("docstring") FormFactorCrystal::radialExtension "double FormFactorCrystal::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations "; @@ -3233,17 +3230,17 @@ Returns the (approximate in some cases) radial size of the particle of this form Returns the z-coordinate of the lowest point in this shape after a given rotation. "; -%feature("docstring") FormFactorCrystal::topZ "double FormFactorCrystal::topZ(const IRotation &rotation) const override final +%feature("docstring") FormFactorCrystal::topZ "double FormFactorCrystal::topZ(const IRotation &rotation) const overridefinal Returns the z-coordinate of the lowest point in this shape after a given rotation. "; -%feature("docstring") FormFactorCrystal::evaluate "complex_t FormFactorCrystal::evaluate(const WavevectorInfo &wavevectors) const override final +%feature("docstring") FormFactorCrystal::evaluate "complex_t FormFactorCrystal::evaluate(const WavevectorInfo &wavevectors) const overridefinal Returns scattering amplitude for complex wavevectors ki, kf. "; -%feature("docstring") FormFactorCrystal::evaluatePol "Eigen::Matrix2cd FormFactorCrystal::evaluatePol(const WavevectorInfo &wavevectors) const override final +%feature("docstring") FormFactorCrystal::evaluatePol "Eigen::Matrix2cd FormFactorCrystal::evaluatePol(const WavevectorInfo &wavevectors) const overridefinal Returns scattering amplitude for matrix interactions. "; @@ -3277,26 +3274,26 @@ alpha: dihedral angle in radians between base and facet "; -%feature("docstring") FormFactorCuboctahedron::clone "FormFactorCuboctahedron* FormFactorCuboctahedron::clone() const override final +%feature("docstring") FormFactorCuboctahedron::clone "FormFactorCuboctahedron* FormFactorCuboctahedron::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") FormFactorCuboctahedron::accept "void FormFactorCuboctahedron::accept(INodeVisitor *visitor) const override final +%feature("docstring") FormFactorCuboctahedron::accept "void FormFactorCuboctahedron::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") FormFactorCuboctahedron::getLength "double FormFactorCuboctahedron::getLength() const +%feature("docstring") FormFactorCuboctahedron::getLength "double FormFactorCuboctahedron::getLength() const "; -%feature("docstring") FormFactorCuboctahedron::getHeight "double FormFactorCuboctahedron::getHeight() const +%feature("docstring") FormFactorCuboctahedron::getHeight "double FormFactorCuboctahedron::getHeight() const "; -%feature("docstring") FormFactorCuboctahedron::getHeightRatio "double FormFactorCuboctahedron::getHeightRatio() const +%feature("docstring") FormFactorCuboctahedron::getHeightRatio "double FormFactorCuboctahedron::getHeightRatio() const "; -%feature("docstring") FormFactorCuboctahedron::getAlpha "double FormFactorCuboctahedron::getAlpha() const +%feature("docstring") FormFactorCuboctahedron::getAlpha "double FormFactorCuboctahedron::getAlpha() const "; @@ -3322,28 +3319,28 @@ height: height of the cylinder in nanometers "; -%feature("docstring") FormFactorCylinder::clone "FormFactorCylinder* FormFactorCylinder::clone() const override final +%feature("docstring") FormFactorCylinder::clone "FormFactorCylinder* FormFactorCylinder::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") FormFactorCylinder::accept "void FormFactorCylinder::accept(INodeVisitor *visitor) const override final +%feature("docstring") FormFactorCylinder::accept "void FormFactorCylinder::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") FormFactorCylinder::getHeight "double FormFactorCylinder::getHeight() const +%feature("docstring") FormFactorCylinder::getHeight "double FormFactorCylinder::getHeight() const "; -%feature("docstring") FormFactorCylinder::getRadius "double FormFactorCylinder::getRadius() const +%feature("docstring") FormFactorCylinder::getRadius "double FormFactorCylinder::getRadius() const "; -%feature("docstring") FormFactorCylinder::radialExtension "double FormFactorCylinder::radialExtension() const override final +%feature("docstring") FormFactorCylinder::radialExtension "double FormFactorCylinder::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations "; -%feature("docstring") FormFactorCylinder::evaluate_for_q "complex_t FormFactorCylinder::evaluate_for_q(cvector_t q) const override final +%feature("docstring") FormFactorCylinder::evaluate_for_q "complex_t FormFactorCylinder::evaluate_for_q(cvector_t q) const overridefinal Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. "; @@ -3367,22 +3364,22 @@ Anisotropic Debye-Waller factor. Isotropic Debye-Waller factor. "; -%feature("docstring") FormFactorDecoratorDebyeWaller::clone "FormFactorDecoratorDebyeWaller* FormFactorDecoratorDebyeWaller::clone() const override final +%feature("docstring") FormFactorDecoratorDebyeWaller::clone "FormFactorDecoratorDebyeWaller* FormFactorDecoratorDebyeWaller::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") FormFactorDecoratorDebyeWaller::accept "void FormFactorDecoratorDebyeWaller::accept(INodeVisitor *visitor) const override final +%feature("docstring") FormFactorDecoratorDebyeWaller::accept "void FormFactorDecoratorDebyeWaller::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") FormFactorDecoratorDebyeWaller::evaluate "complex_t FormFactorDecoratorDebyeWaller::evaluate(const WavevectorInfo &wavevectors) const override final +%feature("docstring") FormFactorDecoratorDebyeWaller::evaluate "complex_t FormFactorDecoratorDebyeWaller::evaluate(const WavevectorInfo &wavevectors) const overridefinal Returns scattering amplitude for complex wavevectors ki, kf. "; -%feature("docstring") FormFactorDecoratorDebyeWaller::evaluatePol "Eigen::Matrix2cd FormFactorDecoratorDebyeWaller::evaluatePol(const WavevectorInfo &wavevectors) const override final +%feature("docstring") FormFactorDecoratorDebyeWaller::evaluatePol "Eigen::Matrix2cd FormFactorDecoratorDebyeWaller::evaluatePol(const WavevectorInfo &wavevectors) const overridefinal Returns scattering amplitude for matrix interactions. "; @@ -3399,15 +3396,15 @@ C++ includes: FormFactorDecoratorMaterial.h %feature("docstring") FormFactorDecoratorMaterial::FormFactorDecoratorMaterial "FormFactorDecoratorMaterial::FormFactorDecoratorMaterial(const IFormFactor &form_factor) "; -%feature("docstring") FormFactorDecoratorMaterial::~FormFactorDecoratorMaterial "FormFactorDecoratorMaterial::~FormFactorDecoratorMaterial() override final +%feature("docstring") FormFactorDecoratorMaterial::~FormFactorDecoratorMaterial "FormFactorDecoratorMaterial::~FormFactorDecoratorMaterial() overridefinal "; -%feature("docstring") FormFactorDecoratorMaterial::clone "FormFactorDecoratorMaterial * FormFactorDecoratorMaterial::clone() const override final +%feature("docstring") FormFactorDecoratorMaterial::clone "FormFactorDecoratorMaterial * FormFactorDecoratorMaterial::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") FormFactorDecoratorMaterial::accept "void FormFactorDecoratorMaterial::accept(INodeVisitor *visitor) const override final +%feature("docstring") FormFactorDecoratorMaterial::accept "void FormFactorDecoratorMaterial::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; @@ -3427,7 +3424,7 @@ Sets the ambient material. Returns scattering amplitude for complex wavevectors ki, kf. "; -%feature("docstring") FormFactorDecoratorMaterial::evaluatePol "Eigen::Matrix2cd FormFactorDecoratorMaterial::evaluatePol(const WavevectorInfo &wavevectors) const override final +%feature("docstring") FormFactorDecoratorMaterial::evaluatePol "Eigen::Matrix2cd FormFactorDecoratorMaterial::evaluatePol(const WavevectorInfo &wavevectors) const overridefinal Returns scattering amplitude for matrix interactions. "; @@ -3444,32 +3441,32 @@ C++ includes: FormFactorDecoratorPositionFactor.h %feature("docstring") FormFactorDecoratorPositionFactor::FormFactorDecoratorPositionFactor "FormFactorDecoratorPositionFactor::FormFactorDecoratorPositionFactor(const IFormFactor &form_factor, const kvector_t &position) "; -%feature("docstring") FormFactorDecoratorPositionFactor::clone "FormFactorDecoratorPositionFactor* FormFactorDecoratorPositionFactor::clone() const override final +%feature("docstring") FormFactorDecoratorPositionFactor::clone "FormFactorDecoratorPositionFactor* FormFactorDecoratorPositionFactor::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") FormFactorDecoratorPositionFactor::accept "void FormFactorDecoratorPositionFactor::accept(INodeVisitor *visitor) const override final +%feature("docstring") FormFactorDecoratorPositionFactor::accept "void FormFactorDecoratorPositionFactor::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") FormFactorDecoratorPositionFactor::bottomZ "double FormFactorDecoratorPositionFactor::bottomZ(const IRotation &rotation) const override final +%feature("docstring") FormFactorDecoratorPositionFactor::bottomZ "double FormFactorDecoratorPositionFactor::bottomZ(const IRotation &rotation) const overridefinal Returns the z-coordinate of the lowest point in this shape after a given rotation. "; -%feature("docstring") FormFactorDecoratorPositionFactor::topZ "double FormFactorDecoratorPositionFactor::topZ(const IRotation &rotation) const override final +%feature("docstring") FormFactorDecoratorPositionFactor::topZ "double FormFactorDecoratorPositionFactor::topZ(const IRotation &rotation) const overridefinal Returns the z-coordinate of the lowest point in this shape after a given rotation. "; -%feature("docstring") FormFactorDecoratorPositionFactor::evaluate "complex_t FormFactorDecoratorPositionFactor::evaluate(const WavevectorInfo &wavevectors) const override final +%feature("docstring") FormFactorDecoratorPositionFactor::evaluate "complex_t FormFactorDecoratorPositionFactor::evaluate(const WavevectorInfo &wavevectors) const overridefinal Returns scattering amplitude for complex wavevectors ki, kf. "; -%feature("docstring") FormFactorDecoratorPositionFactor::evaluatePol "Eigen::Matrix2cd FormFactorDecoratorPositionFactor::evaluatePol(const WavevectorInfo &wavevectors) const override final +%feature("docstring") FormFactorDecoratorPositionFactor::evaluatePol "Eigen::Matrix2cd FormFactorDecoratorPositionFactor::evaluatePol(const WavevectorInfo &wavevectors) const overridefinal Returns scattering amplitude for matrix interactions. "; @@ -3488,32 +3485,32 @@ C++ includes: FormFactorDecoratorRotation.h Constructor, setting form factor and rotation. "; -%feature("docstring") FormFactorDecoratorRotation::clone "FormFactorDecoratorRotation * FormFactorDecoratorRotation::clone() const override final +%feature("docstring") FormFactorDecoratorRotation::clone "FormFactorDecoratorRotation * FormFactorDecoratorRotation::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") FormFactorDecoratorRotation::accept "void FormFactorDecoratorRotation::accept(INodeVisitor *visitor) const override final +%feature("docstring") FormFactorDecoratorRotation::accept "void FormFactorDecoratorRotation::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") FormFactorDecoratorRotation::bottomZ "double FormFactorDecoratorRotation::bottomZ(const IRotation &rotation) const override final +%feature("docstring") FormFactorDecoratorRotation::bottomZ "double FormFactorDecoratorRotation::bottomZ(const IRotation &rotation) const overridefinal Returns the z-coordinate of the lowest point in this shape after a given rotation. "; -%feature("docstring") FormFactorDecoratorRotation::topZ "double FormFactorDecoratorRotation::topZ(const IRotation &rotation) const override final +%feature("docstring") FormFactorDecoratorRotation::topZ "double FormFactorDecoratorRotation::topZ(const IRotation &rotation) const overridefinal Returns the z-coordinate of the lowest point in this shape after a given rotation. "; -%feature("docstring") FormFactorDecoratorRotation::evaluate "complex_t FormFactorDecoratorRotation::evaluate(const WavevectorInfo &wavevectors) const override final +%feature("docstring") FormFactorDecoratorRotation::evaluate "complex_t FormFactorDecoratorRotation::evaluate(const WavevectorInfo &wavevectors) const overridefinal Returns scattering amplitude for complex wavevectors ki, kf. "; -%feature("docstring") FormFactorDecoratorRotation::evaluatePol "Eigen::Matrix2cd FormFactorDecoratorRotation::evaluatePol(const WavevectorInfo &wavevectors) const override final +%feature("docstring") FormFactorDecoratorRotation::evaluatePol "Eigen::Matrix2cd FormFactorDecoratorRotation::evaluatePol(const WavevectorInfo &wavevectors) const overridefinal Returns scattering amplitude for matrix interactions. "; @@ -3546,17 +3543,17 @@ edge: length of the edge in nanometers "; -%feature("docstring") FormFactorDodecahedron::clone "FormFactorDodecahedron* FormFactorDodecahedron::clone() const override final +%feature("docstring") FormFactorDodecahedron::clone "FormFactorDodecahedron* FormFactorDodecahedron::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") FormFactorDodecahedron::accept "void FormFactorDodecahedron::accept(INodeVisitor *visitor) const override final +%feature("docstring") FormFactorDodecahedron::accept "void FormFactorDodecahedron::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") FormFactorDodecahedron::getEdge "double FormFactorDodecahedron::getEdge() const +%feature("docstring") FormFactorDodecahedron::getEdge "double FormFactorDodecahedron::getEdge() const "; @@ -3571,22 +3568,22 @@ C++ includes: FormFactorDot.h %feature("docstring") FormFactorDot::FormFactorDot "FormFactorDot::FormFactorDot() "; -%feature("docstring") FormFactorDot::clone "FormFactorDot* FormFactorDot::clone() const override final +%feature("docstring") FormFactorDot::clone "FormFactorDot* FormFactorDot::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") FormFactorDot::accept "void FormFactorDot::accept(INodeVisitor *visitor) const override final +%feature("docstring") FormFactorDot::accept "void FormFactorDot::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") FormFactorDot::radialExtension "double FormFactorDot::radialExtension() const override final +%feature("docstring") FormFactorDot::radialExtension "double FormFactorDot::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations "; -%feature("docstring") FormFactorDot::evaluate_for_q "complex_t FormFactorDot::evaluate_for_q(cvector_t) const override final +%feature("docstring") FormFactorDot::evaluate_for_q "complex_t FormFactorDot::evaluate_for_q(cvector_t) const overridefinal Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. "; @@ -3742,31 +3739,31 @@ height: height of the ellipsoidal cylinder in nanometers "; -%feature("docstring") FormFactorEllipsoidalCylinder::clone "FormFactorEllipsoidalCylinder* FormFactorEllipsoidalCylinder::clone() const override final +%feature("docstring") FormFactorEllipsoidalCylinder::clone "FormFactorEllipsoidalCylinder* FormFactorEllipsoidalCylinder::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") FormFactorEllipsoidalCylinder::accept "void FormFactorEllipsoidalCylinder::accept(INodeVisitor *visitor) const override final +%feature("docstring") FormFactorEllipsoidalCylinder::accept "void FormFactorEllipsoidalCylinder::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") FormFactorEllipsoidalCylinder::getRadiusX "double FormFactorEllipsoidalCylinder::getRadiusX() const +%feature("docstring") FormFactorEllipsoidalCylinder::getRadiusX "double FormFactorEllipsoidalCylinder::getRadiusX() const "; -%feature("docstring") FormFactorEllipsoidalCylinder::getRadiusY "double FormFactorEllipsoidalCylinder::getRadiusY() const +%feature("docstring") FormFactorEllipsoidalCylinder::getRadiusY "double FormFactorEllipsoidalCylinder::getRadiusY() const "; -%feature("docstring") FormFactorEllipsoidalCylinder::getHeight "double FormFactorEllipsoidalCylinder::getHeight() const +%feature("docstring") FormFactorEllipsoidalCylinder::getHeight "double FormFactorEllipsoidalCylinder::getHeight() const "; -%feature("docstring") FormFactorEllipsoidalCylinder::radialExtension "double FormFactorEllipsoidalCylinder::radialExtension() const override final +%feature("docstring") FormFactorEllipsoidalCylinder::radialExtension "double FormFactorEllipsoidalCylinder::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations "; -%feature("docstring") FormFactorEllipsoidalCylinder::evaluate_for_q "complex_t FormFactorEllipsoidalCylinder::evaluate_for_q(cvector_t q) const override final +%feature("docstring") FormFactorEllipsoidalCylinder::evaluate_for_q "complex_t FormFactorEllipsoidalCylinder::evaluate_for_q(cvector_t q) const overridefinal Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. "; @@ -3791,35 +3788,35 @@ radius: radius of the sphere in nanometers "; -%feature("docstring") FormFactorFullSphere::clone "FormFactorFullSphere* FormFactorFullSphere::clone() const override final +%feature("docstring") FormFactorFullSphere::clone "FormFactorFullSphere* FormFactorFullSphere::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") FormFactorFullSphere::accept "void FormFactorFullSphere::accept(INodeVisitor *visitor) const override final +%feature("docstring") FormFactorFullSphere::accept "void FormFactorFullSphere::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") FormFactorFullSphere::getRadius "double FormFactorFullSphere::getRadius() const +%feature("docstring") FormFactorFullSphere::getRadius "double FormFactorFullSphere::getRadius() const "; -%feature("docstring") FormFactorFullSphere::radialExtension "double FormFactorFullSphere::radialExtension() const override final +%feature("docstring") FormFactorFullSphere::radialExtension "double FormFactorFullSphere::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations "; -%feature("docstring") FormFactorFullSphere::bottomZ "double FormFactorFullSphere::bottomZ(const IRotation &rotation) const override final +%feature("docstring") FormFactorFullSphere::bottomZ "double FormFactorFullSphere::bottomZ(const IRotation &rotation) const overridefinal Returns the z-coordinate of the lowest point in this shape after a given rotation. "; -%feature("docstring") FormFactorFullSphere::topZ "double FormFactorFullSphere::topZ(const IRotation &rotation) const override final +%feature("docstring") FormFactorFullSphere::topZ "double FormFactorFullSphere::topZ(const IRotation &rotation) const overridefinal Returns the z-coordinate of the lowest point in this shape after a given rotation. "; -%feature("docstring") FormFactorFullSphere::evaluate_for_q "complex_t FormFactorFullSphere::evaluate_for_q(cvector_t q) const override final +%feature("docstring") FormFactorFullSphere::evaluate_for_q "complex_t FormFactorFullSphere::evaluate_for_q(cvector_t q) const overridefinal Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. "; @@ -3847,28 +3844,28 @@ height: height of the full spheroid in nanometers "; -%feature("docstring") FormFactorFullSpheroid::clone "FormFactorFullSpheroid* FormFactorFullSpheroid::clone() const override final +%feature("docstring") FormFactorFullSpheroid::clone "FormFactorFullSpheroid* FormFactorFullSpheroid::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") FormFactorFullSpheroid::accept "void FormFactorFullSpheroid::accept(INodeVisitor *visitor) const override final +%feature("docstring") FormFactorFullSpheroid::accept "void FormFactorFullSpheroid::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") FormFactorFullSpheroid::getHeight "double FormFactorFullSpheroid::getHeight() const +%feature("docstring") FormFactorFullSpheroid::getHeight "double FormFactorFullSpheroid::getHeight() const "; -%feature("docstring") FormFactorFullSpheroid::getRadius "double FormFactorFullSpheroid::getRadius() const +%feature("docstring") FormFactorFullSpheroid::getRadius "double FormFactorFullSpheroid::getRadius() const "; -%feature("docstring") FormFactorFullSpheroid::radialExtension "double FormFactorFullSpheroid::radialExtension() const override final +%feature("docstring") FormFactorFullSpheroid::radialExtension "double FormFactorFullSpheroid::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations "; -%feature("docstring") FormFactorFullSpheroid::evaluate_for_q "complex_t FormFactorFullSpheroid::evaluate_for_q(cvector_t q) const override final +%feature("docstring") FormFactorFullSpheroid::evaluate_for_q "complex_t FormFactorFullSpheroid::evaluate_for_q(cvector_t q) const overridefinal Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. "; @@ -3888,28 +3885,28 @@ C++ includes: FormFactorGauss.h %feature("docstring") FormFactorGauss::FormFactorGauss "FormFactorGauss::FormFactorGauss(double width, double height) "; -%feature("docstring") FormFactorGauss::clone "FormFactorGauss* FormFactorGauss::clone() const override final +%feature("docstring") FormFactorGauss::clone "FormFactorGauss* FormFactorGauss::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") FormFactorGauss::accept "void FormFactorGauss::accept(INodeVisitor *visitor) const override final +%feature("docstring") FormFactorGauss::accept "void FormFactorGauss::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") FormFactorGauss::getWidth "double FormFactorGauss::getWidth() const +%feature("docstring") FormFactorGauss::getWidth "double FormFactorGauss::getWidth() const "; -%feature("docstring") FormFactorGauss::getHeight "double FormFactorGauss::getHeight() const +%feature("docstring") FormFactorGauss::getHeight "double FormFactorGauss::getHeight() const "; -%feature("docstring") FormFactorGauss::radialExtension "double FormFactorGauss::radialExtension() const override final +%feature("docstring") FormFactorGauss::radialExtension "double FormFactorGauss::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations "; -%feature("docstring") FormFactorGauss::evaluate_for_q "complex_t FormFactorGauss::evaluate_for_q(cvector_t q) const override final +%feature("docstring") FormFactorGauss::evaluate_for_q "complex_t FormFactorGauss::evaluate_for_q(cvector_t q) const overridefinal Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. "; @@ -3943,31 +3940,31 @@ height of the hemi ellipsoid in nanometers %feature("docstring") FormFactorHemiEllipsoid::~FormFactorHemiEllipsoid "virtual FormFactorHemiEllipsoid::~FormFactorHemiEllipsoid() "; -%feature("docstring") FormFactorHemiEllipsoid::clone "FormFactorHemiEllipsoid* FormFactorHemiEllipsoid::clone() const override final +%feature("docstring") FormFactorHemiEllipsoid::clone "FormFactorHemiEllipsoid* FormFactorHemiEllipsoid::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") FormFactorHemiEllipsoid::accept "void FormFactorHemiEllipsoid::accept(INodeVisitor *visitor) const override final +%feature("docstring") FormFactorHemiEllipsoid::accept "void FormFactorHemiEllipsoid::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") FormFactorHemiEllipsoid::getHeight "double FormFactorHemiEllipsoid::getHeight() const +%feature("docstring") FormFactorHemiEllipsoid::getHeight "double FormFactorHemiEllipsoid::getHeight() const "; -%feature("docstring") FormFactorHemiEllipsoid::getRadiusX "double FormFactorHemiEllipsoid::getRadiusX() const +%feature("docstring") FormFactorHemiEllipsoid::getRadiusX "double FormFactorHemiEllipsoid::getRadiusX() const "; -%feature("docstring") FormFactorHemiEllipsoid::getRadiusY "double FormFactorHemiEllipsoid::getRadiusY() const +%feature("docstring") FormFactorHemiEllipsoid::getRadiusY "double FormFactorHemiEllipsoid::getRadiusY() const "; -%feature("docstring") FormFactorHemiEllipsoid::radialExtension "double FormFactorHemiEllipsoid::radialExtension() const override final +%feature("docstring") FormFactorHemiEllipsoid::radialExtension "double FormFactorHemiEllipsoid::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations "; -%feature("docstring") FormFactorHemiEllipsoid::evaluate_for_q "complex_t FormFactorHemiEllipsoid::evaluate_for_q(cvector_t q) const override final +%feature("docstring") FormFactorHemiEllipsoid::evaluate_for_q "complex_t FormFactorHemiEllipsoid::evaluate_for_q(cvector_t q) const overridefinal Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. "; @@ -3992,17 +3989,17 @@ edge: length of the edge in nanometers "; -%feature("docstring") FormFactorIcosahedron::clone "FormFactorIcosahedron* FormFactorIcosahedron::clone() const override final +%feature("docstring") FormFactorIcosahedron::clone "FormFactorIcosahedron* FormFactorIcosahedron::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") FormFactorIcosahedron::accept "void FormFactorIcosahedron::accept(INodeVisitor *visitor) const override final +%feature("docstring") FormFactorIcosahedron::accept "void FormFactorIcosahedron::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") FormFactorIcosahedron::getEdge "double FormFactorIcosahedron::getEdge() const +%feature("docstring") FormFactorIcosahedron::getEdge "double FormFactorIcosahedron::getEdge() const "; @@ -4031,31 +4028,31 @@ height: of Box "; -%feature("docstring") FormFactorLongBoxGauss::clone "FormFactorLongBoxGauss* FormFactorLongBoxGauss::clone() const override final +%feature("docstring") FormFactorLongBoxGauss::clone "FormFactorLongBoxGauss* FormFactorLongBoxGauss::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") FormFactorLongBoxGauss::accept "void FormFactorLongBoxGauss::accept(INodeVisitor *visitor) const override final +%feature("docstring") FormFactorLongBoxGauss::accept "void FormFactorLongBoxGauss::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") FormFactorLongBoxGauss::getLength "double FormFactorLongBoxGauss::getLength() const +%feature("docstring") FormFactorLongBoxGauss::getLength "double FormFactorLongBoxGauss::getLength() const "; -%feature("docstring") FormFactorLongBoxGauss::getHeight "double FormFactorLongBoxGauss::getHeight() const +%feature("docstring") FormFactorLongBoxGauss::getHeight "double FormFactorLongBoxGauss::getHeight() const "; -%feature("docstring") FormFactorLongBoxGauss::getWidth "double FormFactorLongBoxGauss::getWidth() const +%feature("docstring") FormFactorLongBoxGauss::getWidth "double FormFactorLongBoxGauss::getWidth() const "; -%feature("docstring") FormFactorLongBoxGauss::radialExtension "double FormFactorLongBoxGauss::radialExtension() const override final +%feature("docstring") FormFactorLongBoxGauss::radialExtension "double FormFactorLongBoxGauss::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations "; -%feature("docstring") FormFactorLongBoxGauss::evaluate_for_q "complex_t FormFactorLongBoxGauss::evaluate_for_q(cvector_t q) const override final +%feature("docstring") FormFactorLongBoxGauss::evaluate_for_q "complex_t FormFactorLongBoxGauss::evaluate_for_q(cvector_t q) const overridefinal Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. "; @@ -4086,31 +4083,31 @@ height: of Box "; -%feature("docstring") FormFactorLongBoxLorentz::clone "FormFactorLongBoxLorentz* FormFactorLongBoxLorentz::clone() const override final +%feature("docstring") FormFactorLongBoxLorentz::clone "FormFactorLongBoxLorentz* FormFactorLongBoxLorentz::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") FormFactorLongBoxLorentz::accept "void FormFactorLongBoxLorentz::accept(INodeVisitor *visitor) const override final +%feature("docstring") FormFactorLongBoxLorentz::accept "void FormFactorLongBoxLorentz::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") FormFactorLongBoxLorentz::getLength "double FormFactorLongBoxLorentz::getLength() const +%feature("docstring") FormFactorLongBoxLorentz::getLength "double FormFactorLongBoxLorentz::getLength() const "; -%feature("docstring") FormFactorLongBoxLorentz::getHeight "double FormFactorLongBoxLorentz::getHeight() const +%feature("docstring") FormFactorLongBoxLorentz::getHeight "double FormFactorLongBoxLorentz::getHeight() const "; -%feature("docstring") FormFactorLongBoxLorentz::getWidth "double FormFactorLongBoxLorentz::getWidth() const +%feature("docstring") FormFactorLongBoxLorentz::getWidth "double FormFactorLongBoxLorentz::getWidth() const "; -%feature("docstring") FormFactorLongBoxLorentz::radialExtension "double FormFactorLongBoxLorentz::radialExtension() const override final +%feature("docstring") FormFactorLongBoxLorentz::radialExtension "double FormFactorLongBoxLorentz::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations "; -%feature("docstring") FormFactorLongBoxLorentz::evaluate_for_q "complex_t FormFactorLongBoxLorentz::evaluate_for_q(cvector_t q) const override final +%feature("docstring") FormFactorLongBoxLorentz::evaluate_for_q "complex_t FormFactorLongBoxLorentz::evaluate_for_q(cvector_t q) const overridefinal Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. "; @@ -4141,31 +4138,31 @@ height: of cosine cross section "; -%feature("docstring") FormFactorLongRipple1Gauss::clone "FormFactorLongRipple1Gauss* FormFactorLongRipple1Gauss::clone() const override final +%feature("docstring") FormFactorLongRipple1Gauss::clone "FormFactorLongRipple1Gauss* FormFactorLongRipple1Gauss::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") FormFactorLongRipple1Gauss::accept "void FormFactorLongRipple1Gauss::accept(INodeVisitor *visitor) const override final +%feature("docstring") FormFactorLongRipple1Gauss::accept "void FormFactorLongRipple1Gauss::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") FormFactorLongRipple1Gauss::getHeight "double FormFactorLongRipple1Gauss::getHeight() const +%feature("docstring") FormFactorLongRipple1Gauss::getHeight "double FormFactorLongRipple1Gauss::getHeight() const "; -%feature("docstring") FormFactorLongRipple1Gauss::getWidth "double FormFactorLongRipple1Gauss::getWidth() const +%feature("docstring") FormFactorLongRipple1Gauss::getWidth "double FormFactorLongRipple1Gauss::getWidth() const "; -%feature("docstring") FormFactorLongRipple1Gauss::getLength "double FormFactorLongRipple1Gauss::getLength() const +%feature("docstring") FormFactorLongRipple1Gauss::getLength "double FormFactorLongRipple1Gauss::getLength() const "; -%feature("docstring") FormFactorLongRipple1Gauss::radialExtension "double FormFactorLongRipple1Gauss::radialExtension() const override final +%feature("docstring") FormFactorLongRipple1Gauss::radialExtension "double FormFactorLongRipple1Gauss::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations "; -%feature("docstring") FormFactorLongRipple1Gauss::evaluate_for_q "complex_t FormFactorLongRipple1Gauss::evaluate_for_q(cvector_t q) const override final +%feature("docstring") FormFactorLongRipple1Gauss::evaluate_for_q "complex_t FormFactorLongRipple1Gauss::evaluate_for_q(cvector_t q) const overridefinal Complex formfactor. "; @@ -4196,31 +4193,31 @@ height: of cosine cross section "; -%feature("docstring") FormFactorLongRipple1Lorentz::clone "FormFactorLongRipple1Lorentz* FormFactorLongRipple1Lorentz::clone() const override final +%feature("docstring") FormFactorLongRipple1Lorentz::clone "FormFactorLongRipple1Lorentz* FormFactorLongRipple1Lorentz::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") FormFactorLongRipple1Lorentz::accept "void FormFactorLongRipple1Lorentz::accept(INodeVisitor *visitor) const override final +%feature("docstring") FormFactorLongRipple1Lorentz::accept "void FormFactorLongRipple1Lorentz::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") FormFactorLongRipple1Lorentz::radialExtension "double FormFactorLongRipple1Lorentz::radialExtension() const override final +%feature("docstring") FormFactorLongRipple1Lorentz::radialExtension "double FormFactorLongRipple1Lorentz::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations "; -%feature("docstring") FormFactorLongRipple1Lorentz::getHeight "double FormFactorLongRipple1Lorentz::getHeight() const +%feature("docstring") FormFactorLongRipple1Lorentz::getHeight "double FormFactorLongRipple1Lorentz::getHeight() const "; -%feature("docstring") FormFactorLongRipple1Lorentz::getWidth "double FormFactorLongRipple1Lorentz::getWidth() const +%feature("docstring") FormFactorLongRipple1Lorentz::getWidth "double FormFactorLongRipple1Lorentz::getWidth() const "; -%feature("docstring") FormFactorLongRipple1Lorentz::getLength "double FormFactorLongRipple1Lorentz::getLength() const +%feature("docstring") FormFactorLongRipple1Lorentz::getLength "double FormFactorLongRipple1Lorentz::getLength() const "; -%feature("docstring") FormFactorLongRipple1Lorentz::evaluate_for_q "complex_t FormFactorLongRipple1Lorentz::evaluate_for_q(cvector_t q) const override final +%feature("docstring") FormFactorLongRipple1Lorentz::evaluate_for_q "complex_t FormFactorLongRipple1Lorentz::evaluate_for_q(cvector_t q) const overridefinal Complex formfactor. "; @@ -4254,34 +4251,34 @@ asymmetry: length of triangular cross section "; -%feature("docstring") FormFactorLongRipple2Gauss::clone "FormFactorLongRipple2Gauss* FormFactorLongRipple2Gauss::clone() const override final +%feature("docstring") FormFactorLongRipple2Gauss::clone "FormFactorLongRipple2Gauss* FormFactorLongRipple2Gauss::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") FormFactorLongRipple2Gauss::accept "void FormFactorLongRipple2Gauss::accept(INodeVisitor *visitor) const override final +%feature("docstring") FormFactorLongRipple2Gauss::accept "void FormFactorLongRipple2Gauss::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") FormFactorLongRipple2Gauss::getHeight "double FormFactorLongRipple2Gauss::getHeight() const +%feature("docstring") FormFactorLongRipple2Gauss::getHeight "double FormFactorLongRipple2Gauss::getHeight() const "; -%feature("docstring") FormFactorLongRipple2Gauss::getWidth "double FormFactorLongRipple2Gauss::getWidth() const +%feature("docstring") FormFactorLongRipple2Gauss::getWidth "double FormFactorLongRipple2Gauss::getWidth() const "; -%feature("docstring") FormFactorLongRipple2Gauss::getLength "double FormFactorLongRipple2Gauss::getLength() const +%feature("docstring") FormFactorLongRipple2Gauss::getLength "double FormFactorLongRipple2Gauss::getLength() const "; -%feature("docstring") FormFactorLongRipple2Gauss::getAsymmetry "double FormFactorLongRipple2Gauss::getAsymmetry() const +%feature("docstring") FormFactorLongRipple2Gauss::getAsymmetry "double FormFactorLongRipple2Gauss::getAsymmetry() const "; -%feature("docstring") FormFactorLongRipple2Gauss::radialExtension "double FormFactorLongRipple2Gauss::radialExtension() const override final +%feature("docstring") FormFactorLongRipple2Gauss::radialExtension "double FormFactorLongRipple2Gauss::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations "; -%feature("docstring") FormFactorLongRipple2Gauss::evaluate_for_q "complex_t FormFactorLongRipple2Gauss::evaluate_for_q(cvector_t q) const override final +%feature("docstring") FormFactorLongRipple2Gauss::evaluate_for_q "complex_t FormFactorLongRipple2Gauss::evaluate_for_q(cvector_t q) const overridefinal Complex formfactor. "; @@ -4313,34 +4310,34 @@ asymmetry: length of triangular cross section "; -%feature("docstring") FormFactorLongRipple2Lorentz::clone "FormFactorLongRipple2Lorentz* FormFactorLongRipple2Lorentz::clone() const override final +%feature("docstring") FormFactorLongRipple2Lorentz::clone "FormFactorLongRipple2Lorentz* FormFactorLongRipple2Lorentz::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") FormFactorLongRipple2Lorentz::accept "void FormFactorLongRipple2Lorentz::accept(INodeVisitor *visitor) const override final +%feature("docstring") FormFactorLongRipple2Lorentz::accept "void FormFactorLongRipple2Lorentz::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") FormFactorLongRipple2Lorentz::getHeight "double FormFactorLongRipple2Lorentz::getHeight() const +%feature("docstring") FormFactorLongRipple2Lorentz::getHeight "double FormFactorLongRipple2Lorentz::getHeight() const "; -%feature("docstring") FormFactorLongRipple2Lorentz::getWidth "double FormFactorLongRipple2Lorentz::getWidth() const +%feature("docstring") FormFactorLongRipple2Lorentz::getWidth "double FormFactorLongRipple2Lorentz::getWidth() const "; -%feature("docstring") FormFactorLongRipple2Lorentz::getLength "double FormFactorLongRipple2Lorentz::getLength() const +%feature("docstring") FormFactorLongRipple2Lorentz::getLength "double FormFactorLongRipple2Lorentz::getLength() const "; -%feature("docstring") FormFactorLongRipple2Lorentz::getAsymmetry "double FormFactorLongRipple2Lorentz::getAsymmetry() const +%feature("docstring") FormFactorLongRipple2Lorentz::getAsymmetry "double FormFactorLongRipple2Lorentz::getAsymmetry() const "; -%feature("docstring") FormFactorLongRipple2Lorentz::radialExtension "double FormFactorLongRipple2Lorentz::radialExtension() const override final +%feature("docstring") FormFactorLongRipple2Lorentz::radialExtension "double FormFactorLongRipple2Lorentz::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations "; -%feature("docstring") FormFactorLongRipple2Lorentz::evaluate_for_q "complex_t FormFactorLongRipple2Lorentz::evaluate_for_q(cvector_t q) const override final +%feature("docstring") FormFactorLongRipple2Lorentz::evaluate_for_q "complex_t FormFactorLongRipple2Lorentz::evaluate_for_q(cvector_t q) const overridefinal Complex formfactor. "; @@ -4360,28 +4357,28 @@ C++ includes: FormFactorLorentz.h %feature("docstring") FormFactorLorentz::FormFactorLorentz "FormFactorLorentz::FormFactorLorentz(double width, double height) "; -%feature("docstring") FormFactorLorentz::clone "FormFactorLorentz* FormFactorLorentz::clone() const override final +%feature("docstring") FormFactorLorentz::clone "FormFactorLorentz* FormFactorLorentz::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") FormFactorLorentz::accept "void FormFactorLorentz::accept(INodeVisitor *visitor) const override final +%feature("docstring") FormFactorLorentz::accept "void FormFactorLorentz::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") FormFactorLorentz::getWidth "double FormFactorLorentz::getWidth() const +%feature("docstring") FormFactorLorentz::getWidth "double FormFactorLorentz::getWidth() const "; -%feature("docstring") FormFactorLorentz::getHeight "double FormFactorLorentz::getHeight() const +%feature("docstring") FormFactorLorentz::getHeight "double FormFactorLorentz::getHeight() const "; -%feature("docstring") FormFactorLorentz::radialExtension "double FormFactorLorentz::radialExtension() const override final +%feature("docstring") FormFactorLorentz::radialExtension "double FormFactorLorentz::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations "; -%feature("docstring") FormFactorLorentz::evaluate_for_q "complex_t FormFactorLorentz::evaluate_for_q(cvector_t q) const override final +%feature("docstring") FormFactorLorentz::evaluate_for_q "complex_t FormFactorLorentz::evaluate_for_q(cvector_t q) const overridefinal Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. "; @@ -4398,20 +4395,20 @@ C++ includes: FormFactorPolyhedron.h %feature("docstring") FormFactorPolygonalPrism::FormFactorPolygonalPrism "FormFactorPolygonalPrism::FormFactorPolygonalPrism(double height) "; -%feature("docstring") FormFactorPolygonalPrism::evaluate_for_q "complex_t FormFactorPolygonalPrism::evaluate_for_q(cvector_t q) const override final +%feature("docstring") FormFactorPolygonalPrism::evaluate_for_q "complex_t FormFactorPolygonalPrism::evaluate_for_q(cvector_t q) const overridefinal Returns the form factor F(q) of this polyhedron, respecting the offset height/2. "; -%feature("docstring") FormFactorPolygonalPrism::volume "double FormFactorPolygonalPrism::volume() const override final +%feature("docstring") FormFactorPolygonalPrism::volume "double FormFactorPolygonalPrism::volume() const overridefinal Returns the volume of this prism. "; -%feature("docstring") FormFactorPolygonalPrism::getHeight "double FormFactorPolygonalPrism::getHeight() const +%feature("docstring") FormFactorPolygonalPrism::getHeight "double FormFactorPolygonalPrism::getHeight() const "; -%feature("docstring") FormFactorPolygonalPrism::radialExtension "double FormFactorPolygonalPrism::radialExtension() const override final +%feature("docstring") FormFactorPolygonalPrism::radialExtension "double FormFactorPolygonalPrism::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations "; @@ -4428,7 +4425,7 @@ C++ includes: FormFactorPolyhedron.h %feature("docstring") FormFactorPolygonalSurface::FormFactorPolygonalSurface "FormFactorPolygonalSurface::FormFactorPolygonalSurface() "; -%feature("docstring") FormFactorPolygonalSurface::evaluate_for_q "complex_t FormFactorPolygonalSurface::evaluate_for_q(cvector_t q) const override final +%feature("docstring") FormFactorPolygonalSurface::evaluate_for_q "complex_t FormFactorPolygonalSurface::evaluate_for_q(cvector_t q) const overridefinal Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. "; @@ -4438,7 +4435,7 @@ Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This m Returns the total volume of the particle of this form factor's shape. "; -%feature("docstring") FormFactorPolygonalSurface::radialExtension "double FormFactorPolygonalSurface::radialExtension() const override final +%feature("docstring") FormFactorPolygonalSurface::radialExtension "double FormFactorPolygonalSurface::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations "; @@ -4455,7 +4452,7 @@ C++ includes: FormFactorPolyhedron.h %feature("docstring") FormFactorPolyhedron::FormFactorPolyhedron "FormFactorPolyhedron::FormFactorPolyhedron() "; -%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 overridefinal Returns the form factor F(q) of this polyhedron, respecting the offset z_origin. "; @@ -4465,12 +4462,12 @@ Returns the form factor F(q) of this polyhedron, respecting the offset z_origin. Returns the form factor F(q) of this polyhedron, with origin at z=0. "; -%feature("docstring") FormFactorPolyhedron::volume "double FormFactorPolyhedron::volume() const override final +%feature("docstring") FormFactorPolyhedron::volume "double FormFactorPolyhedron::volume() const overridefinal Returns the total volume of the particle of this form factor's shape. "; -%feature("docstring") FormFactorPolyhedron::radialExtension "double FormFactorPolyhedron::radialExtension() const override final +%feature("docstring") FormFactorPolyhedron::radialExtension "double FormFactorPolyhedron::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations "; @@ -4503,17 +4500,17 @@ height: height in nanometers "; -%feature("docstring") FormFactorPrism3::clone "FormFactorPrism3* FormFactorPrism3::clone() const override final +%feature("docstring") FormFactorPrism3::clone "FormFactorPrism3* FormFactorPrism3::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") FormFactorPrism3::accept "void FormFactorPrism3::accept(INodeVisitor *visitor) const override final +%feature("docstring") FormFactorPrism3::accept "void FormFactorPrism3::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") FormFactorPrism3::getBaseEdge "double FormFactorPrism3::getBaseEdge() const +%feature("docstring") FormFactorPrism3::getBaseEdge "double FormFactorPrism3::getBaseEdge() const "; @@ -4539,17 +4536,17 @@ height: height in nanometers "; -%feature("docstring") FormFactorPrism6::clone "FormFactorPrism6* FormFactorPrism6::clone() const override final +%feature("docstring") FormFactorPrism6::clone "FormFactorPrism6* FormFactorPrism6::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") FormFactorPrism6::accept "void FormFactorPrism6::accept(INodeVisitor *visitor) const override final +%feature("docstring") FormFactorPrism6::accept "void FormFactorPrism6::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") FormFactorPrism6::getBaseEdge "double FormFactorPrism6::getBaseEdge() const +%feature("docstring") FormFactorPrism6::getBaseEdge "double FormFactorPrism6::getBaseEdge() const "; @@ -4578,23 +4575,23 @@ alpha: dihedral angle between the base and a side face in radians "; -%feature("docstring") FormFactorPyramid::clone "FormFactorPyramid* FormFactorPyramid::clone() const override final +%feature("docstring") FormFactorPyramid::clone "FormFactorPyramid* FormFactorPyramid::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") FormFactorPyramid::accept "void FormFactorPyramid::accept(INodeVisitor *visitor) const override final +%feature("docstring") FormFactorPyramid::accept "void FormFactorPyramid::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") FormFactorPyramid::getHeight "double FormFactorPyramid::getHeight() const +%feature("docstring") FormFactorPyramid::getHeight "double FormFactorPyramid::getHeight() const "; -%feature("docstring") FormFactorPyramid::getBaseEdge "double FormFactorPyramid::getBaseEdge() const +%feature("docstring") FormFactorPyramid::getBaseEdge "double FormFactorPyramid::getBaseEdge() const "; -%feature("docstring") FormFactorPyramid::getAlpha "double FormFactorPyramid::getAlpha() const +%feature("docstring") FormFactorPyramid::getAlpha "double FormFactorPyramid::getAlpha() const "; @@ -4623,31 +4620,31 @@ height: height of the ripple in nanometers "; -%feature("docstring") FormFactorRipple1::clone "FormFactorRipple1* FormFactorRipple1::clone() const override final +%feature("docstring") FormFactorRipple1::clone "FormFactorRipple1* FormFactorRipple1::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") FormFactorRipple1::accept "void FormFactorRipple1::accept(INodeVisitor *visitor) const override final +%feature("docstring") FormFactorRipple1::accept "void FormFactorRipple1::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") FormFactorRipple1::getLength "double FormFactorRipple1::getLength() const +%feature("docstring") FormFactorRipple1::getLength "double FormFactorRipple1::getLength() const "; -%feature("docstring") FormFactorRipple1::getHeight "double FormFactorRipple1::getHeight() const +%feature("docstring") FormFactorRipple1::getHeight "double FormFactorRipple1::getHeight() const "; -%feature("docstring") FormFactorRipple1::getWidth "double FormFactorRipple1::getWidth() const +%feature("docstring") FormFactorRipple1::getWidth "double FormFactorRipple1::getWidth() const "; -%feature("docstring") FormFactorRipple1::radialExtension "double FormFactorRipple1::radialExtension() const override final +%feature("docstring") FormFactorRipple1::radialExtension "double FormFactorRipple1::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations "; -%feature("docstring") FormFactorRipple1::evaluate_for_q "complex_t FormFactorRipple1::evaluate_for_q(cvector_t q) const override final +%feature("docstring") FormFactorRipple1::evaluate_for_q "complex_t FormFactorRipple1::evaluate_for_q(cvector_t q) const overridefinal Complex formfactor. "; @@ -4681,34 +4678,34 @@ asymmetry: asymmetry length of the triangular profile in nanometers "; -%feature("docstring") FormFactorRipple2::clone "FormFactorRipple2* FormFactorRipple2::clone() const override final +%feature("docstring") FormFactorRipple2::clone "FormFactorRipple2* FormFactorRipple2::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") FormFactorRipple2::accept "void FormFactorRipple2::accept(INodeVisitor *visitor) const override final +%feature("docstring") FormFactorRipple2::accept "void FormFactorRipple2::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") FormFactorRipple2::getHeight "double FormFactorRipple2::getHeight() const +%feature("docstring") FormFactorRipple2::getHeight "double FormFactorRipple2::getHeight() const "; -%feature("docstring") FormFactorRipple2::getWidth "double FormFactorRipple2::getWidth() const +%feature("docstring") FormFactorRipple2::getWidth "double FormFactorRipple2::getWidth() const "; -%feature("docstring") FormFactorRipple2::getLength "double FormFactorRipple2::getLength() const +%feature("docstring") FormFactorRipple2::getLength "double FormFactorRipple2::getLength() const "; -%feature("docstring") FormFactorRipple2::getAsymmetry "double FormFactorRipple2::getAsymmetry() const +%feature("docstring") FormFactorRipple2::getAsymmetry "double FormFactorRipple2::getAsymmetry() const "; -%feature("docstring") FormFactorRipple2::radialExtension "double FormFactorRipple2::radialExtension() const override final +%feature("docstring") FormFactorRipple2::radialExtension "double FormFactorRipple2::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations "; -%feature("docstring") FormFactorRipple2::evaluate_for_q "complex_t FormFactorRipple2::evaluate_for_q(cvector_t q) const override final +%feature("docstring") FormFactorRipple2::evaluate_for_q "complex_t FormFactorRipple2::evaluate_for_q(cvector_t q) const overridefinal Complex formfactor. "; @@ -4725,22 +4722,22 @@ C++ includes: FormFactorSphereGaussianRadius.h %feature("docstring") FormFactorSphereGaussianRadius::FormFactorSphereGaussianRadius "FormFactorSphereGaussianRadius::FormFactorSphereGaussianRadius(double mean, double sigma) "; -%feature("docstring") FormFactorSphereGaussianRadius::clone "FormFactorSphereGaussianRadius* FormFactorSphereGaussianRadius::clone() const override final +%feature("docstring") FormFactorSphereGaussianRadius::clone "FormFactorSphereGaussianRadius* FormFactorSphereGaussianRadius::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") FormFactorSphereGaussianRadius::accept "void FormFactorSphereGaussianRadius::accept(INodeVisitor *visitor) const override final +%feature("docstring") FormFactorSphereGaussianRadius::accept "void FormFactorSphereGaussianRadius::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") FormFactorSphereGaussianRadius::radialExtension "double FormFactorSphereGaussianRadius::radialExtension() const override final +%feature("docstring") FormFactorSphereGaussianRadius::radialExtension "double FormFactorSphereGaussianRadius::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations "; -%feature("docstring") FormFactorSphereGaussianRadius::evaluate_for_q "complex_t FormFactorSphereGaussianRadius::evaluate_for_q(cvector_t q) const override final +%feature("docstring") FormFactorSphereGaussianRadius::evaluate_for_q "complex_t FormFactorSphereGaussianRadius::evaluate_for_q(cvector_t q) const overridefinal Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. "; @@ -4757,22 +4754,22 @@ C++ includes: FormFactorSphereLogNormalRadius.h %feature("docstring") FormFactorSphereLogNormalRadius::FormFactorSphereLogNormalRadius "FormFactorSphereLogNormalRadius::FormFactorSphereLogNormalRadius(double mean, double scale_param, size_t n_samples) "; -%feature("docstring") FormFactorSphereLogNormalRadius::clone "FormFactorSphereLogNormalRadius* FormFactorSphereLogNormalRadius::clone() const override final +%feature("docstring") FormFactorSphereLogNormalRadius::clone "FormFactorSphereLogNormalRadius* FormFactorSphereLogNormalRadius::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") FormFactorSphereLogNormalRadius::accept "void FormFactorSphereLogNormalRadius::accept(INodeVisitor *visitor) const override final +%feature("docstring") FormFactorSphereLogNormalRadius::accept "void FormFactorSphereLogNormalRadius::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") FormFactorSphereLogNormalRadius::radialExtension "double FormFactorSphereLogNormalRadius::radialExtension() const override final +%feature("docstring") FormFactorSphereLogNormalRadius::radialExtension "double FormFactorSphereLogNormalRadius::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations "; -%feature("docstring") FormFactorSphereLogNormalRadius::evaluate_for_q "complex_t FormFactorSphereLogNormalRadius::evaluate_for_q(cvector_t q) const override final +%feature("docstring") FormFactorSphereLogNormalRadius::evaluate_for_q "complex_t FormFactorSphereLogNormalRadius::evaluate_for_q(cvector_t q) const overridefinal Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. "; @@ -4789,22 +4786,22 @@ C++ includes: FormFactorSphereUniformRadius.h %feature("docstring") FormFactorSphereUniformRadius::FormFactorSphereUniformRadius "FormFactorSphereUniformRadius::FormFactorSphereUniformRadius(double mean, double full_width) "; -%feature("docstring") FormFactorSphereUniformRadius::clone "FormFactorSphereUniformRadius* FormFactorSphereUniformRadius::clone() const override final +%feature("docstring") FormFactorSphereUniformRadius::clone "FormFactorSphereUniformRadius* FormFactorSphereUniformRadius::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") FormFactorSphereUniformRadius::accept "void FormFactorSphereUniformRadius::accept(INodeVisitor *visitor) const override final +%feature("docstring") FormFactorSphereUniformRadius::accept "void FormFactorSphereUniformRadius::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") FormFactorSphereUniformRadius::radialExtension "double FormFactorSphereUniformRadius::radialExtension() const override final +%feature("docstring") FormFactorSphereUniformRadius::radialExtension "double FormFactorSphereUniformRadius::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations "; -%feature("docstring") FormFactorSphereUniformRadius::evaluate_for_q "complex_t FormFactorSphereUniformRadius::evaluate_for_q(cvector_t q) const override final +%feature("docstring") FormFactorSphereUniformRadius::evaluate_for_q "complex_t FormFactorSphereUniformRadius::evaluate_for_q(cvector_t q) const overridefinal Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. "; @@ -4835,23 +4832,23 @@ alpha: dihedral angle in radians between base and facet "; -%feature("docstring") FormFactorTetrahedron::clone "FormFactorTetrahedron* FormFactorTetrahedron::clone() const override final +%feature("docstring") FormFactorTetrahedron::clone "FormFactorTetrahedron* FormFactorTetrahedron::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") FormFactorTetrahedron::accept "void FormFactorTetrahedron::accept(INodeVisitor *visitor) const override final +%feature("docstring") FormFactorTetrahedron::accept "void FormFactorTetrahedron::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") FormFactorTetrahedron::getBaseEdge "double FormFactorTetrahedron::getBaseEdge() const +%feature("docstring") FormFactorTetrahedron::getBaseEdge "double FormFactorTetrahedron::getBaseEdge() const "; -%feature("docstring") FormFactorTetrahedron::getHeight "double FormFactorTetrahedron::getHeight() const +%feature("docstring") FormFactorTetrahedron::getHeight "double FormFactorTetrahedron::getHeight() const "; -%feature("docstring") FormFactorTetrahedron::getAlpha "double FormFactorTetrahedron::getAlpha() const +%feature("docstring") FormFactorTetrahedron::getAlpha "double FormFactorTetrahedron::getAlpha() const "; @@ -4866,17 +4863,17 @@ C++ includes: FormFactorTriangle.h %feature("docstring") FormFactorTriangle::FormFactorTriangle "FormFactorTriangle::FormFactorTriangle(const double base_edge) "; -%feature("docstring") FormFactorTriangle::clone "FormFactorTriangle* FormFactorTriangle::clone() const override final +%feature("docstring") FormFactorTriangle::clone "FormFactorTriangle* FormFactorTriangle::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") FormFactorTriangle::accept "void FormFactorTriangle::accept(INodeVisitor *visitor) const override final +%feature("docstring") FormFactorTriangle::accept "void FormFactorTriangle::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") FormFactorTriangle::getBaseEdge "double FormFactorTriangle::getBaseEdge() const +%feature("docstring") FormFactorTriangle::getBaseEdge "double FormFactorTriangle::getBaseEdge() const "; @@ -4902,20 +4899,20 @@ removed_length: removed length from each edge of the cube in nanometers "; -%feature("docstring") FormFactorTruncatedCube::clone "FormFactorTruncatedCube* FormFactorTruncatedCube::clone() const override final +%feature("docstring") FormFactorTruncatedCube::clone "FormFactorTruncatedCube* FormFactorTruncatedCube::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") FormFactorTruncatedCube::accept "void FormFactorTruncatedCube::accept(INodeVisitor *visitor) const override final +%feature("docstring") FormFactorTruncatedCube::accept "void FormFactorTruncatedCube::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") FormFactorTruncatedCube::getLength "double FormFactorTruncatedCube::getLength() const +%feature("docstring") FormFactorTruncatedCube::getLength "double FormFactorTruncatedCube::getLength() const "; -%feature("docstring") FormFactorTruncatedCube::getRemovedLength "double FormFactorTruncatedCube::getRemovedLength() const +%feature("docstring") FormFactorTruncatedCube::getRemovedLength "double FormFactorTruncatedCube::getRemovedLength() const "; @@ -4944,31 +4941,31 @@ dh: length of cup truncated from the top "; -%feature("docstring") FormFactorTruncatedSphere::clone "FormFactorTruncatedSphere* FormFactorTruncatedSphere::clone() const override final +%feature("docstring") FormFactorTruncatedSphere::clone "FormFactorTruncatedSphere* FormFactorTruncatedSphere::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") FormFactorTruncatedSphere::accept "void FormFactorTruncatedSphere::accept(INodeVisitor *visitor) const override final +%feature("docstring") FormFactorTruncatedSphere::accept "void FormFactorTruncatedSphere::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") FormFactorTruncatedSphere::getHeight "double FormFactorTruncatedSphere::getHeight() const +%feature("docstring") FormFactorTruncatedSphere::getHeight "double FormFactorTruncatedSphere::getHeight() const "; -%feature("docstring") FormFactorTruncatedSphere::getRadius "double FormFactorTruncatedSphere::getRadius() const +%feature("docstring") FormFactorTruncatedSphere::getRadius "double FormFactorTruncatedSphere::getRadius() const "; -%feature("docstring") FormFactorTruncatedSphere::getRemovedTop "double FormFactorTruncatedSphere::getRemovedTop() const +%feature("docstring") FormFactorTruncatedSphere::getRemovedTop "double FormFactorTruncatedSphere::getRemovedTop() const "; -%feature("docstring") FormFactorTruncatedSphere::radialExtension "double FormFactorTruncatedSphere::radialExtension() const override final +%feature("docstring") FormFactorTruncatedSphere::radialExtension "double FormFactorTruncatedSphere::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations "; -%feature("docstring") FormFactorTruncatedSphere::evaluate_for_q "complex_t FormFactorTruncatedSphere::evaluate_for_q(cvector_t q) const override final +%feature("docstring") FormFactorTruncatedSphere::evaluate_for_q "complex_t FormFactorTruncatedSphere::evaluate_for_q(cvector_t q) const overridefinal Complex formfactor. "; @@ -5002,34 +4999,34 @@ dh: length of cup truncated from the top "; -%feature("docstring") FormFactorTruncatedSpheroid::clone "FormFactorTruncatedSpheroid* FormFactorTruncatedSpheroid::clone() const override final +%feature("docstring") FormFactorTruncatedSpheroid::clone "FormFactorTruncatedSpheroid* FormFactorTruncatedSpheroid::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") FormFactorTruncatedSpheroid::accept "void FormFactorTruncatedSpheroid::accept(INodeVisitor *visitor) const override final +%feature("docstring") FormFactorTruncatedSpheroid::accept "void FormFactorTruncatedSpheroid::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") FormFactorTruncatedSpheroid::getRadius "double FormFactorTruncatedSpheroid::getRadius() const +%feature("docstring") FormFactorTruncatedSpheroid::getRadius "double FormFactorTruncatedSpheroid::getRadius() const "; -%feature("docstring") FormFactorTruncatedSpheroid::getHeight "double FormFactorTruncatedSpheroid::getHeight() const +%feature("docstring") FormFactorTruncatedSpheroid::getHeight "double FormFactorTruncatedSpheroid::getHeight() const "; -%feature("docstring") FormFactorTruncatedSpheroid::getHeightFlattening "double FormFactorTruncatedSpheroid::getHeightFlattening() const +%feature("docstring") FormFactorTruncatedSpheroid::getHeightFlattening "double FormFactorTruncatedSpheroid::getHeightFlattening() const "; -%feature("docstring") FormFactorTruncatedSpheroid::getRemovedTop "double FormFactorTruncatedSpheroid::getRemovedTop() const +%feature("docstring") FormFactorTruncatedSpheroid::getRemovedTop "double FormFactorTruncatedSpheroid::getRemovedTop() const "; -%feature("docstring") FormFactorTruncatedSpheroid::radialExtension "double FormFactorTruncatedSpheroid::radialExtension() const override final +%feature("docstring") FormFactorTruncatedSpheroid::radialExtension "double FormFactorTruncatedSpheroid::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations "; -%feature("docstring") FormFactorTruncatedSpheroid::evaluate_for_q "complex_t FormFactorTruncatedSpheroid::evaluate_for_q(cvector_t q) const override final +%feature("docstring") FormFactorTruncatedSpheroid::evaluate_for_q "complex_t FormFactorTruncatedSpheroid::evaluate_for_q(cvector_t q) const overridefinal Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. "; @@ -5048,30 +5045,30 @@ C++ includes: FormFactorWeighted.h %feature("docstring") FormFactorWeighted::FormFactorWeighted "FormFactorWeighted::FormFactorWeighted() "; -%feature("docstring") FormFactorWeighted::~FormFactorWeighted "FormFactorWeighted::~FormFactorWeighted() override final +%feature("docstring") FormFactorWeighted::~FormFactorWeighted "FormFactorWeighted::~FormFactorWeighted() overridefinal "; -%feature("docstring") FormFactorWeighted::clone "FormFactorWeighted * FormFactorWeighted::clone() const override final +%feature("docstring") FormFactorWeighted::clone "FormFactorWeighted * FormFactorWeighted::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") FormFactorWeighted::accept "void FormFactorWeighted::accept(INodeVisitor *visitor) const override final +%feature("docstring") FormFactorWeighted::accept "void FormFactorWeighted::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") FormFactorWeighted::radialExtension "double FormFactorWeighted::radialExtension() const override final +%feature("docstring") FormFactorWeighted::radialExtension "double FormFactorWeighted::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations "; -%feature("docstring") FormFactorWeighted::bottomZ "double FormFactorWeighted::bottomZ(const IRotation &rotation) const override final +%feature("docstring") FormFactorWeighted::bottomZ "double FormFactorWeighted::bottomZ(const IRotation &rotation) const overridefinal Returns the z-coordinate of the lowest point in this shape after a given rotation. "; -%feature("docstring") FormFactorWeighted::topZ "double FormFactorWeighted::topZ(const IRotation &rotation) const override final +%feature("docstring") FormFactorWeighted::topZ "double FormFactorWeighted::topZ(const IRotation &rotation) const overridefinal Returns the z-coordinate of the lowest point in this shape after a given rotation. "; @@ -5079,17 +5076,17 @@ Returns the z-coordinate of the lowest point in this shape after a given rotatio %feature("docstring") FormFactorWeighted::addFormFactor "void FormFactorWeighted::addFormFactor(const IFormFactor &form_factor, double weight=1.0) "; -%feature("docstring") FormFactorWeighted::setAmbientMaterial "void FormFactorWeighted::setAmbientMaterial(Material material) override final +%feature("docstring") FormFactorWeighted::setAmbientMaterial "void FormFactorWeighted::setAmbientMaterial(Material material) overridefinal Passes the material in which this particle is embedded. "; -%feature("docstring") FormFactorWeighted::evaluate "complex_t FormFactorWeighted::evaluate(const WavevectorInfo &wavevectors) const override final +%feature("docstring") FormFactorWeighted::evaluate "complex_t FormFactorWeighted::evaluate(const WavevectorInfo &wavevectors) const overridefinal Returns scattering amplitude for complex wavevectors ki, kf. "; -%feature("docstring") FormFactorWeighted::evaluatePol "Eigen::Matrix2cd FormFactorWeighted::evaluatePol(const WavevectorInfo &wavevectors) const override final +%feature("docstring") FormFactorWeighted::evaluatePol "Eigen::Matrix2cd FormFactorWeighted::evaluatePol(const WavevectorInfo &wavevectors) const overridefinal Calculates and returns a polarized form factor calculation in DWBA. "; @@ -5106,7 +5103,7 @@ C++ includes: FTDecayFunctions.h %feature("docstring") FTDecayFunction1DCauchy::FTDecayFunction1DCauchy "FTDecayFunction1DCauchy::FTDecayFunction1DCauchy(double decay_length) "; -%feature("docstring") FTDecayFunction1DCauchy::clone "FTDecayFunction1DCauchy * FTDecayFunction1DCauchy::clone() const +%feature("docstring") FTDecayFunction1DCauchy::clone "FTDecayFunction1DCauchy * FTDecayFunction1DCauchy::clone() const "; %feature("docstring") FTDecayFunction1DCauchy::accept "void FTDecayFunction1DCauchy::accept(INodeVisitor *visitor) const final @@ -5129,7 +5126,7 @@ C++ includes: FTDecayFunctions.h %feature("docstring") FTDecayFunction1DGauss::FTDecayFunction1DGauss "FTDecayFunction1DGauss::FTDecayFunction1DGauss(double decay_length) "; -%feature("docstring") FTDecayFunction1DGauss::clone "FTDecayFunction1DGauss * FTDecayFunction1DGauss::clone() const +%feature("docstring") FTDecayFunction1DGauss::clone "FTDecayFunction1DGauss * FTDecayFunction1DGauss::clone() const "; %feature("docstring") FTDecayFunction1DGauss::accept "void FTDecayFunction1DGauss::accept(INodeVisitor *visitor) const final @@ -5152,7 +5149,7 @@ C++ includes: FTDecayFunctions.h %feature("docstring") FTDecayFunction1DTriangle::FTDecayFunction1DTriangle "FTDecayFunction1DTriangle::FTDecayFunction1DTriangle(double decay_length) "; -%feature("docstring") FTDecayFunction1DTriangle::clone "FTDecayFunction1DTriangle * FTDecayFunction1DTriangle::clone() const +%feature("docstring") FTDecayFunction1DTriangle::clone "FTDecayFunction1DTriangle * FTDecayFunction1DTriangle::clone() const "; %feature("docstring") FTDecayFunction1DTriangle::accept "void FTDecayFunction1DTriangle::accept(INodeVisitor *visitor) const final @@ -5186,7 +5183,7 @@ eta: parameter [0,1] to balance between Cauchy (eta=0.0) and Gauss (eta=1.0) "; -%feature("docstring") FTDecayFunction1DVoigt::clone "FTDecayFunction1DVoigt * FTDecayFunction1DVoigt::clone() const +%feature("docstring") FTDecayFunction1DVoigt::clone "FTDecayFunction1DVoigt * FTDecayFunction1DVoigt::clone() const "; %feature("docstring") FTDecayFunction1DVoigt::accept "void FTDecayFunction1DVoigt::accept(INodeVisitor *visitor) const final @@ -5197,7 +5194,7 @@ Calls the INodeVisitor's visit method. %feature("docstring") FTDecayFunction1DVoigt::evaluate "double FTDecayFunction1DVoigt::evaluate(double q) const final "; -%feature("docstring") FTDecayFunction1DVoigt::eEta "double FTDecayFunction1DVoigt::eEta() const +%feature("docstring") FTDecayFunction1DVoigt::eEta "double FTDecayFunction1DVoigt::eEta() const "; @@ -5212,7 +5209,7 @@ C++ includes: FTDecayFunctions.h %feature("docstring") FTDecayFunction2DCauchy::FTDecayFunction2DCauchy "FTDecayFunction2DCauchy::FTDecayFunction2DCauchy(double decay_length_x, double decay_length_y, double gamma=0) "; -%feature("docstring") FTDecayFunction2DCauchy::clone "FTDecayFunction2DCauchy * FTDecayFunction2DCauchy::clone() const +%feature("docstring") FTDecayFunction2DCauchy::clone "FTDecayFunction2DCauchy * FTDecayFunction2DCauchy::clone() const "; %feature("docstring") FTDecayFunction2DCauchy::accept "void FTDecayFunction2DCauchy::accept(INodeVisitor *visitor) const final @@ -5237,7 +5234,7 @@ C++ includes: FTDecayFunctions.h %feature("docstring") FTDecayFunction2DGauss::FTDecayFunction2DGauss "FTDecayFunction2DGauss::FTDecayFunction2DGauss(double decay_length_x, double decay_length_y, double gamma=0) "; -%feature("docstring") FTDecayFunction2DGauss::clone "FTDecayFunction2DGauss * FTDecayFunction2DGauss::clone() const +%feature("docstring") FTDecayFunction2DGauss::clone "FTDecayFunction2DGauss * FTDecayFunction2DGauss::clone() const "; %feature("docstring") FTDecayFunction2DGauss::accept "void FTDecayFunction2DGauss::accept(INodeVisitor *visitor) const final @@ -5279,7 +5276,7 @@ gamma: distribution orientation with respect to the first lattice vector in radians "; -%feature("docstring") FTDecayFunction2DVoigt::clone "FTDecayFunction2DVoigt * FTDecayFunction2DVoigt::clone() const +%feature("docstring") FTDecayFunction2DVoigt::clone "FTDecayFunction2DVoigt * FTDecayFunction2DVoigt::clone() const "; %feature("docstring") FTDecayFunction2DVoigt::accept "void FTDecayFunction2DVoigt::accept(INodeVisitor *visitor) const final @@ -5292,7 +5289,7 @@ Calls the INodeVisitor's visit method. evaluate Fourier transformed decay function for q in X,Y coordinates "; -%feature("docstring") FTDecayFunction2DVoigt::eta "double FTDecayFunction2DVoigt::eta() const +%feature("docstring") FTDecayFunction2DVoigt::eta "double FTDecayFunction2DVoigt::eta() const "; @@ -5456,7 +5453,7 @@ Calls the INodeVisitor's visit method. Returns Fourier transform of this distribution; is a decay function starting at evaluate(0)=1. "; -%feature("docstring") FTDistribution1DVoigt::eta "double FTDistribution1DVoigt::eta() const +%feature("docstring") FTDistribution1DVoigt::eta "double FTDistribution1DVoigt::eta() const "; @@ -5613,7 +5610,7 @@ Calls the INodeVisitor's visit method. evaluate Fourier transformed distribution for q in X,Y coordinates the original distribution (in real space) is assumed to be normalized: total integral is equal to 1 "; -%feature("docstring") FTDistribution2DVoigt::eta "double FTDistribution2DVoigt::eta() const +%feature("docstring") FTDistribution2DVoigt::eta "double FTDistribution2DVoigt::eta() const "; @@ -5634,35 +5631,30 @@ C++ includes: GISASSimulation.h %feature("docstring") GISASSimulation::GISASSimulation "GISASSimulation::GISASSimulation(const std::shared_ptr< IMultiLayerBuilder > p_sample_builder) "; -%feature("docstring") GISASSimulation::~GISASSimulation "GISASSimulation::~GISASSimulation() final +%feature("docstring") GISASSimulation::~GISASSimulation "GISASSimulation::~GISASSimulation() "; %feature("docstring") GISASSimulation::clone "GISASSimulation* GISASSimulation::clone() const override "; -%feature("docstring") GISASSimulation::accept "void GISASSimulation::accept(INodeVisitor *visitor) const final +%feature("docstring") GISASSimulation::accept "void GISASSimulation::accept(INodeVisitor *visitor) const override Calls the INodeVisitor's visit method. "; -%feature("docstring") GISASSimulation::prepareSimulation "void GISASSimulation::prepareSimulation() final +%feature("docstring") GISASSimulation::prepareSimulation "void GISASSimulation::prepareSimulation() override Put into a clean state for running a simulation. "; -%feature("docstring") GISASSimulation::numberOfSimulationElements "size_t GISASSimulation::numberOfSimulationElements() const final +%feature("docstring") GISASSimulation::numberOfSimulationElements "size_t GISASSimulation::numberOfSimulationElements() const override Gets the number of elements this simulation needs to calculate. "; -%feature("docstring") GISASSimulation::getDetectorIntensity "OutputData< double > * GISASSimulation::getDetectorIntensity(AxesUnits units_type=AxesUnits::DEFAULT) const override +%feature("docstring") GISASSimulation::result "SimulationResult GISASSimulation::result() const override -Returns clone of the detector intensity map with detector resolution applied. -"; - -%feature("docstring") GISASSimulation::getIntensityData "Histogram2D * GISASSimulation::getIntensityData(AxesUnits units_type=AxesUnits::DEFAULT) const - -Returns histogram representing intensity map in requested axes units. +Returns the results of the simulation in a format that supports unit conversion and export to numpy arrays "; %feature("docstring") GISASSimulation::setBeamParameters "void GISASSimulation::setBeamParameters(double wavelength, double alpha_i, double phi_i) @@ -5670,40 +5662,6 @@ Returns histogram representing intensity map in requested axes units. Sets beam parameters from here (forwarded to Instrument) "; -%feature("docstring") GISASSimulation::setDetector "void GISASSimulation::setDetector(const IDetector2D &detector) - -Sets the detector (axes can be overwritten later) -"; - -%feature("docstring") GISASSimulation::removeMasks "void GISASSimulation::removeMasks() - -removes all masks from the detector -"; - -%feature("docstring") GISASSimulation::addMask "void GISASSimulation::addMask(const IShape2D &shape, bool mask_value=true) - -Adds mask of given shape to the stack of detector masks. The mask value 'true' means that the channel will be excluded from the simulation. The mask which is added last has priority. - -Parameters: ------------ - -shape: -The shape of mask ( Rectangle, Polygon, Line, Ellipse) - -mask_value: -The value of mask -"; - -%feature("docstring") GISASSimulation::maskAll "void GISASSimulation::maskAll() - -Put the mask for all detector channels (i.e. exclude whole detector from the analysis) -"; - -%feature("docstring") GISASSimulation::setRegionOfInterest "void GISASSimulation::setRegionOfInterest(double xlow, double ylow, double xup, double yup) - -Sets rectangular region of interest with lower left and upper right corners defined. -"; - // File: classGISASSpecularComputationTerm.xml %feature("docstring") GISASSpecularComputationTerm " @@ -5748,7 +5706,7 @@ Calculate scattering intensity for each SimulationElement returns false if noth %feature("docstring") HexagonalLattice::HexagonalLattice "HexagonalLattice::HexagonalLattice(double length, double rotation_angle=0.0) "; -%feature("docstring") HexagonalLattice::clone "HexagonalLattice * HexagonalLattice::clone() const +%feature("docstring") HexagonalLattice::clone "HexagonalLattice * HexagonalLattice::clone() const "; %feature("docstring") HexagonalLattice::accept "void HexagonalLattice::accept(INodeVisitor *visitor) const final @@ -5756,16 +5714,16 @@ Calculate scattering intensity for each SimulationElement returns false if noth Calls the INodeVisitor's visit method. "; -%feature("docstring") HexagonalLattice::length1 "virtual double HexagonalLattice::length1() const +%feature("docstring") HexagonalLattice::length1 "virtual double HexagonalLattice::length1() const "; -%feature("docstring") HexagonalLattice::length2 "virtual double HexagonalLattice::length2() const +%feature("docstring") HexagonalLattice::length2 "virtual double HexagonalLattice::length2() const "; -%feature("docstring") HexagonalLattice::latticeAngle "double HexagonalLattice::latticeAngle() const +%feature("docstring") HexagonalLattice::latticeAngle "double HexagonalLattice::latticeAngle() const "; -%feature("docstring") HexagonalLattice::unitCellArea "double HexagonalLattice::unitCellArea() const +%feature("docstring") HexagonalLattice::unitCellArea "double HexagonalLattice::unitCellArea() const "; @@ -5780,7 +5738,7 @@ C++ includes: ParaCrystalBuilder.h %feature("docstring") HexParaCrystalBuilder::HexParaCrystalBuilder "HexParaCrystalBuilder::HexParaCrystalBuilder() "; -%feature("docstring") HexParaCrystalBuilder::buildSample "MultiLayer * HexParaCrystalBuilder::buildSample() const +%feature("docstring") HexParaCrystalBuilder::buildSample "MultiLayer * HexParaCrystalBuilder::buildSample() const "; @@ -6040,7 +5998,7 @@ C++ includes: HomogeneousMultilayerBuilder.h %feature("docstring") HomogeneousMultilayerBuilder::HomogeneousMultilayerBuilder "HomogeneousMultilayerBuilder::HomogeneousMultilayerBuilder() "; -%feature("docstring") HomogeneousMultilayerBuilder::buildSample "MultiLayer * HomogeneousMultilayerBuilder::buildSample() const +%feature("docstring") HomogeneousMultilayerBuilder::buildSample "MultiLayer * HomogeneousMultilayerBuilder::buildSample() const "; @@ -6070,7 +6028,7 @@ y: The value at which it crosses y-axes "; -%feature("docstring") HorizontalLine::clone "HorizontalLine* HorizontalLine::clone() const +%feature("docstring") HorizontalLine::clone "HorizontalLine* HorizontalLine::clone() const "; %feature("docstring") HorizontalLine::contains "bool HorizontalLine::contains(double x, double y) const @@ -6083,7 +6041,7 @@ Returns true if point with given coordinates is inside or on border of the shape Returns true if area defined by two bins is inside or on border of polygon (more precisely, if mid point of two bins satisfy this condition). "; -%feature("docstring") HorizontalLine::getYpos "double HorizontalLine::getYpos() const +%feature("docstring") HorizontalLine::getYpos "double HorizontalLine::getYpos() const "; @@ -6113,7 +6071,7 @@ Returns a clone of this ISample object. Calls the INodeVisitor's visit method. "; -%feature("docstring") IAbstractParticle::abundance "double IAbstractParticle::abundance() const +%feature("docstring") IAbstractParticle::abundance "double IAbstractParticle::abundance() const "; %feature("docstring") IAbstractParticle::setAbundance "void IAbstractParticle::setAbundance(double abundance) @@ -6209,10 +6167,10 @@ find bin index which is best match for given value find index of bin that contains the given value returns size() when value is not found "; -%feature("docstring") IAxis::getBinCenters "std::vector< double > IAxis::getBinCenters() const +%feature("docstring") IAxis::getBinCenters "std::vector< double > IAxis::getBinCenters() const "; -%feature("docstring") IAxis::getBinBoundaries "std::vector< double > IAxis::getBinBoundaries() const +%feature("docstring") IAxis::getBinBoundaries "std::vector< double > IAxis::getBinBoundaries() const "; %feature("docstring") IAxis::createClippedAxis "IAxis * IAxis::createClippedAxis(double left, double right) const @@ -6383,10 +6341,10 @@ C++ includes: IComputation.h %feature("docstring") IComputation::run "void IComputation::run() "; -%feature("docstring") IComputation::isCompleted "bool IComputation::isCompleted() const +%feature("docstring") IComputation::isCompleted "bool IComputation::isCompleted() const "; -%feature("docstring") IComputation::errorMessage "std::string IComputation::errorMessage() const +%feature("docstring") IComputation::errorMessage "std::string IComputation::errorMessage() const "; @@ -6485,7 +6443,7 @@ Inits detector with the beam settings. %feature("docstring") IDetector::addAxis "void IDetector::addAxis(const IAxis &axis) "; -%feature("docstring") IDetector::getAxis "const IAxis & IDetector::getAxis(size_t index) const +%feature("docstring") IDetector::getAxis "const IAxis & IDetector::getAxis(size_t index) const "; %feature("docstring") IDetector::dimension "size_t IDetector::dimension() const @@ -6768,7 +6726,7 @@ C++ includes: IFactory.h Creates object by calling creation function corresponded to given identifier. "; -%feature("docstring") IFactory::create "std::unique_ptr<AbstractProduct> IFactory< Key, AbstractProduct >::create(const Key &item_key) const +%feature("docstring") IFactory::create "std::unique_ptr<AbstractProduct> IFactory< Key, AbstractProduct >::create(const Key &item_key) const "; %feature("docstring") IFactory::registerItem "bool IFactory< Key, AbstractProduct >::registerItem(const Key &item_key, CreateItemCallback CreateFn, const std::string &itemDescription=\"\") @@ -6776,7 +6734,7 @@ Creates object by calling creation function corresponded to given identifier. Registers object's creation function and store object description. "; -%feature("docstring") IFactory::contains "bool IFactory< Key, AbstractProduct >::contains(const Key &item_key) const +%feature("docstring") IFactory::contains "bool IFactory< Key, AbstractProduct >::contains(const Key &item_key) const "; %feature("docstring") IFactory::~IFactory "IFactory< Key, AbstractProduct >::~IFactory() @@ -6787,10 +6745,10 @@ Registers object's creation function and store object description. Returns number of registered objects. "; -%feature("docstring") IFactory::begin "const_iterator IFactory< Key, AbstractProduct >::begin() const +%feature("docstring") IFactory::begin "const_iterator IFactory< Key, AbstractProduct >::begin() const "; -%feature("docstring") IFactory::end "const_iterator IFactory< Key, AbstractProduct >::end() const +%feature("docstring") IFactory::end "const_iterator IFactory< Key, AbstractProduct >::end() const "; @@ -6857,7 +6815,7 @@ C++ includes: FitSuiteFunctions.h %feature("docstring") IFitSuiteFunction::init "virtual void IFitSuiteFunction::init(FitSuiteImpl *fit_suite) "; -%feature("docstring") IFitSuiteFunction::getNCalls "virtual size_t IFitSuiteFunction::getNCalls() const +%feature("docstring") IFitSuiteFunction::getNCalls "virtual size_t IFitSuiteFunction::getNCalls() const "; @@ -6884,7 +6842,7 @@ C++ includes: IFootprintFactor.h %feature("docstring") IFootprintFactor::setWidthRatio "void IFootprintFactor::setWidthRatio(double width_ratio) "; -%feature("docstring") IFootprintFactor::widthRatio "double IFootprintFactor::widthRatio() const +%feature("docstring") IFootprintFactor::widthRatio "double IFootprintFactor::widthRatio() const "; %feature("docstring") IFootprintFactor::calculate "virtual double IFootprintFactor::calculate(double alpha) const =0 @@ -7131,7 +7089,7 @@ half-width of the distribution in nanometers %feature("docstring") IFTDecayFunction1D::evaluate "virtual double IFTDecayFunction1D::evaluate(double q) const =0 "; -%feature("docstring") IFTDecayFunction1D::decayLength "double IFTDecayFunction1D::decayLength() const +%feature("docstring") IFTDecayFunction1D::decayLength "double IFTDecayFunction1D::decayLength() const "; @@ -7229,7 +7187,7 @@ Returns Fourier transform of this distribution; is a decay function starting at %feature("docstring") IFTDistribution1D::setOmega "void IFTDistribution1D::setOmega(double omega) "; -%feature("docstring") IFTDistribution1D::omega "double IFTDistribution1D::omega() const +%feature("docstring") IFTDistribution1D::omega "double IFTDistribution1D::omega() const "; @@ -7264,16 +7222,16 @@ angle in direct space between first lattice vector and x-axis of the distributio %feature("docstring") IFTDistribution2D::setGamma "void IFTDistribution2D::setGamma(double gamma) "; -%feature("docstring") IFTDistribution2D::gamma "double IFTDistribution2D::gamma() const +%feature("docstring") IFTDistribution2D::gamma "double IFTDistribution2D::gamma() const "; -%feature("docstring") IFTDistribution2D::delta "double IFTDistribution2D::delta() const +%feature("docstring") IFTDistribution2D::delta "double IFTDistribution2D::delta() const "; -%feature("docstring") IFTDistribution2D::omegaX "double IFTDistribution2D::omegaX() const +%feature("docstring") IFTDistribution2D::omegaX "double IFTDistribution2D::omegaX() const "; -%feature("docstring") IFTDistribution2D::omegaY "double IFTDistribution2D::omegaY() const +%feature("docstring") IFTDistribution2D::omegaY "double IFTDistribution2D::omegaY() const "; %feature("docstring") IFTDistribution2D::evaluate "virtual double IFTDistribution2D::evaluate(double qx, double qy) const =0 @@ -7439,7 +7397,7 @@ The global bin index The value accumulated by the bin (integral) "; -%feature("docstring") IHistogram::getData "const OutputData<CumulativeValue>& IHistogram::getData() const +%feature("docstring") IHistogram::getData "const OutputData<CumulativeValue>& IHistogram::getData() const "; %feature("docstring") IHistogram::getData "OutputData<CumulativeValue>& IHistogram::getData() @@ -7568,14 +7526,6 @@ Saves histogram in file Following formats are available: *.txt, *.tif, *.int (*. Loads histogram from file, the shape of array in file should match Following formats are available: *.txt, *.tif, *.int (*.txt.gz, *.tif.gz, *.int.gz) Only bin content will be loaded, histogram axes remain the same. "; -%feature("docstring") IHistogram::setAxesUnits "void IHistogram::setAxesUnits(const std::string &name) - -Sets axes units. -"; - -%feature("docstring") IHistogram::axesUnits "std::string IHistogram::axesUnits() const -"; - // File: classIIntensityFunction.xml %feature("docstring") IIntensityFunction " @@ -7733,10 +7683,10 @@ Returns z-part of the two wavevector eigenmodes. Scalar value getters; these throw errors by default as they should only be used when the derived object is really scalar "; -%feature("docstring") ILayerRTCoefficients::getScalarR "virtual complex_t ILayerRTCoefficients::getScalarR() const +%feature("docstring") ILayerRTCoefficients::getScalarR "virtual complex_t ILayerRTCoefficients::getScalarR() const "; -%feature("docstring") ILayerRTCoefficients::getScalarKz "virtual complex_t ILayerRTCoefficients::getScalarKz() const +%feature("docstring") ILayerRTCoefficients::getScalarKz "virtual complex_t ILayerRTCoefficients::getScalarKz() const "; @@ -7841,7 +7791,7 @@ C++ includes: INamed.h %feature("docstring") INamed::~INamed "INamed::~INamed() "; -%feature("docstring") INamed::getName "std::string INamed::getName() const +%feature("docstring") INamed::getName "std::string INamed::getName() const "; @@ -7856,7 +7806,7 @@ C++ includes: InfinitePlane.h %feature("docstring") InfinitePlane::InfinitePlane "InfinitePlane::InfinitePlane() "; -%feature("docstring") InfinitePlane::clone "InfinitePlane* InfinitePlane::clone() const +%feature("docstring") InfinitePlane::clone "InfinitePlane* InfinitePlane::clone() const "; %feature("docstring") InfinitePlane::contains "bool InfinitePlane::contains(double, double) const @@ -7905,7 +7855,7 @@ Returns a vector of children (const). %feature("docstring") INode::setParent "void INode::setParent(const INode *newParent) "; -%feature("docstring") INode::parent "const INode * INode::parent() const +%feature("docstring") INode::parent "const INode * INode::parent() const "; %feature("docstring") INode::parent "INode * INode::parent() @@ -8321,7 +8271,7 @@ Calls the INodeVisitor's visit method. %feature("docstring") Instrument::getBeam "Beam& Instrument::getBeam() "; -%feature("docstring") Instrument::getBeam "const Beam& Instrument::getBeam() const +%feature("docstring") Instrument::getBeam "const Beam& Instrument::getBeam() const "; %feature("docstring") Instrument::setBeam "void Instrument::setBeam(const Beam &beam) @@ -8355,12 +8305,7 @@ Returns the detector data. %feature("docstring") Instrument::getDetector "IDetector * Instrument::getDetector() "; -%feature("docstring") Instrument::detector2D "IDetector2D * Instrument::detector2D() - -Returns 2D detector data if detector is truly 2D. Otherwise returns nullptr. -"; - -%feature("docstring") Instrument::getDetectorMask "const DetectorMask * Instrument::getDetectorMask() const +%feature("docstring") Instrument::getDetectorMask "const DetectorMask * Instrument::getDetectorMask() const "; %feature("docstring") Instrument::getDetectorAxis "const IAxis & Instrument::getDetectorAxis(size_t index) const @@ -8403,11 +8348,6 @@ apply the detector resolution to the given intensity map Returns new intensity map with detector resolution applied and axes in requested units. "; -%feature("docstring") Instrument::createIntensityData "Histogram2D * Instrument::createIntensityData(const std::vector< SimulationElement > &elements, AxesUnits units_type=AxesUnits::DEFAULT) const - -Returns histogram representing intensity map in requested axes units. -"; - %feature("docstring") Instrument::createDetectorMap "OutputData< double > * Instrument::createDetectorMap(AxesUnits units=AxesUnits::DEFAULT) const Returns empty detector map in given axes units. @@ -8525,10 +8465,10 @@ C++ includes: IIntensityFunction.h %feature("docstring") IntensityFunctionLog::~IntensityFunctionLog "virtual IntensityFunctionLog::~IntensityFunctionLog() "; -%feature("docstring") IntensityFunctionLog::clone "virtual IntensityFunctionLog* IntensityFunctionLog::clone() const +%feature("docstring") IntensityFunctionLog::clone "virtual IntensityFunctionLog* IntensityFunctionLog::clone() const "; -%feature("docstring") IntensityFunctionLog::evaluate "double IntensityFunctionLog::evaluate(double value) const +%feature("docstring") IntensityFunctionLog::evaluate "double IntensityFunctionLog::evaluate(double value) const "; @@ -8543,10 +8483,10 @@ C++ includes: IIntensityFunction.h %feature("docstring") IntensityFunctionSqrt::~IntensityFunctionSqrt "virtual IntensityFunctionSqrt::~IntensityFunctionSqrt() "; -%feature("docstring") IntensityFunctionSqrt::clone "virtual IntensityFunctionSqrt* IntensityFunctionSqrt::clone() const +%feature("docstring") IntensityFunctionSqrt::clone "virtual IntensityFunctionSqrt* IntensityFunctionSqrt::clone() const "; -%feature("docstring") IntensityFunctionSqrt::evaluate "double IntensityFunctionSqrt::evaluate(double value) const +%feature("docstring") IntensityFunctionSqrt::evaluate "double IntensityFunctionSqrt::evaluate(double value) const "; @@ -8564,7 +8504,7 @@ C++ includes: IIntensityNormalizer.h %feature("docstring") IntensityNormalizer::~IntensityNormalizer "virtual IntensityNormalizer::~IntensityNormalizer() "; -%feature("docstring") IntensityNormalizer::clone "IntensityNormalizer * IntensityNormalizer::clone() const +%feature("docstring") IntensityNormalizer::clone "IntensityNormalizer * IntensityNormalizer::clone() const "; %feature("docstring") IntensityNormalizer::accept "void IntensityNormalizer::accept(INodeVisitor *visitor) const @@ -8572,7 +8512,7 @@ C++ includes: IIntensityNormalizer.h Calls the INodeVisitor's visit method. "; -%feature("docstring") IntensityNormalizer::createNormalizedData "OutputData< double > * IntensityNormalizer::createNormalizedData(const OutputData< double > &data) const +%feature("docstring") IntensityNormalizer::createNormalizedData "OutputData< double > * IntensityNormalizer::createNormalizedData(const OutputData< double > &data) const "; %feature("docstring") IntensityNormalizer::apply "void IntensityNormalizer::apply(OutputData< double > &data) const final @@ -8654,7 +8594,7 @@ decay: one-dimensional decay function in reciprocal space "; -%feature("docstring") InterferenceFunction1DLattice::getLatticeParameters "Lattice1DParameters InterferenceFunction1DLattice::getLatticeParameters() const +%feature("docstring") InterferenceFunction1DLattice::getLatticeParameters "Lattice1DParameters InterferenceFunction1DLattice::getLatticeParameters() const "; %feature("docstring") InterferenceFunction1DLattice::evaluate "double InterferenceFunction1DLattice::evaluate(const kvector_t q) const final @@ -8731,10 +8671,10 @@ Evaluates the interference function for a given wavevector transfer (only the re %feature("docstring") InterferenceFunction2DLattice::setIntegrationOverXi "void InterferenceFunction2DLattice::setIntegrationOverXi(bool integrate_xi) "; -%feature("docstring") InterferenceFunction2DLattice::integrationOverXi "bool InterferenceFunction2DLattice::integrationOverXi() const +%feature("docstring") InterferenceFunction2DLattice::integrationOverXi "bool InterferenceFunction2DLattice::integrationOverXi() const "; -%feature("docstring") InterferenceFunction2DLattice::lattice "const Lattice2D & InterferenceFunction2DLattice::lattice() const +%feature("docstring") InterferenceFunction2DLattice::lattice "const Lattice2D & InterferenceFunction2DLattice::lattice() const "; %feature("docstring") InterferenceFunction2DLattice::getParticleDensity "double InterferenceFunction2DLattice::getParticleDensity() const final @@ -8747,7 +8687,7 @@ Returns the particle density associated with this 2d lattice. Returns a vector of children (const). "; -%feature("docstring") InterferenceFunction2DLattice::onChange "void InterferenceFunction2DLattice::onChange() override final +%feature("docstring") InterferenceFunction2DLattice::onChange "void InterferenceFunction2DLattice::onChange() overridefinal Action to be taken in inherited class when a parameter has changed. "; @@ -8844,7 +8784,7 @@ the damping (coherence) length of the paracrystal in nanometers Evaluates the interference function for a given wavevector transfer (only the real x and y components are relevant) "; -%feature("docstring") InterferenceFunction2DParaCrystal::domainSizes "std::vector< double > InterferenceFunction2DParaCrystal::domainSizes() const +%feature("docstring") InterferenceFunction2DParaCrystal::domainSizes "std::vector< double > InterferenceFunction2DParaCrystal::domainSizes() const "; %feature("docstring") InterferenceFunction2DParaCrystal::setIntegrationOverXi "void InterferenceFunction2DParaCrystal::setIntegrationOverXi(bool integrate_xi) @@ -8858,13 +8798,13 @@ integrate_xi: integration flag "; -%feature("docstring") InterferenceFunction2DParaCrystal::integrationOverXi "bool InterferenceFunction2DParaCrystal::integrationOverXi() const +%feature("docstring") InterferenceFunction2DParaCrystal::integrationOverXi "bool InterferenceFunction2DParaCrystal::integrationOverXi() const "; -%feature("docstring") InterferenceFunction2DParaCrystal::dampingLength "double InterferenceFunction2DParaCrystal::dampingLength() const +%feature("docstring") InterferenceFunction2DParaCrystal::dampingLength "double InterferenceFunction2DParaCrystal::dampingLength() const "; -%feature("docstring") InterferenceFunction2DParaCrystal::lattice "const Lattice2D & InterferenceFunction2DParaCrystal::lattice() const +%feature("docstring") InterferenceFunction2DParaCrystal::lattice "const Lattice2D & InterferenceFunction2DParaCrystal::lattice() const "; %feature("docstring") InterferenceFunction2DParaCrystal::getParticleDensity "double InterferenceFunction2DParaCrystal::getParticleDensity() const final @@ -8964,7 +8904,7 @@ size: size of coherence domain along the lattice main axis in nanometers "; -%feature("docstring") InterferenceFunctionRadialParaCrystal::domainSize "double InterferenceFunctionRadialParaCrystal::domainSize() const +%feature("docstring") InterferenceFunctionRadialParaCrystal::domainSize "double InterferenceFunctionRadialParaCrystal::domainSize() const "; %feature("docstring") InterferenceFunctionRadialParaCrystal::evaluate "double InterferenceFunctionRadialParaCrystal::evaluate(const kvector_t q) const final @@ -8972,7 +8912,7 @@ size of coherence domain along the lattice main axis in nanometers Evaluates the interference function for a given wavevector transfer (only the real x and y components are relevant) "; -%feature("docstring") InterferenceFunctionRadialParaCrystal::FTPDF "complex_t InterferenceFunctionRadialParaCrystal::FTPDF(double qpar) const +%feature("docstring") InterferenceFunctionRadialParaCrystal::FTPDF "complex_t InterferenceFunctionRadialParaCrystal::FTPDF(double qpar) const "; %feature("docstring") InterferenceFunctionRadialParaCrystal::setProbabilityDistribution "void InterferenceFunctionRadialParaCrystal::setProbabilityDistribution(const IFTDistribution1D &pdf) @@ -8986,10 +8926,10 @@ pdf: probability distribution (Fourier transform of probability density) "; -%feature("docstring") InterferenceFunctionRadialParaCrystal::peakDistance "double InterferenceFunctionRadialParaCrystal::peakDistance() const +%feature("docstring") InterferenceFunctionRadialParaCrystal::peakDistance "double InterferenceFunctionRadialParaCrystal::peakDistance() const "; -%feature("docstring") InterferenceFunctionRadialParaCrystal::dampingLength "double InterferenceFunctionRadialParaCrystal::dampingLength() const +%feature("docstring") InterferenceFunctionRadialParaCrystal::dampingLength "double InterferenceFunctionRadialParaCrystal::dampingLength() const "; %feature("docstring") InterferenceFunctionRadialParaCrystal::getChildren "std::vector< const INode * > InterferenceFunctionRadialParaCrystal::getChildren() const override @@ -9092,7 +9032,7 @@ C++ includes: IParameter.h Returns true if wrapped parameter was not initialized with proper real value. "; -%feature("docstring") IParameter::getData "T& IParameter< T >::getData() const +%feature("docstring") IParameter::getData "T& IParameter< T >::getData() const "; %feature("docstring") IParameter::setData "void IParameter< T >::setData(T &data) @@ -9229,7 +9169,7 @@ z: z-coordinate in nanometers "; -%feature("docstring") IParticle::translate "void IParticle::translate(kvector_t translation) override final +%feature("docstring") IParticle::translate "void IParticle::translate(kvector_t translation) overridefinal Translates the particle. "; @@ -9244,7 +9184,7 @@ Returns rotation object. Sets transformation. "; -%feature("docstring") IParticle::rotate "void IParticle::rotate(const IRotation &rotation) override final +%feature("docstring") IParticle::rotate "void IParticle::rotate(const IRotation &rotation) overridefinal Rotates the particle. "; @@ -9308,13 +9248,13 @@ Templated object registry. C++ includes: IRegistry.h "; -%feature("docstring") IRegistry::getItem "const ValueType* IRegistry< ValueType >::getItem(const std::string &key) const +%feature("docstring") IRegistry::getItem "const ValueType* IRegistry< ValueType >::getItem(const std::string &key) const "; %feature("docstring") IRegistry::keys "std::vector<std::string> IRegistry< ValueType >::keys() "; -%feature("docstring") IRegistry::size "size_t IRegistry< ValueType >::size() const +%feature("docstring") IRegistry::size "size_t IRegistry< ValueType >::size() const "; @@ -9566,7 +9506,7 @@ C++ includes: NodeIterator.h %feature("docstring") IteratorMemento::get_state "IteratorState& IteratorMemento::get_state() "; -%feature("docstring") IteratorMemento::empty "bool IteratorMemento::empty() const +%feature("docstring") IteratorMemento::empty "bool IteratorMemento::empty() const "; %feature("docstring") IteratorMemento::reset "void IteratorMemento::reset() @@ -9578,7 +9518,7 @@ C++ includes: NodeIterator.h %feature("docstring") IteratorMemento::next "void IteratorMemento::next() "; -%feature("docstring") IteratorMemento::size "size_t IteratorMemento::size() const +%feature("docstring") IteratorMemento::size "size_t IteratorMemento::size() const "; @@ -9593,22 +9533,52 @@ C++ includes: NodeIterator.h %feature("docstring") IteratorState::IteratorState "IteratorState::IteratorState(const INode *single_element) "; -%feature("docstring") IteratorState::IteratorState "IteratorState::IteratorState(std::vector< const INode *> samples) +%feature("docstring") IteratorState::IteratorState "IteratorState::IteratorState(std::vector< const INode * > samples) "; %feature("docstring") IteratorState::~IteratorState "virtual IteratorState::~IteratorState() "; -%feature("docstring") IteratorState::getCurrent "const INode* IteratorState::getCurrent() const +%feature("docstring") IteratorState::getCurrent "const INode* IteratorState::getCurrent() const "; -%feature("docstring") IteratorState::isEnd "bool IteratorState::isEnd() const +%feature("docstring") IteratorState::isEnd "bool IteratorState::isEnd() const "; %feature("docstring") IteratorState::next "void IteratorState::next() "; +// File: classIUnitConverter.xml +%feature("docstring") IUnitConverter " + +Interface for objects that provide axis translations to different units for IDetector objects + +C++ includes: UnitConverters.h +"; + +%feature("docstring") IUnitConverter::~IUnitConverter "virtual IUnitConverter::~IUnitConverter()=default +"; + +%feature("docstring") IUnitConverter::clone "virtual IUnitConverter* IUnitConverter::clone() const =0 +"; + +%feature("docstring") IUnitConverter::dimension "virtual size_t IUnitConverter::dimension() const =0 +"; + +%feature("docstring") IUnitConverter::calculateMin "virtual double IUnitConverter::calculateMin(size_t i_axis, AxesUnits units_type) const =0 +"; + +%feature("docstring") IUnitConverter::calculateMax "virtual double IUnitConverter::calculateMax(size_t i_axis, AxesUnits units_type) const =0 +"; + +%feature("docstring") IUnitConverter::axisSize "virtual size_t IUnitConverter::axisSize(size_t i_axis) const =0 +"; + +%feature("docstring") IUnitConverter::axisName "virtual std::string IUnitConverter::axisName(size_t i_axis, AxesUnits units_type=AxesUnits::DEFAULT) const =0 +"; + + // File: classLabelMap.xml %feature("docstring") LabelMap ""; @@ -9624,7 +9594,7 @@ C++ includes: CylindersBuilder.h %feature("docstring") LargeCylindersInDWBABuilder::LargeCylindersInDWBABuilder "LargeCylindersInDWBABuilder::LargeCylindersInDWBABuilder() "; -%feature("docstring") LargeCylindersInDWBABuilder::buildSample "MultiLayer * LargeCylindersInDWBABuilder::buildSample() const +%feature("docstring") LargeCylindersInDWBABuilder::buildSample "MultiLayer * LargeCylindersInDWBABuilder::buildSample() const "; @@ -9725,7 +9695,7 @@ C++ includes: LatticeBuilder.h %feature("docstring") Lattice1DBuilder::Lattice1DBuilder "Lattice1DBuilder::Lattice1DBuilder() "; -%feature("docstring") Lattice1DBuilder::buildSample "MultiLayer * Lattice1DBuilder::buildSample() const +%feature("docstring") Lattice1DBuilder::buildSample "MultiLayer * Lattice1DBuilder::buildSample() const "; @@ -9774,10 +9744,10 @@ xi: %feature("docstring") Lattice2D::unitCellArea "virtual double Lattice2D::unitCellArea() const =0 "; -%feature("docstring") Lattice2D::rotationAngle "double Lattice2D::rotationAngle() const +%feature("docstring") Lattice2D::rotationAngle "double Lattice2D::rotationAngle() const "; -%feature("docstring") Lattice2D::reciprocalBases "Lattice2D::ReciprocalBases Lattice2D::reciprocalBases() const +%feature("docstring") Lattice2D::reciprocalBases "Lattice2D::ReciprocalBases Lattice2D::reciprocalBases() const "; %feature("docstring") Lattice2D::setRotationEnabled "void Lattice2D::setRotationEnabled(bool enabled) @@ -9809,15 +9779,15 @@ thickness of a layer in nanometers %feature("docstring") Layer::~Layer "Layer::~Layer() "; -%feature("docstring") Layer::clone "Layer * Layer::clone() const override final +%feature("docstring") Layer::clone "Layer * Layer::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") Layer::cloneInvertB "Layer * Layer::cloneInvertB() const +%feature("docstring") Layer::cloneInvertB "Layer * Layer::cloneInvertB() const "; -%feature("docstring") Layer::accept "void Layer::accept(INodeVisitor *visitor) const override final +%feature("docstring") Layer::accept "void Layer::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; @@ -9827,10 +9797,10 @@ Calls the INodeVisitor's visit method. Sets layer thickness in nanometers. "; -%feature("docstring") Layer::thickness "double Layer::thickness() const +%feature("docstring") Layer::thickness "double Layer::thickness() const "; -%feature("docstring") Layer::material "const Material* Layer::material() const override final +%feature("docstring") Layer::material "const Material* Layer::material() const overridefinal Returns nullptr, unless overwritten to return a specific material. "; @@ -9841,13 +9811,13 @@ Returns nullptr, unless overwritten to return a specific material. %feature("docstring") Layer::addLayout "void Layer::addLayout(const ILayout &decoration) "; -%feature("docstring") Layer::numberOfLayouts "size_t Layer::numberOfLayouts() const +%feature("docstring") Layer::numberOfLayouts "size_t Layer::numberOfLayouts() const "; -%feature("docstring") Layer::layouts "std::vector< const ILayout * > Layer::layouts() const +%feature("docstring") Layer::layouts "std::vector< const ILayout * > Layer::layouts() const "; -%feature("docstring") Layer::getChildren "std::vector< const INode * > Layer::getChildren() const override final +%feature("docstring") Layer::getChildren "std::vector< const INode * > Layer::getChildren() const overridefinal Returns a vector of children (const). "; @@ -9858,10 +9828,10 @@ Returns a vector of children (const). %feature("docstring") Layer::setNumberOfSlices "void Layer::setNumberOfSlices(unsigned int n_slices) "; -%feature("docstring") Layer::numberOfSlices "unsigned int Layer::numberOfSlices() const +%feature("docstring") Layer::numberOfSlices "unsigned int Layer::numberOfSlices() const "; -%feature("docstring") Layer::slice "SafePointerVector< Layer > Layer::slice(ZLimits limits, ELayerType layer_type) const +%feature("docstring") Layer::slice "SafePointerVector< Layer > Layer::slice(ZLimits limits, ELayerType layer_type) const "; %feature("docstring") Layer::scalarReducedPotential "complex_t Layer::scalarReducedPotential(kvector_t k, double n_ref) const @@ -9935,10 +9905,10 @@ Sets roughness of the interface. Returns roughness of the interface. "; -%feature("docstring") LayerInterface::topLayer "const Layer * LayerInterface::topLayer() const +%feature("docstring") LayerInterface::topLayer "const Layer * LayerInterface::topLayer() const "; -%feature("docstring") LayerInterface::bottomLayer "const Layer * LayerInterface::bottomLayer() const +%feature("docstring") LayerInterface::bottomLayer "const Layer * LayerInterface::bottomLayer() const "; %feature("docstring") LayerInterface::getChildren "std::vector< const INode * > LayerInterface::getChildren() const @@ -10046,7 +10016,7 @@ C++ includes: LayersWithAbsorptionBuilder.h %feature("docstring") LayersWithAbsorptionBuilder::~LayersWithAbsorptionBuilder "LayersWithAbsorptionBuilder::~LayersWithAbsorptionBuilder() "; -%feature("docstring") LayersWithAbsorptionBuilder::buildSample "MultiLayer * LayersWithAbsorptionBuilder::buildSample() const +%feature("docstring") LayersWithAbsorptionBuilder::buildSample "MultiLayer * LayersWithAbsorptionBuilder::buildSample() const "; %feature("docstring") LayersWithAbsorptionBuilder::createSample "MultiLayer * LayersWithAbsorptionBuilder::createSample(size_t index=0) @@ -10073,7 +10043,7 @@ C++ includes: LayoutStrategyBuilder.h %feature("docstring") LayoutStrategyBuilder::releaseStrategy "IInterferenceFunctionStrategy * LayoutStrategyBuilder::releaseStrategy() "; -%feature("docstring") LayoutStrategyBuilder::regionMap "std::map< size_t, std::vector< HomogeneousRegion > > LayoutStrategyBuilder::regionMap() const +%feature("docstring") LayoutStrategyBuilder::regionMap "std::map< size_t, std::vector< HomogeneousRegion > > LayoutStrategyBuilder::regionMap() const "; @@ -10088,7 +10058,7 @@ C++ includes: Line.h %feature("docstring") Line::Line "Line::Line(double x1, double y1, double x2, double y2) "; -%feature("docstring") Line::clone "Line* Line::clone() const +%feature("docstring") Line::clone "Line* Line::clone() const "; %feature("docstring") Line::contains "bool Line::contains(double x, double y) const @@ -10119,13 +10089,13 @@ C++ includes: LLData.h %feature("docstring") LLData::~LLData "LLData< T >::~LLData() "; -%feature("docstring") LLData::meanValues "LLData<double> LLData< T >::meanValues() const +%feature("docstring") LLData::meanValues "LLData<double> LLData< T >::meanValues() const "; %feature("docstring") LLData::atCoordinate "T & LLData< T >::atCoordinate(int *coordinate) "; -%feature("docstring") LLData::atCoordinate "const T & LLData< T >::atCoordinate(int *coordinate) const +%feature("docstring") LLData::atCoordinate "const T & LLData< T >::atCoordinate(int *coordinate) const "; %feature("docstring") LLData::setAll "void LLData< T >::setAll(const T &value) @@ -10134,16 +10104,16 @@ C++ includes: LLData.h %feature("docstring") LLData::scaleAll "void LLData< T >::scaleAll(const T &factor) "; -%feature("docstring") LLData::getTotalSize "size_t LLData< T >::getTotalSize() const +%feature("docstring") LLData::getTotalSize "size_t LLData< T >::getTotalSize() const "; -%feature("docstring") LLData::getRank "size_t LLData< T >::getRank() const +%feature("docstring") LLData::getRank "size_t LLData< T >::getRank() const "; -%feature("docstring") LLData::getDimensions "const int* LLData< T >::getDimensions() const +%feature("docstring") LLData::getDimensions "const int* LLData< T >::getDimensions() const "; -%feature("docstring") LLData::getTotalSum "T LLData< T >::getTotalSum() const +%feature("docstring") LLData::getTotalSum "T LLData< T >::getTotalSum() const "; @@ -10165,7 +10135,7 @@ C++ includes: MagneticParticlesBuilder.h %feature("docstring") MagneticCylindersBuilder::MagneticCylindersBuilder "MagneticCylindersBuilder::MagneticCylindersBuilder() "; -%feature("docstring") MagneticCylindersBuilder::buildSample "MultiLayer * MagneticCylindersBuilder::buildSample() const +%feature("docstring") MagneticCylindersBuilder::buildSample "MultiLayer * MagneticCylindersBuilder::buildSample() const "; @@ -10190,30 +10160,30 @@ Constructs basic material with name and magnetization. Returns pointer to a copy of material. "; -%feature("docstring") MagneticMaterialImpl::inverted "MagneticMaterialImpl * MagneticMaterialImpl::inverted() const override final +%feature("docstring") MagneticMaterialImpl::inverted "MagneticMaterialImpl * MagneticMaterialImpl::inverted() const overridefinal Constructs a material with inverted magnetization. "; -%feature("docstring") MagneticMaterialImpl::isScalarMaterial "bool MagneticMaterialImpl::isScalarMaterial() const override final +%feature("docstring") MagneticMaterialImpl::isScalarMaterial "bool MagneticMaterialImpl::isScalarMaterial() const overridefinal Indicates whether the interaction with the material is scalar. This means that different polarization states will be diffracted equally "; -%feature("docstring") MagneticMaterialImpl::isMagneticMaterial "bool MagneticMaterialImpl::isMagneticMaterial() const override final +%feature("docstring") MagneticMaterialImpl::isMagneticMaterial "bool MagneticMaterialImpl::isMagneticMaterial() const overridefinal "; -%feature("docstring") MagneticMaterialImpl::magnetization "kvector_t MagneticMaterialImpl::magnetization() const override final +%feature("docstring") MagneticMaterialImpl::magnetization "kvector_t MagneticMaterialImpl::magnetization() const overridefinal Returns the magnetization (in A/m) "; -%feature("docstring") MagneticMaterialImpl::polarizedSubtrSLD "Eigen::Matrix2cd MagneticMaterialImpl::polarizedSubtrSLD(const WavevectorInfo &wavevectors) const override final +%feature("docstring") MagneticMaterialImpl::polarizedSubtrSLD "Eigen::Matrix2cd MagneticMaterialImpl::polarizedSubtrSLD(const WavevectorInfo &wavevectors) const overridefinal Returns ( $ \\\\pi/\\\\lambda^2 $ - sld) matrix with magnetization corrections. "; -%feature("docstring") MagneticMaterialImpl::transformedMaterial "MagneticMaterialImpl * MagneticMaterialImpl::transformedMaterial(const Transform3D &transform) const override final +%feature("docstring") MagneticMaterialImpl::transformedMaterial "MagneticMaterialImpl * MagneticMaterialImpl::transformedMaterial(const Transform3D &transform) const overridefinal "; @@ -10228,7 +10198,7 @@ C++ includes: MagneticParticlesBuilder.h %feature("docstring") MagneticParticleZeroFieldBuilder::MagneticParticleZeroFieldBuilder "MagneticParticleZeroFieldBuilder::MagneticParticleZeroFieldBuilder() "; -%feature("docstring") MagneticParticleZeroFieldBuilder::buildSample "MultiLayer * MagneticParticleZeroFieldBuilder::buildSample() const +%feature("docstring") MagneticParticleZeroFieldBuilder::buildSample "MultiLayer * MagneticParticleZeroFieldBuilder::buildSample() const "; @@ -10243,7 +10213,7 @@ C++ includes: MagneticLayersBuilder.h %feature("docstring") MagneticRotationBuilder::MagneticRotationBuilder "MagneticRotationBuilder::MagneticRotationBuilder() "; -%feature("docstring") MagneticRotationBuilder::buildSample "MultiLayer * MagneticRotationBuilder::buildSample() const +%feature("docstring") MagneticRotationBuilder::buildSample "MultiLayer * MagneticRotationBuilder::buildSample() const "; @@ -10258,7 +10228,7 @@ C++ includes: MagneticParticlesBuilder.h %feature("docstring") MagneticSpheresBuilder::MagneticSpheresBuilder "MagneticSpheresBuilder::MagneticSpheresBuilder() "; -%feature("docstring") MagneticSpheresBuilder::buildSample "MultiLayer * MagneticSpheresBuilder::buildSample() const +%feature("docstring") MagneticSpheresBuilder::buildSample "MultiLayer * MagneticSpheresBuilder::buildSample() const "; @@ -10273,7 +10243,7 @@ C++ includes: MagneticLayersBuilder.h %feature("docstring") MagneticSubstrateZeroFieldBuilder::MagneticSubstrateZeroFieldBuilder "MagneticSubstrateZeroFieldBuilder::MagneticSubstrateZeroFieldBuilder() "; -%feature("docstring") MagneticSubstrateZeroFieldBuilder::buildSample "MultiLayer * MagneticSubstrateZeroFieldBuilder::buildSample() const +%feature("docstring") MagneticSubstrateZeroFieldBuilder::buildSample "MultiLayer * MagneticSubstrateZeroFieldBuilder::buildSample() const "; @@ -10320,7 +10290,7 @@ Returns squared refractive index. Indicates whether the interaction with the material is scalar. This means that different polarization states will be diffracted equally "; -%feature("docstring") Material::isMagneticMaterial "bool Material::isMagneticMaterial() const +%feature("docstring") Material::isMagneticMaterial "bool Material::isMagneticMaterial() const "; %feature("docstring") Material::getName "std::string Material::getName() const @@ -10363,7 +10333,7 @@ Returns ( $ \\\\pi/\\\\lambda^2 $ - sld), sld (in $nm^{-2}$) being the scatter Returns ( $ \\\\pi/\\\\lambda^2 $ - sld) matrix with magnetization corrections. "; -%feature("docstring") Material::transformedMaterial "Material Material::transformedMaterial(const Transform3D &transform) const +%feature("docstring") Material::transformedMaterial "Material Material::transformedMaterial(const Transform3D &transform) const "; @@ -10446,17 +10416,17 @@ C++ includes: MatrixFresnelMap.h %feature("docstring") MatrixFresnelMap::~MatrixFresnelMap "MatrixFresnelMap::~MatrixFresnelMap() "; -%feature("docstring") MatrixFresnelMap::getOutCoefficients "const ILayerRTCoefficients * MatrixFresnelMap::getOutCoefficients(const SimulationElement &sim_element, size_t layer_index) const final override +%feature("docstring") MatrixFresnelMap::getOutCoefficients "const ILayerRTCoefficients * MatrixFresnelMap::getOutCoefficients(const SimulationElement &sim_element, size_t layer_index) const finaloverride Retrieves the amplitude coefficients for a (time-reversed) outgoing wavevector. "; -%feature("docstring") MatrixFresnelMap::getInCoefficients "const ILayerRTCoefficients * MatrixFresnelMap::getInCoefficients(const SimulationElement &sim_element, size_t layer_index) const final override +%feature("docstring") MatrixFresnelMap::getInCoefficients "const ILayerRTCoefficients * MatrixFresnelMap::getInCoefficients(const SimulationElement &sim_element, size_t layer_index) const finaloverride Retrieves the amplitude coefficients for an incoming wavevector. "; -%feature("docstring") MatrixFresnelMap::setMultilayer "void MatrixFresnelMap::setMultilayer(const MultiLayer &multilayer) final override +%feature("docstring") MatrixFresnelMap::setMultilayer "void MatrixFresnelMap::setMultilayer(const MultiLayer &multilayer) finaloverride Sets the multilayer to be used for the Fresnel calculations. "; @@ -10481,7 +10451,7 @@ C++ includes: MatrixRTCoefficients.h %feature("docstring") MatrixRTCoefficients::~MatrixRTCoefficients "virtual MatrixRTCoefficients::~MatrixRTCoefficients() "; -%feature("docstring") MatrixRTCoefficients::clone "MatrixRTCoefficients * MatrixRTCoefficients::clone() const +%feature("docstring") MatrixRTCoefficients::clone "MatrixRTCoefficients * MatrixRTCoefficients::clone() const "; %feature("docstring") MatrixRTCoefficients::T1plus "Eigen::Vector2cd MatrixRTCoefficients::T1plus() const @@ -10489,25 +10459,25 @@ C++ includes: MatrixRTCoefficients.h The following functions return the transmitted and reflected amplitudes for different incoming beam polarizations and eigenmodes "; -%feature("docstring") MatrixRTCoefficients::R1plus "Eigen::Vector2cd MatrixRTCoefficients::R1plus() const +%feature("docstring") MatrixRTCoefficients::R1plus "Eigen::Vector2cd MatrixRTCoefficients::R1plus() const "; -%feature("docstring") MatrixRTCoefficients::T2plus "Eigen::Vector2cd MatrixRTCoefficients::T2plus() const +%feature("docstring") MatrixRTCoefficients::T2plus "Eigen::Vector2cd MatrixRTCoefficients::T2plus() const "; -%feature("docstring") MatrixRTCoefficients::R2plus "Eigen::Vector2cd MatrixRTCoefficients::R2plus() const +%feature("docstring") MatrixRTCoefficients::R2plus "Eigen::Vector2cd MatrixRTCoefficients::R2plus() const "; -%feature("docstring") MatrixRTCoefficients::T1min "Eigen::Vector2cd MatrixRTCoefficients::T1min() const +%feature("docstring") MatrixRTCoefficients::T1min "Eigen::Vector2cd MatrixRTCoefficients::T1min() const "; -%feature("docstring") MatrixRTCoefficients::R1min "Eigen::Vector2cd MatrixRTCoefficients::R1min() const +%feature("docstring") MatrixRTCoefficients::R1min "Eigen::Vector2cd MatrixRTCoefficients::R1min() const "; -%feature("docstring") MatrixRTCoefficients::T2min "Eigen::Vector2cd MatrixRTCoefficients::T2min() const +%feature("docstring") MatrixRTCoefficients::T2min "Eigen::Vector2cd MatrixRTCoefficients::T2min() const "; -%feature("docstring") MatrixRTCoefficients::R2min "Eigen::Vector2cd MatrixRTCoefficients::R2min() const +%feature("docstring") MatrixRTCoefficients::R2min "Eigen::Vector2cd MatrixRTCoefficients::R2min() const "; %feature("docstring") MatrixRTCoefficients::getKz "virtual Eigen::Vector2cd MatrixRTCoefficients::getKz() const @@ -10530,22 +10500,22 @@ C++ includes: MesoCrystal.h %feature("docstring") MesoCrystal::~MesoCrystal "MesoCrystal::~MesoCrystal() "; -%feature("docstring") MesoCrystal::clone "MesoCrystal * MesoCrystal::clone() const override final +%feature("docstring") MesoCrystal::clone "MesoCrystal * MesoCrystal::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") MesoCrystal::accept "void MesoCrystal::accept(INodeVisitor *visitor) const override final +%feature("docstring") MesoCrystal::accept "void MesoCrystal::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") MesoCrystal::createSlicedParticle "SlicedParticle MesoCrystal::createSlicedParticle(ZLimits limits) const override final +%feature("docstring") MesoCrystal::createSlicedParticle "SlicedParticle MesoCrystal::createSlicedParticle(ZLimits limits) const overridefinal Create a sliced form factor for this particle. "; -%feature("docstring") MesoCrystal::getChildren "std::vector< const INode * > MesoCrystal::getChildren() const override final +%feature("docstring") MesoCrystal::getChildren "std::vector< const INode * > MesoCrystal::getChildren() const overridefinal Returns a vector of children (const). "; @@ -10562,7 +10532,7 @@ C++ includes: MesoCrystalBuilder.h %feature("docstring") MesoCrystalBuilder::MesoCrystalBuilder "MesoCrystalBuilder::MesoCrystalBuilder() "; -%feature("docstring") MesoCrystalBuilder::buildSample "MultiLayer * MesoCrystalBuilder::buildSample() const +%feature("docstring") MesoCrystalBuilder::buildSample "MultiLayer * MesoCrystalBuilder::buildSample() const "; @@ -10582,15 +10552,15 @@ C++ includes: MultiLayer.h %feature("docstring") MultiLayer::~MultiLayer "MultiLayer::~MultiLayer() "; -%feature("docstring") MultiLayer::accept "void MultiLayer::accept(INodeVisitor *visitor) const final override +%feature("docstring") MultiLayer::accept "void MultiLayer::accept(INodeVisitor *visitor) const finaloverride Calls the INodeVisitor's visit method. "; -%feature("docstring") MultiLayer::numberOfLayers "size_t MultiLayer::numberOfLayers() const +%feature("docstring") MultiLayer::numberOfLayers "size_t MultiLayer::numberOfLayers() const "; -%feature("docstring") MultiLayer::numberOfInterfaces "size_t MultiLayer::numberOfInterfaces() const +%feature("docstring") MultiLayer::numberOfInterfaces "size_t MultiLayer::numberOfInterfaces() const "; %feature("docstring") MultiLayer::addLayer "void MultiLayer::addLayer(const Layer &layer) @@ -10654,7 +10624,7 @@ Returns layer material. Changes a layer's material. "; -%feature("docstring") MultiLayer::clone "MultiLayer * MultiLayer::clone() const final override +%feature("docstring") MultiLayer::clone "MultiLayer * MultiLayer::clone() const finaloverride Returns a clone of multilayer with clones of all layers and recreated interfaces between layers "; @@ -10716,7 +10686,7 @@ returns layer index corresponding to given global z coordinate The top interface returns layer index corresponding to given global z coordinate The top interface position of a layer is considered to belong to the layer beneath "; -%feature("docstring") MultiLayer::containsMagneticMaterial "bool MultiLayer::containsMagneticMaterial() const +%feature("docstring") MultiLayer::containsMagneticMaterial "bool MultiLayer::containsMagneticMaterial() const "; %feature("docstring") MultiLayer::containsCompatibleMaterials "bool MultiLayer::containsCompatibleMaterials() const @@ -10729,13 +10699,13 @@ Returns true if the multilayer contains non-default materials of one type only. precalculate the magnetic B fields in each layer "; -%feature("docstring") MultiLayer::hasRoughness "bool MultiLayer::hasRoughness() const +%feature("docstring") MultiLayer::hasRoughness "bool MultiLayer::hasRoughness() const "; -%feature("docstring") MultiLayer::totalNofLayouts "size_t MultiLayer::totalNofLayouts() const +%feature("docstring") MultiLayer::totalNofLayouts "size_t MultiLayer::totalNofLayouts() const "; -%feature("docstring") MultiLayer::getChildren "std::vector< const INode * > MultiLayer::getChildren() const final override +%feature("docstring") MultiLayer::getChildren "std::vector< const INode * > MultiLayer::getChildren() const finaloverride Returns a vector of children (const). "; @@ -10752,7 +10722,7 @@ C++ includes: MultiLayerWithRoughnessBuilder.h %feature("docstring") MultiLayerWithRoughnessBuilder::MultiLayerWithRoughnessBuilder "MultiLayerWithRoughnessBuilder::MultiLayerWithRoughnessBuilder() "; -%feature("docstring") MultiLayerWithRoughnessBuilder::buildSample "MultiLayer * MultiLayerWithRoughnessBuilder::buildSample() const +%feature("docstring") MultiLayerWithRoughnessBuilder::buildSample "MultiLayer * MultiLayerWithRoughnessBuilder::buildSample() const "; @@ -10767,7 +10737,7 @@ C++ includes: MultipleLayoutBuilder.h %feature("docstring") MultipleLayoutBuilder::MultipleLayoutBuilder "MultipleLayoutBuilder::MultipleLayoutBuilder() "; -%feature("docstring") MultipleLayoutBuilder::buildSample "MultiLayer * MultipleLayoutBuilder::buildSample() const +%feature("docstring") MultipleLayoutBuilder::buildSample "MultiLayer * MultipleLayoutBuilder::buildSample() const "; @@ -10796,10 +10766,10 @@ C++ includes: NodeIterator.h %feature("docstring") NodeIterator::getCurrent "const INode * NodeIterator< Strategy >::getCurrent() "; -%feature("docstring") NodeIterator::isDone "bool NodeIterator< Strategy >::isDone() const +%feature("docstring") NodeIterator::isDone "bool NodeIterator< Strategy >::isDone() const "; -%feature("docstring") NodeIterator::depth "int NodeIterator< Strategy >::depth() const +%feature("docstring") NodeIterator::depth "int NodeIterator< Strategy >::depth() const "; @@ -10855,19 +10825,32 @@ Put into a clean state for running a simulation. Gets the number of elements this simulation needs to calculate. "; -%feature("docstring") OffSpecSimulation::getDetectorIntensity "OutputData<double>* OffSpecSimulation::getDetectorIntensity(AxesUnits units_type=AxesUnits::DEFAULT) const override +%feature("docstring") OffSpecSimulation::result "SimulationResult OffSpecSimulation::result() const override + +Returns the results of the simulation in a format that supports unit conversion and export to numpy arrays +"; + +%feature("docstring") OffSpecSimulation::setBeamParameters "void OffSpecSimulation::setBeamParameters(double lambda, const IAxis &alpha_axis, double phi_i) -Returns clone of the detector intensity map. +Sets beam parameters from here (forwarded to Instrument) "; -%feature("docstring") OffSpecSimulation::getIntensityData "Histogram2D * OffSpecSimulation::getIntensityData() const -Returns clone of the detector intensity map in the form of 2D histogram. +// File: classOffSpecularConverter.xml +%feature("docstring") OffSpecularConverter " + +IUnitConverter class that handles the unit translations for off-specular simulations with a spherical detector Its default units are radians for both axes + +C++ includes: UnitConverters.h "; -%feature("docstring") OffSpecSimulation::setBeamParameters "void OffSpecSimulation::setBeamParameters(double lambda, const IAxis &alpha_axis, double phi_i) +%feature("docstring") OffSpecularConverter::OffSpecularConverter "OffSpecularConverter::OffSpecularConverter(const IDetector2D &detector, const Beam &beam, const IAxis &alpha_axis) +"; -Sets beam parameters from here (forwarded to Instrument) +%feature("docstring") OffSpecularConverter::~OffSpecularConverter "OffSpecularConverter::~OffSpecularConverter() +"; + +%feature("docstring") OffSpecularConverter::clone "OffSpecularConverter * OffSpecularConverter::clone() const override "; @@ -10897,10 +10880,10 @@ C++ includes: OrderedMap.h %feature("docstring") OrderedMap::clear "void OrderedMap< Key, Object >::clear() "; -%feature("docstring") OrderedMap::begin "const_iterator OrderedMap< Key, Object >::begin() const +%feature("docstring") OrderedMap::begin "const_iterator OrderedMap< Key, Object >::begin() const "; -%feature("docstring") OrderedMap::end "const_iterator OrderedMap< Key, Object >::end() const +%feature("docstring") OrderedMap::end "const_iterator OrderedMap< Key, Object >::end() const "; %feature("docstring") OrderedMap::begin "iterator OrderedMap< Key, Object >::begin() @@ -10918,7 +10901,7 @@ C++ includes: OrderedMap.h %feature("docstring") OrderedMap::find "iterator OrderedMap< Key, Object >::find(const Key &key) "; -%feature("docstring") OrderedMap::find "const_iterator OrderedMap< Key, Object >::find(const Key &key) const +%feature("docstring") OrderedMap::find "const_iterator OrderedMap< Key, Object >::find(const Key &key) const "; %feature("docstring") OrderedMap::erase "size_t OrderedMap< Key, Object >::erase(const Key &key) @@ -10952,7 +10935,7 @@ C++ includes: OutputData.h %feature("docstring") OutputData::~OutputData "OutputData< T >::~OutputData() "; -%feature("docstring") OutputData::clone "OutputData< T > * OutputData< T >::clone() const +%feature("docstring") OutputData::clone "OutputData< T > * OutputData< T >::clone() const "; %feature("docstring") OutputData::copyFrom "void OutputData< T >::copyFrom(const OutputData< T > &x) @@ -10961,7 +10944,7 @@ C++ includes: OutputData.h %feature("docstring") OutputData::copyShapeFrom "void OutputData< T >::copyShapeFrom(const OutputData< U > &other) "; -%feature("docstring") OutputData::meanValues "OutputData< double > * OutputData< T >::meanValues() const +%feature("docstring") OutputData::meanValues "OutputData< double > * OutputData< T >::meanValues() const "; %feature("docstring") OutputData::addAxis "void OutputData< T >::addAxis(const IAxis &new_axis) @@ -11000,11 +10983,6 @@ Returns all sizes of its axes. Returns copy of raw data vector. "; -%feature("docstring") OutputData::fillRawDataArray "void OutputData< T >::fillRawDataArray(T *destination) const - -fill raw array with data -"; - %feature("docstring") OutputData::totalSum "T OutputData< T >::totalSum() const Returns sum of all values in the data structure. @@ -11430,7 +11408,7 @@ get number of samples for this distribution get the sigma factor "; -%feature("docstring") ParameterDistribution::getDistribution "const IDistribution1D * ParameterDistribution::getDistribution() const +%feature("docstring") ParameterDistribution::getDistribution "const IDistribution1D * ParameterDistribution::getDistribution() const "; %feature("docstring") ParameterDistribution::getDistribution "IDistribution1D * ParameterDistribution::getDistribution() @@ -11446,13 +11424,13 @@ generate list of sampled values with their weight get list of linked parameter names "; -%feature("docstring") ParameterDistribution::getLimits "RealLimits ParameterDistribution::getLimits() const +%feature("docstring") ParameterDistribution::getLimits "RealLimits ParameterDistribution::getLimits() const "; -%feature("docstring") ParameterDistribution::getMinValue "double ParameterDistribution::getMinValue() const +%feature("docstring") ParameterDistribution::getMinValue "double ParameterDistribution::getMinValue() const "; -%feature("docstring") ParameterDistribution::getMaxValue "double ParameterDistribution::getMaxValue() const +%feature("docstring") ParameterDistribution::getMaxValue "double ParameterDistribution::getMaxValue() const "; @@ -11476,7 +11454,7 @@ C++ includes: ParameterPattern.h %feature("docstring") ParameterPattern::add "ParameterPattern & ParameterPattern::add(std::string object_type) "; -%feature("docstring") ParameterPattern::toStdString "std::string ParameterPattern::toStdString() const +%feature("docstring") ParameterPattern::toStdString "std::string ParameterPattern::toStdString() const "; @@ -11563,7 +11541,7 @@ Sets value of the nonzero parameters that match pattern ('*' allowed), or throw Sets value of the one parameter that matches pattern ('*' allowed), or throws. "; -%feature("docstring") ParameterPool::parameterNames "std::vector< std::string > ParameterPool::parameterNames() const +%feature("docstring") ParameterPool::parameterNames "std::vector< std::string > ParameterPool::parameterNames() const "; %feature("docstring") ParameterPool::removeParameter "void ParameterPool::removeParameter(const std::string &name) @@ -11604,17 +11582,17 @@ C++ includes: Particle.h %feature("docstring") Particle::Particle "Particle::Particle(Material material, const IFormFactor &form_factor, const IRotation &rotation) "; -%feature("docstring") Particle::clone "Particle * Particle::clone() const override final +%feature("docstring") Particle::clone "Particle * Particle::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") Particle::accept "void Particle::accept(INodeVisitor *visitor) const override final +%feature("docstring") Particle::accept "void Particle::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") Particle::createSlicedParticle "SlicedParticle Particle::createSlicedParticle(ZLimits limits) const override final +%feature("docstring") Particle::createSlicedParticle "SlicedParticle Particle::createSlicedParticle(ZLimits limits) const overridefinal Create a sliced form factor for this particle. "; @@ -11622,7 +11600,7 @@ Create a sliced form factor for this particle. %feature("docstring") Particle::setMaterial "void Particle::setMaterial(Material material) "; -%feature("docstring") Particle::material "const Material* Particle::material() const override final +%feature("docstring") Particle::material "const Material* Particle::material() const overridefinal Returns nullptr, unless overwritten to return a specific material. "; @@ -11630,7 +11608,7 @@ Returns nullptr, unless overwritten to return a specific material. %feature("docstring") Particle::setFormFactor "void Particle::setFormFactor(const IFormFactor &form_factor) "; -%feature("docstring") Particle::getChildren "std::vector< const INode * > Particle::getChildren() const override final +%feature("docstring") Particle::getChildren "std::vector< const INode * > Particle::getChildren() const overridefinal Returns a vector of children (const). "; @@ -11653,17 +11631,17 @@ C++ includes: ParticleComposition.h %feature("docstring") ParticleComposition::~ParticleComposition "ParticleComposition::~ParticleComposition() "; -%feature("docstring") ParticleComposition::clone "ParticleComposition * ParticleComposition::clone() const override final +%feature("docstring") ParticleComposition::clone "ParticleComposition * ParticleComposition::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") ParticleComposition::accept "void ParticleComposition::accept(INodeVisitor *visitor) const override final +%feature("docstring") ParticleComposition::accept "void ParticleComposition::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") ParticleComposition::createFormFactor "IFormFactor * ParticleComposition::createFormFactor() const override final +%feature("docstring") ParticleComposition::createFormFactor "IFormFactor * ParticleComposition::createFormFactor() const overridefinal Create a form factor for this particle. "; @@ -11682,17 +11660,17 @@ Create a form factor for this particle. Returns number of different particles. "; -%feature("docstring") ParticleComposition::getChildren "std::vector< const INode * > ParticleComposition::getChildren() const override final +%feature("docstring") ParticleComposition::getChildren "std::vector< const INode * > ParticleComposition::getChildren() const overridefinal Returns a vector of children (const). "; -%feature("docstring") ParticleComposition::decompose "SafePointerVector< IParticle > ParticleComposition::decompose() const override final +%feature("docstring") ParticleComposition::decompose "SafePointerVector< IParticle > ParticleComposition::decompose() const overridefinal Decompose in constituent IParticle objects. "; -%feature("docstring") ParticleComposition::bottomTopZ "ParticleLimits ParticleComposition::bottomTopZ() const override final +%feature("docstring") ParticleComposition::bottomTopZ "ParticleLimits ParticleComposition::bottomTopZ() const overridefinal Top and bottom z-coordinate. "; @@ -11709,7 +11687,7 @@ C++ includes: ParticleCompositionBuilder.h %feature("docstring") ParticleCompositionBuilder::ParticleCompositionBuilder "ParticleCompositionBuilder::ParticleCompositionBuilder() "; -%feature("docstring") ParticleCompositionBuilder::buildSample "MultiLayer * ParticleCompositionBuilder::buildSample() const +%feature("docstring") ParticleCompositionBuilder::buildSample "MultiLayer * ParticleCompositionBuilder::buildSample() const "; @@ -11727,28 +11705,28 @@ C++ includes: ParticleCoreShell.h %feature("docstring") ParticleCoreShell::~ParticleCoreShell "ParticleCoreShell::~ParticleCoreShell() "; -%feature("docstring") ParticleCoreShell::clone "ParticleCoreShell * ParticleCoreShell::clone() const override final +%feature("docstring") ParticleCoreShell::clone "ParticleCoreShell * ParticleCoreShell::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") ParticleCoreShell::accept "void ParticleCoreShell::accept(INodeVisitor *visitor) const override final +%feature("docstring") ParticleCoreShell::accept "void ParticleCoreShell::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") ParticleCoreShell::createSlicedParticle "SlicedParticle ParticleCoreShell::createSlicedParticle(ZLimits limits) const override final +%feature("docstring") ParticleCoreShell::createSlicedParticle "SlicedParticle ParticleCoreShell::createSlicedParticle(ZLimits limits) const overridefinal Create a sliced form factor for this particle. "; -%feature("docstring") ParticleCoreShell::coreParticle "const Particle * ParticleCoreShell::coreParticle() const +%feature("docstring") ParticleCoreShell::coreParticle "const Particle * ParticleCoreShell::coreParticle() const "; -%feature("docstring") ParticleCoreShell::shellParticle "const Particle * ParticleCoreShell::shellParticle() const +%feature("docstring") ParticleCoreShell::shellParticle "const Particle * ParticleCoreShell::shellParticle() const "; -%feature("docstring") ParticleCoreShell::getChildren "std::vector< const INode * > ParticleCoreShell::getChildren() const override final +%feature("docstring") ParticleCoreShell::getChildren "std::vector< const INode * > ParticleCoreShell::getChildren() const overridefinal Returns a vector of children (const). "; @@ -11765,22 +11743,22 @@ C++ includes: ParticleDistribution.h %feature("docstring") ParticleDistribution::ParticleDistribution "ParticleDistribution::ParticleDistribution(const IParticle &prototype, const ParameterDistribution &par_distr) "; -%feature("docstring") ParticleDistribution::clone "ParticleDistribution * ParticleDistribution::clone() const override final +%feature("docstring") ParticleDistribution::clone "ParticleDistribution * ParticleDistribution::clone() const overridefinal Returns a clone of this ISample object. "; -%feature("docstring") ParticleDistribution::accept "void ParticleDistribution::accept(INodeVisitor *visitor) const override final +%feature("docstring") ParticleDistribution::accept "void ParticleDistribution::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; -%feature("docstring") ParticleDistribution::translate "void ParticleDistribution::translate(kvector_t translation) override final +%feature("docstring") ParticleDistribution::translate "void ParticleDistribution::translate(kvector_t translation) overridefinal Translates the particle with the given vector. "; -%feature("docstring") ParticleDistribution::rotate "void ParticleDistribution::rotate(const IRotation &rotation) override final +%feature("docstring") ParticleDistribution::rotate "void ParticleDistribution::rotate(const IRotation &rotation) overridefinal Applies the given rotation to the particle. "; @@ -11802,7 +11780,7 @@ Returns the prototype particle, used for generating multiple ones. Returns the distributed parameter data. "; -%feature("docstring") ParticleDistribution::getChildren "std::vector< const INode * > ParticleDistribution::getChildren() const override final +%feature("docstring") ParticleDistribution::getChildren "std::vector< const INode * > ParticleDistribution::getChildren() const overridefinal Returns a vector of children (const). "; @@ -11822,7 +11800,7 @@ C++ includes: ParticleInTheAirBuilder.h %feature("docstring") ParticleInTheAirBuilder::~ParticleInTheAirBuilder "ParticleInTheAirBuilder::~ParticleInTheAirBuilder() "; -%feature("docstring") ParticleInTheAirBuilder::buildSample "MultiLayer * ParticleInTheAirBuilder::buildSample() const +%feature("docstring") ParticleInTheAirBuilder::buildSample "MultiLayer * ParticleInTheAirBuilder::buildSample() const "; %feature("docstring") ParticleInTheAirBuilder::createSample "MultiLayer * ParticleInTheAirBuilder::createSample(size_t index=0) @@ -11849,15 +11827,15 @@ C++ includes: ParticleLayout.h %feature("docstring") ParticleLayout::~ParticleLayout "ParticleLayout::~ParticleLayout() "; -%feature("docstring") ParticleLayout::clone "ParticleLayout * ParticleLayout::clone() const final override +%feature("docstring") ParticleLayout::clone "ParticleLayout * ParticleLayout::clone() const finaloverride Returns a clone of this ISample object. "; -%feature("docstring") ParticleLayout::cloneWithOffset "ParticleLayout * ParticleLayout::cloneWithOffset(double offset) const final override +%feature("docstring") ParticleLayout::cloneWithOffset "ParticleLayout * ParticleLayout::cloneWithOffset(double offset) const finaloverride "; -%feature("docstring") ParticleLayout::accept "void ParticleLayout::accept(INodeVisitor *visitor) const final override +%feature("docstring") ParticleLayout::accept "void ParticleLayout::accept(INodeVisitor *visitor) const finaloverride Calls the INodeVisitor's visit method. "; @@ -11882,12 +11860,12 @@ rotation: Particle rotation "; -%feature("docstring") ParticleLayout::particles "SafePointerVector< const IParticle > ParticleLayout::particles() const final override +%feature("docstring") ParticleLayout::particles "SafePointerVector< const IParticle > ParticleLayout::particles() const finaloverride Returns information on all particles (type and abundance) and generates new particles if an IAbstractParticle denotes a collection "; -%feature("docstring") ParticleLayout::getTotalAbundance "double ParticleLayout::getTotalAbundance() const final override +%feature("docstring") ParticleLayout::getTotalAbundance "double ParticleLayout::getTotalAbundance() const finaloverride Get total abundance of all particles. "; @@ -11897,17 +11875,17 @@ Get total abundance of all particles. Adds interference functions. "; -%feature("docstring") ParticleLayout::totalParticleSurfaceDensity "double ParticleLayout::totalParticleSurfaceDensity() const final override +%feature("docstring") ParticleLayout::totalParticleSurfaceDensity "double ParticleLayout::totalParticleSurfaceDensity() const finaloverride Returns surface density of all particles. "; -%feature("docstring") ParticleLayout::setTotalParticleSurfaceDensity "void ParticleLayout::setTotalParticleSurfaceDensity(double particle_density) final override +%feature("docstring") ParticleLayout::setTotalParticleSurfaceDensity "void ParticleLayout::setTotalParticleSurfaceDensity(double particle_density) finaloverride Sets total particle surface density. particle_density: number of particles per square nanometer "; -%feature("docstring") ParticleLayout::getChildren "std::vector< const INode * > ParticleLayout::getChildren() const final override +%feature("docstring") ParticleLayout::getChildren "std::vector< const INode * > ParticleLayout::getChildren() const finaloverride Returns a vector of children (const). "; @@ -11948,7 +11926,7 @@ C++ includes: PoissonNoiseBackground.h %feature("docstring") PoissonNoiseBackground::~PoissonNoiseBackground "PoissonNoiseBackground::~PoissonNoiseBackground() "; -%feature("docstring") PoissonNoiseBackground::clone "PoissonNoiseBackground * PoissonNoiseBackground::clone() const override final +%feature("docstring") PoissonNoiseBackground::clone "PoissonNoiseBackground * PoissonNoiseBackground::clone() const overridefinal "; %feature("docstring") PoissonNoiseBackground::accept "void PoissonNoiseBackground::accept(INodeVisitor *visitor) const override @@ -11956,7 +11934,7 @@ C++ includes: PoissonNoiseBackground.h Calls the INodeVisitor's visit method. "; -%feature("docstring") PoissonNoiseBackground::addBackGround "double PoissonNoiseBackground::addBackGround(double intensity) const override final +%feature("docstring") PoissonNoiseBackground::addBackGround "double PoissonNoiseBackground::addBackGround(double intensity) const overridefinal "; @@ -12024,7 +12002,7 @@ Vector of y-coordinates of polygon points. %feature("docstring") Polygon::~Polygon "Polygon::~Polygon() "; -%feature("docstring") Polygon::clone "virtual Polygon* Polygon::clone() const +%feature("docstring") Polygon::clone "virtual Polygon* Polygon::clone() const "; %feature("docstring") Polygon::contains "bool Polygon::contains(double x, double y) const @@ -12037,10 +12015,10 @@ Returns true if point with given coordinates is inside or on border of the shape Returns true if area defined by two bins is inside or on border of polygon (more precisely, if mid point of two bins satisfy this condition). "; -%feature("docstring") Polygon::getArea "double Polygon::getArea() const +%feature("docstring") Polygon::getArea "double Polygon::getArea() const "; -%feature("docstring") Polygon::getPoints "void Polygon::getPoints(std::vector< double > &xpos, std::vector< double > &ypos) const +%feature("docstring") Polygon::getPoints "void Polygon::getPoints(std::vector< double > &xpos, std::vector< double > &ypos) const "; @@ -12077,16 +12055,16 @@ C++ includes: FormFactorPolyhedron.h %feature("docstring") PolyhedralEdge::PolyhedralEdge "PolyhedralEdge::PolyhedralEdge(const kvector_t _Vlow, const kvector_t _Vhig) "; -%feature("docstring") PolyhedralEdge::E "kvector_t PolyhedralEdge::E() const +%feature("docstring") PolyhedralEdge::E "kvector_t PolyhedralEdge::E() const "; -%feature("docstring") PolyhedralEdge::R "kvector_t PolyhedralEdge::R() const +%feature("docstring") PolyhedralEdge::R "kvector_t PolyhedralEdge::R() const "; -%feature("docstring") PolyhedralEdge::qE "complex_t PolyhedralEdge::qE(cvector_t q) const +%feature("docstring") PolyhedralEdge::qE "complex_t PolyhedralEdge::qE(cvector_t q) const "; -%feature("docstring") PolyhedralEdge::qR "complex_t PolyhedralEdge::qR(cvector_t q) const +%feature("docstring") PolyhedralEdge::qR "complex_t PolyhedralEdge::qR(cvector_t q) const "; %feature("docstring") PolyhedralEdge::contrib "complex_t PolyhedralEdge::contrib(int m, cvector_t qpa, complex_t qrperp) const @@ -12117,16 +12095,16 @@ _sym_S2: true if face has a perpedicular two-fold symmetry axis "; -%feature("docstring") PolyhedralFace::area "double PolyhedralFace::area() const +%feature("docstring") PolyhedralFace::area "double PolyhedralFace::area() const "; -%feature("docstring") PolyhedralFace::center "kvector_t PolyhedralFace::center() const +%feature("docstring") PolyhedralFace::center "kvector_t PolyhedralFace::center() const "; -%feature("docstring") PolyhedralFace::pyramidalVolume "double PolyhedralFace::pyramidalVolume() const +%feature("docstring") PolyhedralFace::pyramidalVolume "double PolyhedralFace::pyramidalVolume() const "; -%feature("docstring") PolyhedralFace::radius3d "double PolyhedralFace::radius3d() const +%feature("docstring") PolyhedralFace::radius3d "double PolyhedralFace::radius3d() const "; %feature("docstring") PolyhedralFace::normalProjectionConj "complex_t PolyhedralFace::normalProjectionConj(cvector_t q) const @@ -12170,7 +12148,7 @@ C++ includes: FormFactorPolyhedron.h %feature("docstring") PostorderStrategy::PostorderStrategy "PostorderStrategy::PostorderStrategy() "; -%feature("docstring") PostorderStrategy::clone "PostorderStrategy * PostorderStrategy::clone() const +%feature("docstring") PostorderStrategy::clone "PostorderStrategy * PostorderStrategy::clone() const "; %feature("docstring") PostorderStrategy::~PostorderStrategy "PostorderStrategy::~PostorderStrategy() @@ -12179,10 +12157,10 @@ C++ includes: FormFactorPolyhedron.h %feature("docstring") PostorderStrategy::first "IteratorMemento PostorderStrategy::first(const INode *p_root) "; -%feature("docstring") PostorderStrategy::next "void PostorderStrategy::next(IteratorMemento &iterator_stack) const +%feature("docstring") PostorderStrategy::next "void PostorderStrategy::next(IteratorMemento &iterator_stack) const "; -%feature("docstring") PostorderStrategy::isDone "bool PostorderStrategy::isDone(IteratorMemento &iterator_stack) const +%feature("docstring") PostorderStrategy::isDone "bool PostorderStrategy::isDone(IteratorMemento &iterator_stack) const "; @@ -12192,7 +12170,7 @@ C++ includes: FormFactorPolyhedron.h %feature("docstring") PreorderStrategy::PreorderStrategy "PreorderStrategy::PreorderStrategy() "; -%feature("docstring") PreorderStrategy::clone "PreorderStrategy * PreorderStrategy::clone() const +%feature("docstring") PreorderStrategy::clone "PreorderStrategy * PreorderStrategy::clone() const "; %feature("docstring") PreorderStrategy::~PreorderStrategy "PreorderStrategy::~PreorderStrategy() @@ -12201,10 +12179,10 @@ C++ includes: FormFactorPolyhedron.h %feature("docstring") PreorderStrategy::first "IteratorMemento PreorderStrategy::first(const INode *p_root) "; -%feature("docstring") PreorderStrategy::next "void PreorderStrategy::next(IteratorMemento &iterator_stack) const +%feature("docstring") PreorderStrategy::next "void PreorderStrategy::next(IteratorMemento &iterator_stack) const "; -%feature("docstring") PreorderStrategy::isDone "bool PreorderStrategy::isDone(IteratorMemento &iterator_stack) const +%feature("docstring") PreorderStrategy::isDone "bool PreorderStrategy::isDone(IteratorMemento &iterator_stack) const "; @@ -12271,7 +12249,7 @@ C++ includes: ParaCrystalBuilder.h %feature("docstring") RadialParaCrystalBuilder::RadialParaCrystalBuilder "RadialParaCrystalBuilder::RadialParaCrystalBuilder() "; -%feature("docstring") RadialParaCrystalBuilder::buildSample "MultiLayer * RadialParaCrystalBuilder::buildSample() const +%feature("docstring") RadialParaCrystalBuilder::buildSample "MultiLayer * RadialParaCrystalBuilder::buildSample() const "; @@ -12286,7 +12264,7 @@ C++ includes: RealParameter.h %feature("docstring") RealParameter::RealParameter "RealParameter::RealParameter(const std::string &name, double *par, const std::string &parent_name=std::string(), const std::function< void()> &onChange=std::function< void()>(), const RealLimits &limits=RealLimits::limitless(), const Attributes &attr=Attributes::free()) "; -%feature("docstring") RealParameter::clone "RealParameter * RealParameter::clone(const std::string &new_name=\"\") const +%feature("docstring") RealParameter::clone "RealParameter * RealParameter::clone(const std::string &new_name=\"\") const "; %feature("docstring") RealParameter::setValue "void RealParameter::setValue(double value) @@ -12302,7 +12280,7 @@ Returns value of wrapped parameter. %feature("docstring") RealParameter::setLimits "RealParameter & RealParameter::setLimits(const RealLimits &limits) "; -%feature("docstring") RealParameter::limits "RealLimits RealParameter::limits() const +%feature("docstring") RealParameter::limits "RealLimits RealParameter::limits() const "; %feature("docstring") RealParameter::setLimited "RealParameter & RealParameter::setLimited(double lower, double upper) @@ -12317,7 +12295,7 @@ Returns value of wrapped parameter. %feature("docstring") RealParameter::setUnit "RealParameter & RealParameter::setUnit(const std::string &name) "; -%feature("docstring") RealParameter::unit "std::string RealParameter::unit() const +%feature("docstring") RealParameter::unit "std::string RealParameter::unit() const "; @@ -12360,7 +12338,7 @@ yup: y-coordinate of upper right corner "; -%feature("docstring") Rectangle::clone "Rectangle* Rectangle::clone() const +%feature("docstring") Rectangle::clone "Rectangle* Rectangle::clone() const "; %feature("docstring") Rectangle::contains "bool Rectangle::contains(double x, double y) const @@ -12373,19 +12351,37 @@ Returns true if point with given coordinates is inside or on border of the shape Returns true if area defined by two bins is inside or on border of polygon (more precisely, if mid point of two bins satisfy this condition). "; -%feature("docstring") Rectangle::getArea "double Rectangle::getArea() const +%feature("docstring") Rectangle::getArea "double Rectangle::getArea() const "; -%feature("docstring") Rectangle::getXlow "double Rectangle::getXlow() const +%feature("docstring") Rectangle::getXlow "double Rectangle::getXlow() const "; -%feature("docstring") Rectangle::getYlow "double Rectangle::getYlow() const +%feature("docstring") Rectangle::getYlow "double Rectangle::getYlow() const "; -%feature("docstring") Rectangle::getXup "double Rectangle::getXup() const +%feature("docstring") Rectangle::getXup "double Rectangle::getXup() const "; -%feature("docstring") Rectangle::getYup "double Rectangle::getYup() const +%feature("docstring") Rectangle::getYup "double Rectangle::getYup() const +"; + + +// File: classRectangularConverter.xml +%feature("docstring") RectangularConverter " + +IUnitConverter class that handles the unit translations for rectangular detectors Its default units are mm for both axes + +C++ includes: UnitConverters.h +"; + +%feature("docstring") RectangularConverter::RectangularConverter "RectangularConverter::RectangularConverter(const RectangularDetector &detector, const Beam &beam) +"; + +%feature("docstring") RectangularConverter::~RectangularConverter "RectangularConverter::~RectangularConverter() +"; + +%feature("docstring") RectangularConverter::clone "RectangularConverter * RectangularConverter::clone() const override "; @@ -12436,7 +12432,7 @@ Calls the INodeVisitor's visit method. Inits detector with the beam settings. "; -%feature("docstring") RectangularDetector::setPosition "void RectangularDetector::setPosition(const kvector_t normal_to_detector, double u0, double v0, const kvector_t direction=kvector_t(0.0, -1.0, 0.0)) +%feature("docstring") RectangularDetector::setPosition "void RectangularDetector::setPosition(const kvector_t normal_to_detector, double u0, double v0, const kvector_t direction=kvector_t(0.0,-1.0, 0.0)) "; %feature("docstring") RectangularDetector::setPerpendicularToSampleX "void RectangularDetector::setPerpendicularToSampleX(double distance, double u0, double v0) @@ -12451,40 +12447,40 @@ Inits detector with the beam settings. %feature("docstring") RectangularDetector::setDirectBeamPosition "void RectangularDetector::setDirectBeamPosition(double u0, double v0) "; -%feature("docstring") RectangularDetector::getWidth "double RectangularDetector::getWidth() const +%feature("docstring") RectangularDetector::getWidth "double RectangularDetector::getWidth() const "; -%feature("docstring") RectangularDetector::getHeight "double RectangularDetector::getHeight() const +%feature("docstring") RectangularDetector::getHeight "double RectangularDetector::getHeight() const "; -%feature("docstring") RectangularDetector::getNbinsX "size_t RectangularDetector::getNbinsX() const +%feature("docstring") RectangularDetector::getNbinsX "size_t RectangularDetector::getNbinsX() const "; -%feature("docstring") RectangularDetector::getNbinsY "size_t RectangularDetector::getNbinsY() const +%feature("docstring") RectangularDetector::getNbinsY "size_t RectangularDetector::getNbinsY() const "; -%feature("docstring") RectangularDetector::getNormalVector "kvector_t RectangularDetector::getNormalVector() const +%feature("docstring") RectangularDetector::getNormalVector "kvector_t RectangularDetector::getNormalVector() const "; -%feature("docstring") RectangularDetector::getU0 "double RectangularDetector::getU0() const +%feature("docstring") RectangularDetector::getU0 "double RectangularDetector::getU0() const "; -%feature("docstring") RectangularDetector::getV0 "double RectangularDetector::getV0() const +%feature("docstring") RectangularDetector::getV0 "double RectangularDetector::getV0() const "; -%feature("docstring") RectangularDetector::getDirectionVector "kvector_t RectangularDetector::getDirectionVector() const +%feature("docstring") RectangularDetector::getDirectionVector "kvector_t RectangularDetector::getDirectionVector() const "; -%feature("docstring") RectangularDetector::getDistance "double RectangularDetector::getDistance() const +%feature("docstring") RectangularDetector::getDistance "double RectangularDetector::getDistance() const "; -%feature("docstring") RectangularDetector::getDirectBeamU0 "double RectangularDetector::getDirectBeamU0() const +%feature("docstring") RectangularDetector::getDirectBeamU0 "double RectangularDetector::getDirectBeamU0() const "; -%feature("docstring") RectangularDetector::getDirectBeamV0 "double RectangularDetector::getDirectBeamV0() const +%feature("docstring") RectangularDetector::getDirectBeamV0 "double RectangularDetector::getDirectBeamV0() const "; -%feature("docstring") RectangularDetector::getDetectorArrangment "RectangularDetector::EDetectorArrangement RectangularDetector::getDetectorArrangment() const +%feature("docstring") RectangularDetector::getDetectorArrangment "RectangularDetector::EDetectorArrangement RectangularDetector::getDetectorArrangment() const "; %feature("docstring") RectangularDetector::validAxesUnits "std::vector< AxesUnits > RectangularDetector::validAxesUnits() const override @@ -12497,6 +12493,9 @@ returns vector of valid axes units return default axes units "; +%feature("docstring") RectangularDetector::regionOfInterestPixel "RectangularPixel * RectangularDetector::regionOfInterestPixel() const +"; + // File: classRectangularPixel.xml %feature("docstring") RectangularPixel ""; @@ -12516,6 +12515,9 @@ return default axes units %feature("docstring") RectangularPixel::getK "kvector_t RectangularPixel::getK(double x, double y, double wavelength) const override "; +%feature("docstring") RectangularPixel::getPosition "kvector_t RectangularPixel::getPosition(double x, double y) const +"; + %feature("docstring") RectangularPixel::getIntegrationFactor "double RectangularPixel::getIntegrationFactor(double x, double y) const override "; @@ -12534,7 +12536,7 @@ C++ includes: ParaCrystalBuilder.h %feature("docstring") RectParaCrystalBuilder::RectParaCrystalBuilder "RectParaCrystalBuilder::RectParaCrystalBuilder() "; -%feature("docstring") RectParaCrystalBuilder::buildSample "MultiLayer * RectParaCrystalBuilder::buildSample() const +%feature("docstring") RectParaCrystalBuilder::buildSample "MultiLayer * RectParaCrystalBuilder::buildSample() const "; @@ -12599,22 +12601,22 @@ C++ includes: RegionOfInterest.h %feature("docstring") RegionOfInterest::RegionOfInterest "RegionOfInterest::RegionOfInterest(const OutputData< double > &data, double xlow, double ylow, double xup, double yup) "; -%feature("docstring") RegionOfInterest::clone "RegionOfInterest * RegionOfInterest::clone() const +%feature("docstring") RegionOfInterest::clone "RegionOfInterest * RegionOfInterest::clone() const "; %feature("docstring") RegionOfInterest::~RegionOfInterest "RegionOfInterest::~RegionOfInterest() "; -%feature("docstring") RegionOfInterest::getXlow "double RegionOfInterest::getXlow() const +%feature("docstring") RegionOfInterest::getXlow "double RegionOfInterest::getXlow() const "; -%feature("docstring") RegionOfInterest::getYlow "double RegionOfInterest::getYlow() const +%feature("docstring") RegionOfInterest::getYlow "double RegionOfInterest::getYlow() const "; -%feature("docstring") RegionOfInterest::getXup "double RegionOfInterest::getXup() const +%feature("docstring") RegionOfInterest::getXup "double RegionOfInterest::getXup() const "; -%feature("docstring") RegionOfInterest::getYup "double RegionOfInterest::getYup() const +%feature("docstring") RegionOfInterest::getYup "double RegionOfInterest::getYup() const "; %feature("docstring") RegionOfInterest::detectorIndex "size_t RegionOfInterest::detectorIndex(size_t roiIndex) const @@ -12637,10 +12639,10 @@ Number of detector bins in ROI area. Number of detector bins. "; -%feature("docstring") RegionOfInterest::isInROI "bool RegionOfInterest::isInROI(size_t detectorIndex) const +%feature("docstring") RegionOfInterest::isInROI "bool RegionOfInterest::isInROI(size_t detectorIndex) const "; -%feature("docstring") RegionOfInterest::clipAxisToRoi "std::unique_ptr< IAxis > RegionOfInterest::clipAxisToRoi(size_t axis_index, const IAxis &axis) const +%feature("docstring") RegionOfInterest::clipAxisToRoi "std::unique_ptr< IAxis > RegionOfInterest::clipAxisToRoi(size_t axis_index, const IAxis &axis) const "; @@ -12655,10 +12657,10 @@ C++ includes: ResolutionFunction2DGaussian.h %feature("docstring") ResolutionFunction2DGaussian::ResolutionFunction2DGaussian "ResolutionFunction2DGaussian::ResolutionFunction2DGaussian(double sigma_x, double sigma_y) "; -%feature("docstring") ResolutionFunction2DGaussian::evaluateCDF "double ResolutionFunction2DGaussian::evaluateCDF(double x, double y) const +%feature("docstring") ResolutionFunction2DGaussian::evaluateCDF "double ResolutionFunction2DGaussian::evaluateCDF(double x, double y) const "; -%feature("docstring") ResolutionFunction2DGaussian::clone "ResolutionFunction2DGaussian* ResolutionFunction2DGaussian::clone() const +%feature("docstring") ResolutionFunction2DGaussian::clone "ResolutionFunction2DGaussian* ResolutionFunction2DGaussian::clone() const "; %feature("docstring") ResolutionFunction2DGaussian::accept "void ResolutionFunction2DGaussian::accept(INodeVisitor *visitor) const final @@ -12666,10 +12668,10 @@ C++ includes: ResolutionFunction2DGaussian.h Calls the INodeVisitor's visit method. "; -%feature("docstring") ResolutionFunction2DGaussian::getSigmaX "double ResolutionFunction2DGaussian::getSigmaX() const +%feature("docstring") ResolutionFunction2DGaussian::getSigmaX "double ResolutionFunction2DGaussian::getSigmaX() const "; -%feature("docstring") ResolutionFunction2DGaussian::getSigmaY "double ResolutionFunction2DGaussian::getSigmaY() const +%feature("docstring") ResolutionFunction2DGaussian::getSigmaY "double ResolutionFunction2DGaussian::getSigmaY() const "; @@ -12704,7 +12706,7 @@ C++ includes: CylindersBuilder.h %feature("docstring") RotatedCylindersBuilder::RotatedCylindersBuilder "RotatedCylindersBuilder::RotatedCylindersBuilder() "; -%feature("docstring") RotatedCylindersBuilder::buildSample "MultiLayer * RotatedCylindersBuilder::buildSample() const +%feature("docstring") RotatedCylindersBuilder::buildSample "MultiLayer * RotatedCylindersBuilder::buildSample() const "; @@ -12719,7 +12721,7 @@ C++ includes: RotatedPyramidsBuilder.h %feature("docstring") RotatedPyramidsBuilder::RotatedPyramidsBuilder "RotatedPyramidsBuilder::RotatedPyramidsBuilder() "; -%feature("docstring") RotatedPyramidsBuilder::buildSample "MultiLayer * RotatedPyramidsBuilder::buildSample() const +%feature("docstring") RotatedPyramidsBuilder::buildSample "MultiLayer * RotatedPyramidsBuilder::buildSample() const "; @@ -12734,7 +12736,7 @@ C++ includes: ParticleDistributionsBuilder.h %feature("docstring") RotatedPyramidsDistributionBuilder::RotatedPyramidsDistributionBuilder "RotatedPyramidsDistributionBuilder::RotatedPyramidsDistributionBuilder() "; -%feature("docstring") RotatedPyramidsDistributionBuilder::buildSample "MultiLayer * RotatedPyramidsDistributionBuilder::buildSample() const +%feature("docstring") RotatedPyramidsDistributionBuilder::buildSample "MultiLayer * RotatedPyramidsDistributionBuilder::buildSample() const "; @@ -12749,7 +12751,7 @@ C++ includes: TwoDimLatticeBuilder.h %feature("docstring") RotatedSquareLatticeBuilder::RotatedSquareLatticeBuilder "RotatedSquareLatticeBuilder::RotatedSquareLatticeBuilder() "; -%feature("docstring") RotatedSquareLatticeBuilder::buildSample "MultiLayer * RotatedSquareLatticeBuilder::buildSample() const +%feature("docstring") RotatedSquareLatticeBuilder::buildSample "MultiLayer * RotatedSquareLatticeBuilder::buildSample() const "; @@ -12788,13 +12790,13 @@ Returns a new IRotation object that is the current object's inverse. Calls the INodeVisitor's visit method. "; -%feature("docstring") RotationEuler::getAlpha "double RotationEuler::getAlpha() const +%feature("docstring") RotationEuler::getAlpha "double RotationEuler::getAlpha() const "; -%feature("docstring") RotationEuler::getBeta "double RotationEuler::getBeta() const +%feature("docstring") RotationEuler::getBeta "double RotationEuler::getBeta() const "; -%feature("docstring") RotationEuler::getGamma "double RotationEuler::getGamma() const +%feature("docstring") RotationEuler::getGamma "double RotationEuler::getGamma() const "; %feature("docstring") RotationEuler::getTransform3D "Transform3D RotationEuler::getTransform3D() const @@ -12832,7 +12834,7 @@ Returns a new IRotation object that is the current object's inverse. Calls the INodeVisitor's visit method. "; -%feature("docstring") RotationX::getAngle "double RotationX::getAngle() const +%feature("docstring") RotationX::getAngle "double RotationX::getAngle() const "; %feature("docstring") RotationX::getTransform3D "Transform3D RotationX::getTransform3D() const @@ -12870,7 +12872,7 @@ Returns a new IRotation object that is the current object's inverse. Calls the INodeVisitor's visit method. "; -%feature("docstring") RotationY::getAngle "double RotationY::getAngle() const +%feature("docstring") RotationY::getAngle "double RotationY::getAngle() const "; %feature("docstring") RotationY::getTransform3D "Transform3D RotationY::getTransform3D() const @@ -12908,7 +12910,7 @@ Returns a new IRotation object that is the current object's inverse. Calls the INodeVisitor's visit method. "; -%feature("docstring") RotationZ::getAngle "double RotationZ::getAngle() const +%feature("docstring") RotationZ::getAngle "double RotationZ::getAngle() const "; %feature("docstring") RotationZ::getTransform3D "Transform3D RotationZ::getTransform3D() const @@ -12963,10 +12965,10 @@ C++ includes: SafePointerVector.h %feature("docstring") SafePointerVector::~SafePointerVector "SafePointerVector< T >::~SafePointerVector() "; -%feature("docstring") SafePointerVector::size "size_t SafePointerVector< T >::size() const +%feature("docstring") SafePointerVector::size "size_t SafePointerVector< T >::size() const "; -%feature("docstring") SafePointerVector::empty "bool SafePointerVector< T >::empty() const +%feature("docstring") SafePointerVector::empty "bool SafePointerVector< T >::empty() const "; %feature("docstring") SafePointerVector::push_back "void SafePointerVector< T >::push_back(T *pointer) @@ -12975,13 +12977,13 @@ C++ includes: SafePointerVector.h %feature("docstring") SafePointerVector::begin "iterator SafePointerVector< T >::begin() "; -%feature("docstring") SafePointerVector::begin "const_iterator SafePointerVector< T >::begin() const +%feature("docstring") SafePointerVector::begin "const_iterator SafePointerVector< T >::begin() const "; %feature("docstring") SafePointerVector::end "iterator SafePointerVector< T >::end() "; -%feature("docstring") SafePointerVector::end "const_iterator SafePointerVector< T >::end() const +%feature("docstring") SafePointerVector::end "const_iterator SafePointerVector< T >::end() const "; %feature("docstring") SafePointerVector::deleteElement "bool SafePointerVector< T >::deleteElement(T *pointer) @@ -12990,7 +12992,7 @@ C++ includes: SafePointerVector.h %feature("docstring") SafePointerVector::back "T* SafePointerVector< T >::back() "; -%feature("docstring") SafePointerVector::back "const T* SafePointerVector< T >::back() const +%feature("docstring") SafePointerVector::back "const T* SafePointerVector< T >::back() const "; %feature("docstring") SafePointerVector::clear "void SafePointerVector< T >::clear() @@ -13268,12 +13270,12 @@ C++ includes: ScalarFresnelMap.h %feature("docstring") ScalarFresnelMap::~ScalarFresnelMap "ScalarFresnelMap::~ScalarFresnelMap() final "; -%feature("docstring") ScalarFresnelMap::getOutCoefficients "const ILayerRTCoefficients * ScalarFresnelMap::getOutCoefficients(const SimulationElement &sim_element, size_t layer_index) const final override +%feature("docstring") ScalarFresnelMap::getOutCoefficients "const ILayerRTCoefficients * ScalarFresnelMap::getOutCoefficients(const SimulationElement &sim_element, size_t layer_index) const finaloverride Retrieves the amplitude coefficients for a (time-reversed) outgoing wavevector. "; -%feature("docstring") ScalarFresnelMap::getInCoefficients "const ILayerRTCoefficients * ScalarFresnelMap::getInCoefficients(const SimulationElement &sim_element, size_t layer_index) const final override +%feature("docstring") ScalarFresnelMap::getInCoefficients "const ILayerRTCoefficients * ScalarFresnelMap::getInCoefficients(const SimulationElement &sim_element, size_t layer_index) const finaloverride Retrieves the amplitude coefficients for an incoming wavevector. "; @@ -13298,7 +13300,7 @@ C++ includes: ScalarRTCoefficients.h %feature("docstring") ScalarRTCoefficients::~ScalarRTCoefficients "virtual ScalarRTCoefficients::~ScalarRTCoefficients() "; -%feature("docstring") ScalarRTCoefficients::clone "ScalarRTCoefficients * ScalarRTCoefficients::clone() const +%feature("docstring") ScalarRTCoefficients::clone "ScalarRTCoefficients * ScalarRTCoefficients::clone() const "; %feature("docstring") ScalarRTCoefficients::T1plus "Eigen::Vector2cd ScalarRTCoefficients::T1plus() const @@ -13306,25 +13308,25 @@ C++ includes: ScalarRTCoefficients.h The following functions return the transmitted and reflected amplitudes for different incoming beam polarizations and eigenmodes "; -%feature("docstring") ScalarRTCoefficients::R1plus "Eigen::Vector2cd ScalarRTCoefficients::R1plus() const +%feature("docstring") ScalarRTCoefficients::R1plus "Eigen::Vector2cd ScalarRTCoefficients::R1plus() const "; -%feature("docstring") ScalarRTCoefficients::T2plus "Eigen::Vector2cd ScalarRTCoefficients::T2plus() const +%feature("docstring") ScalarRTCoefficients::T2plus "Eigen::Vector2cd ScalarRTCoefficients::T2plus() const "; -%feature("docstring") ScalarRTCoefficients::R2plus "Eigen::Vector2cd ScalarRTCoefficients::R2plus() const +%feature("docstring") ScalarRTCoefficients::R2plus "Eigen::Vector2cd ScalarRTCoefficients::R2plus() const "; -%feature("docstring") ScalarRTCoefficients::T1min "Eigen::Vector2cd ScalarRTCoefficients::T1min() const +%feature("docstring") ScalarRTCoefficients::T1min "Eigen::Vector2cd ScalarRTCoefficients::T1min() const "; -%feature("docstring") ScalarRTCoefficients::R1min "Eigen::Vector2cd ScalarRTCoefficients::R1min() const +%feature("docstring") ScalarRTCoefficients::R1min "Eigen::Vector2cd ScalarRTCoefficients::R1min() const "; -%feature("docstring") ScalarRTCoefficients::T2min "Eigen::Vector2cd ScalarRTCoefficients::T2min() const +%feature("docstring") ScalarRTCoefficients::T2min "Eigen::Vector2cd ScalarRTCoefficients::T2min() const "; -%feature("docstring") ScalarRTCoefficients::R2min "Eigen::Vector2cd ScalarRTCoefficients::R2min() const +%feature("docstring") ScalarRTCoefficients::R2min "Eigen::Vector2cd ScalarRTCoefficients::R2min() const "; %feature("docstring") ScalarRTCoefficients::getKz "Eigen::Vector2cd ScalarRTCoefficients::getKz() const @@ -13337,10 +13339,10 @@ Returns z-part of the two wavevector eigenmodes. Scalar value getters; these throw errors by default as they should only be used when the derived object is really scalar "; -%feature("docstring") ScalarRTCoefficients::getScalarR "complex_t ScalarRTCoefficients::getScalarR() const +%feature("docstring") ScalarRTCoefficients::getScalarR "complex_t ScalarRTCoefficients::getScalarR() const "; -%feature("docstring") ScalarRTCoefficients::getScalarKz "virtual complex_t ScalarRTCoefficients::getScalarKz() const +%feature("docstring") ScalarRTCoefficients::getScalarKz "virtual complex_t ScalarRTCoefficients::getScalarKz() const "; @@ -13365,10 +13367,10 @@ C++ includes: ISelectionRule.h %feature("docstring") SimpleSelectionRule::~SimpleSelectionRule "virtual SimpleSelectionRule::~SimpleSelectionRule() "; -%feature("docstring") SimpleSelectionRule::clone "SimpleSelectionRule * SimpleSelectionRule::clone() const +%feature("docstring") SimpleSelectionRule::clone "SimpleSelectionRule * SimpleSelectionRule::clone() const "; -%feature("docstring") SimpleSelectionRule::coordinateSelected "bool SimpleSelectionRule::coordinateSelected(const ivector_t &coordinate) const +%feature("docstring") SimpleSelectionRule::coordinateSelected "bool SimpleSelectionRule::coordinateSelected(const ivector_t &coordinate) const "; @@ -13410,7 +13412,7 @@ Run simulation with possible averaging over parameter distributions. %feature("docstring") Simulation::setInstrument "void Simulation::setInstrument(const Instrument &instrument) "; -%feature("docstring") Simulation::getInstrument "const Instrument& Simulation::getInstrument() const +%feature("docstring") Simulation::getInstrument "const Instrument& Simulation::getInstrument() const "; %feature("docstring") Simulation::getInstrument "Instrument& Simulation::getInstrument() @@ -13419,7 +13421,7 @@ Run simulation with possible averaging over parameter distributions. %feature("docstring") Simulation::setBeamIntensity "void Simulation::setBeamIntensity(double intensity) "; -%feature("docstring") Simulation::getBeamIntensity "double Simulation::getBeamIntensity() const +%feature("docstring") Simulation::getBeamIntensity "double Simulation::getBeamIntensity() const "; %feature("docstring") Simulation::setBeamPolarization "void Simulation::setBeamPolarization(const kvector_t bloch_vector) @@ -13443,7 +13445,7 @@ Sets the polarization analyzer characteristics of the detector. The MultiLayer object will not be owned by the Simulation object. "; -%feature("docstring") Simulation::sample "const MultiLayer * Simulation::sample() const +%feature("docstring") Simulation::sample "const MultiLayer * Simulation::sample() const "; %feature("docstring") Simulation::setSampleBuilder "void Simulation::setSampleBuilder(const std::shared_ptr< IMultiLayerBuilder > sample_builder) @@ -13452,7 +13454,7 @@ The MultiLayer object will not be owned by the Simulation object. %feature("docstring") Simulation::setBackground "void Simulation::setBackground(const IBackground &bg) "; -%feature("docstring") Simulation::background "const IBackground* Simulation::background() const +%feature("docstring") Simulation::background "const IBackground* Simulation::background() const "; %feature("docstring") Simulation::numberOfSimulationElements "virtual size_t Simulation::numberOfSimulationElements() const =0 @@ -13469,13 +13471,13 @@ Clone simulated intensity map. %feature("docstring") Simulation::addParameterDistribution "void Simulation::addParameterDistribution(const ParameterDistribution &par_distr) "; -%feature("docstring") Simulation::getDistributionHandler "const DistributionHandler& Simulation::getDistributionHandler() const +%feature("docstring") Simulation::getDistributionHandler "const DistributionHandler& Simulation::getDistributionHandler() const "; %feature("docstring") Simulation::setOptions "void Simulation::setOptions(const SimulationOptions &options) "; -%feature("docstring") Simulation::getOptions "const SimulationOptions& Simulation::getOptions() const +%feature("docstring") Simulation::getOptions "const SimulationOptions& Simulation::getOptions() const "; %feature("docstring") Simulation::getOptions "SimulationOptions& Simulation::getOptions() @@ -13544,6 +13546,55 @@ alpha_max: upper edge of last alpha-bin "; +%feature("docstring") Simulation2D::setDetector "void Simulation2D::setDetector(const IDetector2D &detector) + +Sets the detector (axes can be overwritten later) +"; + +%feature("docstring") Simulation2D::result "virtual SimulationResult Simulation2D::result() const =0 + +Returns the results of the simulation in a format that supports unit conversion and export to numpy arrays +"; + +%feature("docstring") Simulation2D::getDetectorIntensity "OutputData< double > * Simulation2D::getDetectorIntensity(AxesUnits units_type=AxesUnits::DEFAULT) const override + +Returns clone of the detector intensity map with detector resolution applied. +"; + +%feature("docstring") Simulation2D::getIntensityData "Histogram2D * Simulation2D::getIntensityData(AxesUnits units_type=AxesUnits::DEFAULT) const + +Returns histogram representing intensity map in requested axes units. +"; + +%feature("docstring") Simulation2D::removeMasks "void Simulation2D::removeMasks() + +removes all masks from the detector +"; + +%feature("docstring") Simulation2D::addMask "void Simulation2D::addMask(const IShape2D &shape, bool mask_value=true) + +Adds mask of given shape to the stack of detector masks. The mask value 'true' means that the channel will be excluded from the simulation. The mask which is added last has priority. + +Parameters: +----------- + +shape: +The shape of mask ( Rectangle, Polygon, Line, Ellipse) + +mask_value: +The value of mask +"; + +%feature("docstring") Simulation2D::maskAll "void Simulation2D::maskAll() + +Put the mask for all detector channels (i.e. exclude whole detector from the analysis) +"; + +%feature("docstring") Simulation2D::setRegionOfInterest "void Simulation2D::setRegionOfInterest(double xlow, double ylow, double xup, double yup) + +Sets rectangular region of interest with lower left and upper right corners defined. +"; + // File: classSimulationArea.xml %feature("docstring") SimulationArea " @@ -13570,7 +13621,7 @@ C++ includes: SimulationArea.h returns true if given iterator index correspond to masked detector channel "; -%feature("docstring") SimulationArea::totalSize "size_t SimulationArea::totalSize() const +%feature("docstring") SimulationArea::totalSize "size_t SimulationArea::totalSize() const "; %feature("docstring") SimulationArea::roiIndex "size_t SimulationArea::roiIndex(size_t index) const @@ -13595,16 +13646,16 @@ C++ includes: SimulationAreaIterator.h %feature("docstring") SimulationAreaIterator::SimulationAreaIterator "SimulationAreaIterator::SimulationAreaIterator(const SimulationArea *area, size_t start_at_index) "; -%feature("docstring") SimulationAreaIterator::index "size_t SimulationAreaIterator::index() const +%feature("docstring") SimulationAreaIterator::index "size_t SimulationAreaIterator::index() const "; -%feature("docstring") SimulationAreaIterator::elementIndex "size_t SimulationAreaIterator::elementIndex() const +%feature("docstring") SimulationAreaIterator::elementIndex "size_t SimulationAreaIterator::elementIndex() const "; -%feature("docstring") SimulationAreaIterator::roiIndex "size_t SimulationAreaIterator::roiIndex() const +%feature("docstring") SimulationAreaIterator::roiIndex "size_t SimulationAreaIterator::roiIndex() const "; -%feature("docstring") SimulationAreaIterator::detectorIndex "size_t SimulationAreaIterator::detectorIndex() const +%feature("docstring") SimulationAreaIterator::detectorIndex "size_t SimulationAreaIterator::detectorIndex() const "; @@ -13648,19 +13699,19 @@ Sets the polarization analyzer operator (in spin basis along z-axis) Returns assigned PolarizationHandler. "; -%feature("docstring") SimulationElement::getWavelength "double SimulationElement::getWavelength() const +%feature("docstring") SimulationElement::getWavelength "double SimulationElement::getWavelength() const "; -%feature("docstring") SimulationElement::getAlphaI "double SimulationElement::getAlphaI() const +%feature("docstring") SimulationElement::getAlphaI "double SimulationElement::getAlphaI() const "; -%feature("docstring") SimulationElement::getPhiI "double SimulationElement::getPhiI() const +%feature("docstring") SimulationElement::getPhiI "double SimulationElement::getPhiI() const "; -%feature("docstring") SimulationElement::getAlphaMean "double SimulationElement::getAlphaMean() const +%feature("docstring") SimulationElement::getAlphaMean "double SimulationElement::getAlphaMean() const "; -%feature("docstring") SimulationElement::getPhiMean "double SimulationElement::getPhiMean() const +%feature("docstring") SimulationElement::getPhiMean "double SimulationElement::getPhiMean() const "; %feature("docstring") SimulationElement::setIntensity "void SimulationElement::setIntensity(double intensity) @@ -13669,16 +13720,16 @@ Returns assigned PolarizationHandler. %feature("docstring") SimulationElement::addIntensity "void SimulationElement::addIntensity(double intensity) "; -%feature("docstring") SimulationElement::getIntensity "double SimulationElement::getIntensity() const +%feature("docstring") SimulationElement::getIntensity "double SimulationElement::getIntensity() const "; -%feature("docstring") SimulationElement::getKi "kvector_t SimulationElement::getKi() const +%feature("docstring") SimulationElement::getKi "kvector_t SimulationElement::getKi() const "; -%feature("docstring") SimulationElement::getMeanKf "kvector_t SimulationElement::getMeanKf() const +%feature("docstring") SimulationElement::getMeanKf "kvector_t SimulationElement::getMeanKf() const "; -%feature("docstring") SimulationElement::getMeanQ "kvector_t SimulationElement::getMeanQ() const +%feature("docstring") SimulationElement::getMeanQ "kvector_t SimulationElement::getMeanQ() const "; %feature("docstring") SimulationElement::getQ "kvector_t SimulationElement::getQ(double x, double y) const @@ -13686,16 +13737,16 @@ Returns assigned PolarizationHandler. Returns scattering vector Q, with Kf determined from in-pixel coordinates x,y. In-pixel coordinates take values from 0 to 1. "; -%feature("docstring") SimulationElement::getIntegrationFactor "double SimulationElement::getIntegrationFactor(double x, double y) const +%feature("docstring") SimulationElement::getIntegrationFactor "double SimulationElement::getIntegrationFactor(double x, double y) const "; -%feature("docstring") SimulationElement::getSolidAngle "double SimulationElement::getSolidAngle() const +%feature("docstring") SimulationElement::getSolidAngle "double SimulationElement::getSolidAngle() const "; -%feature("docstring") SimulationElement::getAlpha "double SimulationElement::getAlpha(double x, double y) const +%feature("docstring") SimulationElement::getAlpha "double SimulationElement::getAlpha(double x, double y) const "; -%feature("docstring") SimulationElement::getPhi "double SimulationElement::getPhi(double x, double y) const +%feature("docstring") SimulationElement::getPhi "double SimulationElement::getPhi(double x, double y) const "; %feature("docstring") SimulationElement::setSpecular "void SimulationElement::setSpecular(bool is_specular) @@ -13734,10 +13785,10 @@ C++ includes: SimulationOptions.h %feature("docstring") SimulationOptions::SimulationOptions "SimulationOptions::SimulationOptions() "; -%feature("docstring") SimulationOptions::isIntegrate "bool SimulationOptions::isIntegrate() const +%feature("docstring") SimulationOptions::isIntegrate "bool SimulationOptions::isIntegrate() const "; -%feature("docstring") SimulationOptions::getMcPoints "size_t SimulationOptions::getMcPoints() const +%feature("docstring") SimulationOptions::getMcPoints "size_t SimulationOptions::getMcPoints() const "; %feature("docstring") SimulationOptions::setMonteCarloIntegration "void SimulationOptions::setMonteCarloIntegration(bool flag=true, size_t mc_points=50) @@ -13759,7 +13810,7 @@ Number of points for MonteCarlo integrator Sets number of threads to use during the simulation (0 - take the default value from the hardware) "; -%feature("docstring") SimulationOptions::getNumberOfThreads "unsigned SimulationOptions::getNumberOfThreads() const +%feature("docstring") SimulationOptions::getNumberOfThreads "unsigned SimulationOptions::getNumberOfThreads() const "; %feature("docstring") SimulationOptions::setNumberOfBatches "void SimulationOptions::setNumberOfBatches(int nbatches) @@ -13767,10 +13818,10 @@ Sets number of threads to use during the simulation (0 - take the default value Sets number of batches to split. "; -%feature("docstring") SimulationOptions::getNumberOfBatches "unsigned SimulationOptions::getNumberOfBatches() const +%feature("docstring") SimulationOptions::getNumberOfBatches "unsigned SimulationOptions::getNumberOfBatches() const "; -%feature("docstring") SimulationOptions::getCurrentBatch "unsigned SimulationOptions::getCurrentBatch() const +%feature("docstring") SimulationOptions::getCurrentBatch "unsigned SimulationOptions::getCurrentBatch() const "; %feature("docstring") SimulationOptions::setThreadInfo "void SimulationOptions::setThreadInfo(const ThreadInfo &thread_info) @@ -13778,19 +13829,46 @@ Sets number of batches to split. Sets the batch and thread information to be used. "; -%feature("docstring") SimulationOptions::getHardwareConcurrency "unsigned SimulationOptions::getHardwareConcurrency() const +%feature("docstring") SimulationOptions::getHardwareConcurrency "unsigned SimulationOptions::getHardwareConcurrency() const "; %feature("docstring") SimulationOptions::setIncludeSpecular "void SimulationOptions::setIncludeSpecular(bool include_specular) "; -%feature("docstring") SimulationOptions::includeSpecular "bool SimulationOptions::includeSpecular() const +%feature("docstring") SimulationOptions::includeSpecular "bool SimulationOptions::includeSpecular() const "; %feature("docstring") SimulationOptions::setUseAvgMaterials "void SimulationOptions::setUseAvgMaterials(bool use_avg_materials) "; -%feature("docstring") SimulationOptions::useAvgMaterials "bool SimulationOptions::useAvgMaterials() const +%feature("docstring") SimulationOptions::useAvgMaterials "bool SimulationOptions::useAvgMaterials() const +"; + + +// File: classSimulationResult.xml +%feature("docstring") SimulationResult " + +Wrapper around OutputData<double> that also provides unit conversions. + +C++ includes: SimulationResult.h +"; + +%feature("docstring") SimulationResult::SimulationResult "SimulationResult::SimulationResult()=default +"; + +%feature("docstring") SimulationResult::SimulationResult "SimulationResult::SimulationResult(const OutputData< double > &data, const IUnitConverter &unit_converter) +"; + +%feature("docstring") SimulationResult::SimulationResult "SimulationResult::SimulationResult(const SimulationResult &other) +"; + +%feature("docstring") SimulationResult::SimulationResult "SimulationResult::SimulationResult(SimulationResult &&other) +"; + +%feature("docstring") SimulationResult::data "OutputData< double > * SimulationResult::data(AxesUnits units_type=AxesUnits::DEFAULT) const +"; + +%feature("docstring") SimulationResult::histogram2d "Histogram2D * SimulationResult::histogram2d(AxesUnits units_type=AxesUnits::DEFAULT) const "; @@ -13836,7 +13914,7 @@ C++ includes: SizeDistributionModelsBuilder.h %feature("docstring") SizeDistributionDAModelBuilder::SizeDistributionDAModelBuilder "SizeDistributionDAModelBuilder::SizeDistributionDAModelBuilder() "; -%feature("docstring") SizeDistributionDAModelBuilder::buildSample "MultiLayer * SizeDistributionDAModelBuilder::buildSample() const +%feature("docstring") SizeDistributionDAModelBuilder::buildSample "MultiLayer * SizeDistributionDAModelBuilder::buildSample() const "; @@ -13851,7 +13929,7 @@ C++ includes: SizeDistributionModelsBuilder.h %feature("docstring") SizeDistributionLMAModelBuilder::SizeDistributionLMAModelBuilder "SizeDistributionLMAModelBuilder::SizeDistributionLMAModelBuilder() "; -%feature("docstring") SizeDistributionLMAModelBuilder::buildSample "MultiLayer * SizeDistributionLMAModelBuilder::buildSample() const +%feature("docstring") SizeDistributionLMAModelBuilder::buildSample "MultiLayer * SizeDistributionLMAModelBuilder::buildSample() const "; @@ -13866,7 +13944,7 @@ C++ includes: SizeDistributionModelsBuilder.h %feature("docstring") SizeDistributionSSCAModelBuilder::SizeDistributionSSCAModelBuilder "SizeDistributionSSCAModelBuilder::SizeDistributionSSCAModelBuilder() "; -%feature("docstring") SizeDistributionSSCAModelBuilder::buildSample "MultiLayer * SizeDistributionSSCAModelBuilder::buildSample() const +%feature("docstring") SizeDistributionSSCAModelBuilder::buildSample "MultiLayer * SizeDistributionSSCAModelBuilder::buildSample() const "; @@ -13881,7 +13959,7 @@ C++ includes: SlicedParticleBuilder.h %feature("docstring") SlicedCompositionBuilder::SlicedCompositionBuilder "SlicedCompositionBuilder::SlicedCompositionBuilder() "; -%feature("docstring") SlicedCompositionBuilder::buildSample "MultiLayer * SlicedCompositionBuilder::buildSample() const +%feature("docstring") SlicedCompositionBuilder::buildSample "MultiLayer * SlicedCompositionBuilder::buildSample() const "; @@ -13902,10 +13980,10 @@ C++ includes: SlicedFormFactorList.h %feature("docstring") SlicedFormFactorList::~SlicedFormFactorList "SlicedFormFactorList::~SlicedFormFactorList()=default "; -%feature("docstring") SlicedFormFactorList::size "size_t SlicedFormFactorList::size() const +%feature("docstring") SlicedFormFactorList::size "size_t SlicedFormFactorList::size() const "; -%feature("docstring") SlicedFormFactorList::regionMap "std::map< size_t, std::vector< HomogeneousRegion > > SlicedFormFactorList::regionMap() const +%feature("docstring") SlicedFormFactorList::regionMap "std::map< size_t, std::vector< HomogeneousRegion > > SlicedFormFactorList::regionMap() const "; @@ -13955,7 +14033,7 @@ C++ includes: SpecularComputationTerm.h %feature("docstring") SpecularComputationTerm::SpecularComputationTerm "SpecularComputationTerm::SpecularComputationTerm(const MultiLayer *p_multi_layer, const IFresnelMap *p_fresnel_map) "; -%feature("docstring") SpecularComputationTerm::eval "void SpecularComputationTerm::eval(ProgressHandler *progress, const SpecularElementIter &begin_it, const SpecularElementIter &end_it) const +%feature("docstring") SpecularComputationTerm::eval "void SpecularComputationTerm::eval(ProgressHandler *progress, const SpecularElementIter &begin_it, const SpecularElementIter &end_it) const "; @@ -13976,7 +14054,7 @@ C++ includes: SpecularData.h %feature("docstring") SpecularData::SpecularData "SpecularData::SpecularData(ScalarVector coefficients) "; -%feature("docstring") SpecularData::isInited "bool SpecularData::isInited() const +%feature("docstring") SpecularData::isInited "bool SpecularData::isInited() const "; @@ -14084,7 +14162,7 @@ C++ includes: SpecularSimulation.h Put into a clean state for running a simulation. "; -%feature("docstring") SpecularSimulation::accept "void SpecularSimulation::accept(INodeVisitor *visitor) const override final +%feature("docstring") SpecularSimulation::accept "void SpecularSimulation::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. "; @@ -14115,21 +14193,6 @@ Returns detector count values in the form of OutputData<double>. Detector count Returns detector signal ( $ \\\\propto |R|^2$) in the form of 1D Histogram. "; -%feature("docstring") SpecularSimulation::getScalarR "std::vector< complex_t > SpecularSimulation::getScalarR(size_t i_layer) const - -Returns vector of reflection coefficients ( $R$) for all alpha_i angles for given layer index. -"; - -%feature("docstring") SpecularSimulation::getScalarT "std::vector< complex_t > SpecularSimulation::getScalarT(size_t i_layer) const - -Returns vector of transmission coefficients for all alpha_i angles for given layer index. -"; - -%feature("docstring") SpecularSimulation::getScalarKz "std::vector< complex_t > SpecularSimulation::getScalarKz(size_t i_layer) const - -Returns vector of Kz coefficients for all alpha_i angles for given layer index. -"; - // File: classSpecularSimulationElement.xml %feature("docstring") SpecularSimulationElement " @@ -14161,13 +14224,13 @@ Assigns PolarizationHandler. Returns assigned PolarizationHandler. "; -%feature("docstring") SpecularSimulationElement::getWavelength "double SpecularSimulationElement::getWavelength() const +%feature("docstring") SpecularSimulationElement::getWavelength "double SpecularSimulationElement::getWavelength() const "; -%feature("docstring") SpecularSimulationElement::getAlphaI "double SpecularSimulationElement::getAlphaI() const +%feature("docstring") SpecularSimulationElement::getAlphaI "double SpecularSimulationElement::getAlphaI() const "; -%feature("docstring") SpecularSimulationElement::getKi "kvector_t SpecularSimulationElement::getKi() const +%feature("docstring") SpecularSimulationElement::getKi "kvector_t SpecularSimulationElement::getKi() const "; %feature("docstring") SpecularSimulationElement::setIntensity "void SpecularSimulationElement::setIntensity(double intensity) @@ -14176,7 +14239,7 @@ Returns assigned PolarizationHandler. %feature("docstring") SpecularSimulationElement::addIntensity "void SpecularSimulationElement::addIntensity(double intensity) "; -%feature("docstring") SpecularSimulationElement::getIntensity "double SpecularSimulationElement::getIntensity() const +%feature("docstring") SpecularSimulationElement::getIntensity "double SpecularSimulationElement::getIntensity() const "; %feature("docstring") SpecularSimulationElement::specularData "const SpecularData& SpecularSimulationElement::specularData() const @@ -14201,7 +14264,25 @@ C++ includes: ParticleDistributionsBuilder.h %feature("docstring") SpheresWithLimitsDistributionBuilder::SpheresWithLimitsDistributionBuilder "SpheresWithLimitsDistributionBuilder::SpheresWithLimitsDistributionBuilder() "; -%feature("docstring") SpheresWithLimitsDistributionBuilder::buildSample "MultiLayer * SpheresWithLimitsDistributionBuilder::buildSample() const +%feature("docstring") SpheresWithLimitsDistributionBuilder::buildSample "MultiLayer * SpheresWithLimitsDistributionBuilder::buildSample() const +"; + + +// File: classSphericalConverter.xml +%feature("docstring") SphericalConverter " + +IUnitConverter class that handles the unit translations for spherical detectors Its default units are radians for both axes + +C++ includes: UnitConverters.h +"; + +%feature("docstring") SphericalConverter::SphericalConverter "SphericalConverter::SphericalConverter(const SphericalDetector &detector, const Beam &beam) +"; + +%feature("docstring") SphericalConverter::~SphericalConverter "SphericalConverter::~SphericalConverter() +"; + +%feature("docstring") SphericalConverter::clone "SphericalConverter * SphericalConverter::clone() const override "; @@ -14418,7 +14499,7 @@ C++ includes: ISquaredFunction.h %feature("docstring") SquareLattice::SquareLattice "SquareLattice::SquareLattice(double length, double rotation_angle=0.0) "; -%feature("docstring") SquareLattice::clone "SquareLattice * SquareLattice::clone() const +%feature("docstring") SquareLattice::clone "SquareLattice * SquareLattice::clone() const "; %feature("docstring") SquareLattice::accept "void SquareLattice::accept(INodeVisitor *visitor) const final @@ -14426,16 +14507,16 @@ C++ includes: ISquaredFunction.h Calls the INodeVisitor's visit method. "; -%feature("docstring") SquareLattice::length1 "virtual double SquareLattice::length1() const +%feature("docstring") SquareLattice::length1 "virtual double SquareLattice::length1() const "; -%feature("docstring") SquareLattice::length2 "virtual double SquareLattice::length2() const +%feature("docstring") SquareLattice::length2 "virtual double SquareLattice::length2() const "; -%feature("docstring") SquareLattice::latticeAngle "double SquareLattice::latticeAngle() const +%feature("docstring") SquareLattice::latticeAngle "double SquareLattice::latticeAngle() const "; -%feature("docstring") SquareLattice::unitCellArea "double SquareLattice::unitCellArea() const +%feature("docstring") SquareLattice::unitCellArea "double SquareLattice::unitCellArea() const "; @@ -14450,7 +14531,7 @@ C++ includes: TwoDimLatticeBuilder.h %feature("docstring") SquareLatticeBuilder::SquareLatticeBuilder "SquareLatticeBuilder::SquareLatticeBuilder() "; -%feature("docstring") SquareLatticeBuilder::buildSample "MultiLayer * SquareLatticeBuilder::buildSample() const +%feature("docstring") SquareLatticeBuilder::buildSample "MultiLayer * SquareLatticeBuilder::buildSample() const "; @@ -14468,19 +14549,19 @@ C++ includes: SSCAHelper.h %feature("docstring") SSCAHelper::init "void SSCAHelper::init(const SafePointerVector< FormFactorCoherentSum > &ff_wrappers) "; -%feature("docstring") SSCAHelper::getCharacteristicSizeCoupling "complex_t SSCAHelper::getCharacteristicSizeCoupling(double qp, const SafePointerVector< FormFactorCoherentSum > &ff_wrappers) const +%feature("docstring") SSCAHelper::getCharacteristicSizeCoupling "complex_t SSCAHelper::getCharacteristicSizeCoupling(double qp, const SafePointerVector< FormFactorCoherentSum > &ff_wrappers) const "; -%feature("docstring") SSCAHelper::getCharacteristicDistribution "complex_t SSCAHelper::getCharacteristicDistribution(double qp, const IInterferenceFunction *p_iff) const +%feature("docstring") SSCAHelper::getCharacteristicDistribution "complex_t SSCAHelper::getCharacteristicDistribution(double qp, const IInterferenceFunction *p_iff) const "; -%feature("docstring") SSCAHelper::calculatePositionOffsetPhase "complex_t SSCAHelper::calculatePositionOffsetPhase(double qp, double radial_extension) const +%feature("docstring") SSCAHelper::calculatePositionOffsetPhase "complex_t SSCAHelper::calculatePositionOffsetPhase(double qp, double radial_extension) const "; -%feature("docstring") SSCAHelper::getMeanFormfactorNorm "complex_t SSCAHelper::getMeanFormfactorNorm(double qp, const std::vector< complex_t > &precomputed_ff, const SafePointerVector< FormFactorCoherentSum > &ff_wrappers) const +%feature("docstring") SSCAHelper::getMeanFormfactorNorm "complex_t SSCAHelper::getMeanFormfactorNorm(double qp, const std::vector< complex_t > &precomputed_ff, const SafePointerVector< FormFactorCoherentSum > &ff_wrappers) const "; -%feature("docstring") SSCAHelper::getMeanFormfactors "void SSCAHelper::getMeanFormfactors(double qp, Eigen::Matrix2cd &ff_orig, Eigen::Matrix2cd &ff_conj, const IInterferenceFunctionStrategy::matrixFFVector_t &precomputed_ff, const SafePointerVector< FormFactorCoherentSum > &ff_wrappers) const +%feature("docstring") SSCAHelper::getMeanFormfactors "void SSCAHelper::getMeanFormfactors(double qp, Eigen::Matrix2cd &ff_orig, Eigen::Matrix2cd &ff_conj, const IInterferenceFunctionStrategy::matrixFFVector_t &precomputed_ff, const SafePointerVector< FormFactorCoherentSum > &ff_wrappers) const "; @@ -14522,16 +14603,16 @@ C++ includes: TRange.h %feature("docstring") TRange::~TRange "virtual TRange< T >::~TRange() "; -%feature("docstring") TRange::getLowerBound "T TRange< T >::getLowerBound() const +%feature("docstring") TRange::getLowerBound "T TRange< T >::getLowerBound() const "; -%feature("docstring") TRange::getUpperBound "T TRange< T >::getUpperBound() const +%feature("docstring") TRange::getUpperBound "T TRange< T >::getUpperBound() const "; -%feature("docstring") TRange::getDifference "T TRange< T >::getDifference() const +%feature("docstring") TRange::getDifference "T TRange< T >::getDifference() const "; -%feature("docstring") TRange::inRange "bool TRange< T >::inRange(T value) const +%feature("docstring") TRange::inRange "bool TRange< T >::inRange(T value) const "; @@ -14608,16 +14689,16 @@ Retrieve the rotation type (general, around x, y or z-axis) Determine if the transformation is trivial (identity) "; -%feature("docstring") Transform3D::print "void Transform3D::print(std::ostream &ostr) const +%feature("docstring") Transform3D::print "void Transform3D::print(std::ostream &ostr) const "; -%feature("docstring") Transform3D::isXRotation "bool Transform3D::isXRotation() const +%feature("docstring") Transform3D::isXRotation "bool Transform3D::isXRotation() const "; -%feature("docstring") Transform3D::isYRotation "bool Transform3D::isYRotation() const +%feature("docstring") Transform3D::isYRotation "bool Transform3D::isYRotation() const "; -%feature("docstring") Transform3D::isZRotation "bool Transform3D::isZRotation() const +%feature("docstring") Transform3D::isZRotation "bool Transform3D::isZRotation() const "; @@ -14632,7 +14713,7 @@ C++ includes: TransformationsBuilder.h %feature("docstring") TransformBoxBuilder::TransformBoxBuilder "TransformBoxBuilder::TransformBoxBuilder() "; -%feature("docstring") TransformBoxBuilder::buildSample "MultiLayer * TransformBoxBuilder::buildSample() const +%feature("docstring") TransformBoxBuilder::buildSample "MultiLayer * TransformBoxBuilder::buildSample() const "; @@ -14657,7 +14738,7 @@ C++ includes: RipplesBuilder.h %feature("docstring") TriangularRippleBuilder::TriangularRippleBuilder "TriangularRippleBuilder::TriangularRippleBuilder() "; -%feature("docstring") TriangularRippleBuilder::buildSample "MultiLayer * TriangularRippleBuilder::buildSample() const +%feature("docstring") TriangularRippleBuilder::buildSample "MultiLayer * TriangularRippleBuilder::buildSample() const "; @@ -14692,7 +14773,7 @@ C++ includes: TRange.h %feature("docstring") TSampledRange::TSampledRange "TSampledRange< T >::TSampledRange(size_t n_samples, T lowerBound, T upperBound) "; -%feature("docstring") TSampledRange::getNSamples "size_t TSampledRange< T >::getNSamples() const +%feature("docstring") TSampledRange::getNSamples "size_t TSampledRange< T >::getNSamples() const "; @@ -14707,7 +14788,7 @@ C++ includes: TwoLayerRoughnessBuilder.h %feature("docstring") TwoLayerRoughnessBuilder::TwoLayerRoughnessBuilder "TwoLayerRoughnessBuilder::TwoLayerRoughnessBuilder() "; -%feature("docstring") TwoLayerRoughnessBuilder::buildSample "MultiLayer * TwoLayerRoughnessBuilder::buildSample() const +%feature("docstring") TwoLayerRoughnessBuilder::buildSample "MultiLayer * TwoLayerRoughnessBuilder::buildSample() const "; @@ -14722,7 +14803,7 @@ C++ includes: ParticleDistributionsBuilder.h %feature("docstring") TwoTypesCylindersDistributionBuilder::TwoTypesCylindersDistributionBuilder "TwoTypesCylindersDistributionBuilder::TwoTypesCylindersDistributionBuilder() "; -%feature("docstring") TwoTypesCylindersDistributionBuilder::buildSample "MultiLayer * TwoTypesCylindersDistributionBuilder::buildSample() const +%feature("docstring") TwoTypesCylindersDistributionBuilder::buildSample "MultiLayer * TwoTypesCylindersDistributionBuilder::buildSample() const "; @@ -14741,6 +14822,36 @@ C++ includes: Unit.h "; +// File: classUnitConverterSimple.xml +%feature("docstring") UnitConverterSimple " + +Interface for objects that provide axis translations to different units for IDetector objects + +C++ includes: UnitConverters.h +"; + +%feature("docstring") UnitConverterSimple::UnitConverterSimple "UnitConverterSimple::UnitConverterSimple(const Beam &beam) +"; + +%feature("docstring") UnitConverterSimple::~UnitConverterSimple "virtual UnitConverterSimple::~UnitConverterSimple()=default +"; + +%feature("docstring") UnitConverterSimple::dimension "size_t UnitConverterSimple::dimension() const override +"; + +%feature("docstring") UnitConverterSimple::calculateMin "double UnitConverterSimple::calculateMin(size_t i_axis, AxesUnits units_type) const override +"; + +%feature("docstring") UnitConverterSimple::calculateMax "double UnitConverterSimple::calculateMax(size_t i_axis, AxesUnits units_type) const override +"; + +%feature("docstring") UnitConverterSimple::axisSize "size_t UnitConverterSimple::axisSize(size_t i_axis) const override +"; + +%feature("docstring") UnitConverterSimple::axisName "std::string UnitConverterSimple::axisName(size_t i_axis, AxesUnits units_type=AxesUnits::DEFAULT) const override +"; + + // File: classExceptions_1_1UnknownClassRegistrationException.xml %feature("docstring") Exceptions::UnknownClassRegistrationException ""; @@ -14801,7 +14912,7 @@ Returns value of first point of axis. Returns value of last point of axis. "; -%feature("docstring") VariableBinAxis::getBinCenter "double VariableBinAxis::getBinCenter(size_t index) const +%feature("docstring") VariableBinAxis::getBinCenter "double VariableBinAxis::getBinCenter(size_t index) const "; %feature("docstring") VariableBinAxis::findClosestIndex "size_t VariableBinAxis::findClosestIndex(double value) const @@ -14809,10 +14920,10 @@ Returns value of last point of axis. find bin index which is best match for given value "; -%feature("docstring") VariableBinAxis::getBinCenters "std::vector< double > VariableBinAxis::getBinCenters() const +%feature("docstring") VariableBinAxis::getBinCenters "std::vector< double > VariableBinAxis::getBinCenters() const "; -%feature("docstring") VariableBinAxis::getBinBoundaries "std::vector<double> VariableBinAxis::getBinBoundaries() const +%feature("docstring") VariableBinAxis::getBinBoundaries "std::vector<double> VariableBinAxis::getBinBoundaries() const "; %feature("docstring") VariableBinAxis::createClippedAxis "VariableBinAxis * VariableBinAxis::createClippedAxis(double left, double right) const @@ -14838,7 +14949,7 @@ x: The value at which it crosses x-axes "; -%feature("docstring") VerticalLine::clone "VerticalLine* VerticalLine::clone() const +%feature("docstring") VerticalLine::clone "VerticalLine* VerticalLine::clone() const "; %feature("docstring") VerticalLine::contains "bool VerticalLine::contains(double x, double y) const @@ -14851,7 +14962,7 @@ Returns true if point with given coordinates is inside or on border of the shape Returns true if area defined by two bins is inside or on border of polygon (more precisely, if mid point of two bins satisfy this condition). "; -%feature("docstring") VerticalLine::getXpos "double VerticalLine::getXpos() const +%feature("docstring") VerticalLine::getXpos "double VerticalLine::getXpos() const "; @@ -14869,19 +14980,19 @@ C++ includes: WavevectorInfo.h %feature("docstring") WavevectorInfo::WavevectorInfo "WavevectorInfo::WavevectorInfo(kvector_t ki, kvector_t kf, double wavelength) "; -%feature("docstring") WavevectorInfo::transformed "WavevectorInfo WavevectorInfo::transformed(const Transform3D &transform) const +%feature("docstring") WavevectorInfo::transformed "WavevectorInfo WavevectorInfo::transformed(const Transform3D &transform) const "; -%feature("docstring") WavevectorInfo::getKi "cvector_t WavevectorInfo::getKi() const +%feature("docstring") WavevectorInfo::getKi "cvector_t WavevectorInfo::getKi() const "; -%feature("docstring") WavevectorInfo::getKf "cvector_t WavevectorInfo::getKf() const +%feature("docstring") WavevectorInfo::getKf "cvector_t WavevectorInfo::getKf() const "; -%feature("docstring") WavevectorInfo::getQ "cvector_t WavevectorInfo::getQ() const +%feature("docstring") WavevectorInfo::getQ "cvector_t WavevectorInfo::getQ() const "; -%feature("docstring") WavevectorInfo::getWavelength "double WavevectorInfo::getWavelength() const +%feature("docstring") WavevectorInfo::getWavelength "double WavevectorInfo::getWavelength() const "; @@ -14905,13 +15016,13 @@ C++ includes: ZLimits.h %feature("docstring") ZLimits::ZLimits "ZLimits::ZLimits(OneSidedLimit lower_limit, OneSidedLimit upper_limit) "; -%feature("docstring") ZLimits::isFinite "bool ZLimits::isFinite() const +%feature("docstring") ZLimits::isFinite "bool ZLimits::isFinite() const "; -%feature("docstring") ZLimits::lowerLimit "OneSidedLimit ZLimits::lowerLimit() const +%feature("docstring") ZLimits::lowerLimit "OneSidedLimit ZLimits::lowerLimit() const "; -%feature("docstring") ZLimits::upperLimit "OneSidedLimit ZLimits::upperLimit() const +%feature("docstring") ZLimits::upperLimit "OneSidedLimit ZLimits::upperLimit() const "; @@ -14927,67 +15038,64 @@ C++ includes: ZLimits.h // File: namespace_0D23.xml -// File: namespace_0D230.xml - +// File: namespace_0D275.xml -// File: namespace_0D273.xml +// File: namespace_0D308.xml -// File: namespace_0D302.xml +// File: namespace_0D312.xml -// File: namespace_0D306.xml +// File: namespace_0D314.xml -// File: namespace_0D308.xml +// File: namespace_0D316.xml -// File: namespace_0D310.xml +// File: namespace_0D324.xml -// File: namespace_0D318.xml +// File: namespace_0D339.xml -// File: namespace_0D333.xml +// File: namespace_0D347.xml -// File: namespace_0D341.xml +// File: namespace_0D353.xml -// File: namespace_0D347.xml +// File: namespace_0D356.xml -// File: namespace_0D350.xml +// File: namespace_0D358.xml -// File: namespace_0D352.xml +// File: namespace_0D379.xml -// File: namespace_0D373.xml +// File: namespace_0D388.xml -// File: namespace_0D382.xml +// File: namespace_0D421.xml -// File: namespace_0D415.xml +// File: namespace_0D428.xml -// File: namespace_0D422.xml +// File: namespace_0D470.xml -// File: namespace_0D460.xml +// File: namespace_0D472.xml -// File: namespace_0D464.xml +// File: namespace_0D474.xml -// File: namespace_0D468.xml +// File: namespace_0D548.xml -// File: namespace_0D542.xml - -// File: namespace_0D564.xml +// File: namespace_0D570.xml // File: namespace_0D79.xml @@ -15003,6 +15111,26 @@ Returns shape nrows, ncols of 2D array. "; +// File: namespaceAxisNames.xml +%feature("docstring") AxisNames::InitSphericalAxis0 "std::map< AxesUnits, std::string > AxisNames::InitSphericalAxis0() +"; + +%feature("docstring") AxisNames::InitSphericalAxis1 "std::map< AxesUnits, std::string > AxisNames::InitSphericalAxis1() +"; + +%feature("docstring") AxisNames::InitRectangularAxis0 "std::map< AxesUnits, std::string > AxisNames::InitRectangularAxis0() +"; + +%feature("docstring") AxisNames::InitRectangularAxis1 "std::map< AxesUnits, std::string > AxisNames::InitRectangularAxis1() +"; + +%feature("docstring") AxisNames::InitOffSpecAxis0 "std::map< AxesUnits, std::string > AxisNames::InitOffSpecAxis0() +"; + +%feature("docstring") AxisNames::InitOffSpecAxis1 "std::map< AxesUnits, std::string > AxisNames::InitOffSpecAxis1() +"; + + // File: namespaceboost_1_1geometry.xml @@ -15112,16 +15240,6 @@ Returns string representation of axes dimension in the form \"(nx,ny)\". Creates real data containing original user data clipped to the ROI area of the detector. If put_masked_areas_to_zero==true: resulting data will have 0.0 in all masked areas If put_masked_areas_to_zero==false: resulting data will be only cropped, masked areas will still contain intensities TODO: what users will like more (this appears on FitSuitePlotObserver)? "; -%feature("docstring") DetectorFunctions::detectorUnits "AxesUnits DetectorFunctions::detectorUnits(const std::string &unitName) - -Translates the name of detector axes units into corresponding enum. -"; - -%feature("docstring") DetectorFunctions::detectorUnitsName "std::string DetectorFunctions::detectorUnitsName(AxesUnits units) - -Translate detector axes units enum into string. -"; - // File: namespaceExceptions.xml %feature("docstring") Exceptions::LogExceptionMessage "void Exceptions::LogExceptionMessage(const std::string &) @@ -15268,7 +15386,7 @@ Function for calculating the reduced potential, used for obtaining the Fresnel c Utility to compute magnetization correction for reduced potential and scattering length density. "; -%feature("docstring") MaterialUtils::checkMaterialTypes "MATERIAL_TYPES MaterialUtils::checkMaterialTypes(const std::vector< const Material *> &materials) +%feature("docstring") MaterialUtils::checkMaterialTypes "MATERIAL_TYPES MaterialUtils::checkMaterialTypes(const std::vector< const Material * > &materials) Checks if all non-default materials in materials are of the same type and returns this type. If several types of materials are involved, InvalidMaterialType identifier is returned. "; @@ -16415,6 +16533,12 @@ global helper function for comparison of axes // File: ArrayUtils_8h.xml +// File: AxisNames_8cpp.xml + + +// File: AxisNames_8h.xml + + // File: ChiSquaredModule_8cpp.xml @@ -16610,6 +16734,12 @@ make Swappable // File: SimulationAreaIterator_8h.xml +// File: SimulationResult_8cpp.xml + + +// File: SimulationResult_8h.xml + + // File: SpecularDetector1D_8cpp.xml @@ -16622,6 +16752,12 @@ make Swappable // File: SphericalDetector_8h.xml +// File: UnitConverters_8cpp.xml + + +// File: UnitConverters_8h.xml + + // File: ISelectionRule_8h.xml @@ -17731,14 +17867,14 @@ Template function to create an integrator object. // File: BasicVector3D_8cpp.xml -%feature("docstring") vecOfLambdaAlphaPhi "BasicVector3D<double> vecOfLambdaAlphaPhi(const double _lambda, const double _alpha, const double _phi) +%feature("docstring") vecOfLambdaAlphaPhi "BasicVector3D<double> vecOfLambdaAlphaPhi(double _lambda, double _alpha, double _phi) Creates a vector<double> as a wavevector with given wavelength and angles. Specifically needed for grazing-incidence scattering. "; // File: BasicVector3D_8h.xml -%feature("docstring") vecOfLambdaAlphaPhi "BA_CORE_API_ BasicVector3D<double> vecOfLambdaAlphaPhi(const double _lambda, const double _alpha, const double _phi) +%feature("docstring") vecOfLambdaAlphaPhi "BA_CORE_API_ BasicVector3D<double> vecOfLambdaAlphaPhi(double _lambda, double _alpha, double _phi) Creates a vector<double> as a wavevector with given wavelength and angles. Specifically needed for grazing-incidence scattering. "; diff --git a/auto/Wrap/doxygen_fit.i b/auto/Wrap/doxygen_fit.i index 8348c392ebf..5f693a90337 100644 --- a/auto/Wrap/doxygen_fit.i +++ b/auto/Wrap/doxygen_fit.i @@ -12,31 +12,31 @@ C++ includes: AttLimits.h %feature("docstring") AttLimits::AttLimits "AttLimits::AttLimits() "; -%feature("docstring") AttLimits::isFixed "bool AttLimits::isFixed() const +%feature("docstring") AttLimits::isFixed "bool AttLimits::isFixed() const "; -%feature("docstring") AttLimits::isLimited "bool AttLimits::isLimited() const +%feature("docstring") AttLimits::isLimited "bool AttLimits::isLimited() const "; -%feature("docstring") AttLimits::isUpperLimited "bool AttLimits::isUpperLimited() const +%feature("docstring") AttLimits::isUpperLimited "bool AttLimits::isUpperLimited() const "; -%feature("docstring") AttLimits::isLowerLimited "bool AttLimits::isLowerLimited() const +%feature("docstring") AttLimits::isLowerLimited "bool AttLimits::isLowerLimited() const "; -%feature("docstring") AttLimits::isLimitless "bool AttLimits::isLimitless() const +%feature("docstring") AttLimits::isLimitless "bool AttLimits::isLimitless() const "; -%feature("docstring") AttLimits::lowerLimit "double AttLimits::lowerLimit() const +%feature("docstring") AttLimits::lowerLimit "double AttLimits::lowerLimit() const "; -%feature("docstring") AttLimits::upperLimit "double AttLimits::upperLimit() const +%feature("docstring") AttLimits::upperLimit "double AttLimits::upperLimit() const "; %feature("docstring") AttLimits::setFixed "void AttLimits::setFixed(bool isFixed) "; -%feature("docstring") AttLimits::toString "std::string AttLimits::toString() const +%feature("docstring") AttLimits::toString "std::string AttLimits::toString() const "; @@ -54,10 +54,10 @@ C++ includes: Attributes.h %feature("docstring") Attributes::setFixed "void Attributes::setFixed(bool is_fixed) "; -%feature("docstring") Attributes::isFixed "bool Attributes::isFixed() const +%feature("docstring") Attributes::isFixed "bool Attributes::isFixed() const "; -%feature("docstring") Attributes::isFree "bool Attributes::isFree() const +%feature("docstring") Attributes::isFree "bool Attributes::isFree() const "; @@ -122,7 +122,7 @@ Returns multi-line string to report results of minimization. %feature("docstring") FitKernel::fitParameters "FitParameterSet * FitKernel::fitParameters() "; -%feature("docstring") FitKernel::fitParameters "const FitParameterSet * FitKernel::fitParameters() const +%feature("docstring") FitKernel::fitParameters "const FitParameterSet * FitKernel::fitParameters() const "; %feature("docstring") FitKernel::functionCalls "int FitKernel::functionCalls() const @@ -198,13 +198,13 @@ C++ includes: FitOptions.h %feature("docstring") FitOptions::~FitOptions "FitOptions::~FitOptions() "; -%feature("docstring") FitOptions::derivEpsilon "double FitOptions::derivEpsilon() const +%feature("docstring") FitOptions::derivEpsilon "double FitOptions::derivEpsilon() const "; %feature("docstring") FitOptions::setDerivEpsilon "void FitOptions::setDerivEpsilon(double deriv_epsilon) "; -%feature("docstring") FitOptions::stepFactor "double FitOptions::stepFactor() const +%feature("docstring") FitOptions::stepFactor "double FitOptions::stepFactor() const "; %feature("docstring") FitOptions::setStepFactor "void FitOptions::setStepFactor(double step_factor) @@ -240,13 +240,13 @@ Returns number of parameters. Container iterators. "; -%feature("docstring") FitParameterSet::begin "FitParameterSet::const_iterator FitParameterSet::begin() const +%feature("docstring") FitParameterSet::begin "FitParameterSet::const_iterator FitParameterSet::begin() const "; %feature("docstring") FitParameterSet::end "FitParameterSet::iterator FitParameterSet::end() "; -%feature("docstring") FitParameterSet::end "FitParameterSet::const_iterator FitParameterSet::end() const +%feature("docstring") FitParameterSet::end "FitParameterSet::const_iterator FitParameterSet::end() const "; %feature("docstring") FitParameterSet::addFitParameter "void FitParameterSet::addFitParameter(IFitParameter *par) @@ -307,7 +307,7 @@ Release all parameters. Set fixed flag for parameters from the list. "; -%feature("docstring") FitParameterSet::correlationMatrix "corr_matrix_t FitParameterSet::correlationMatrix() const +%feature("docstring") FitParameterSet::correlationMatrix "corr_matrix_t FitParameterSet::correlationMatrix() const "; %feature("docstring") FitParameterSet::setCorrelationMatrix "void FitParameterSet::setCorrelationMatrix(const corr_matrix_t &matrix) @@ -335,7 +335,7 @@ Sets tolerance on the function value at the minimum. Minimization will stop when %feature("docstring") GeneticMinimizer::setTolerance "void GeneticMinimizer::setTolerance(double value) "; -%feature("docstring") GeneticMinimizer::tolerance "double GeneticMinimizer::tolerance() const +%feature("docstring") GeneticMinimizer::tolerance "double GeneticMinimizer::tolerance() const "; %feature("docstring") GeneticMinimizer::setPrintLevel "void GeneticMinimizer::setPrintLevel(int value) @@ -343,7 +343,7 @@ Sets tolerance on the function value at the minimum. Minimization will stop when Sets minimizer internal print level. "; -%feature("docstring") GeneticMinimizer::printLevel "int GeneticMinimizer::printLevel() const +%feature("docstring") GeneticMinimizer::printLevel "int GeneticMinimizer::printLevel() const "; %feature("docstring") GeneticMinimizer::setMaxIterations "void GeneticMinimizer::setMaxIterations(int value) @@ -351,7 +351,7 @@ Sets minimizer internal print level. Sets maximum number of iterations to try at each step. "; -%feature("docstring") GeneticMinimizer::maxIterations "int GeneticMinimizer::maxIterations() const +%feature("docstring") GeneticMinimizer::maxIterations "int GeneticMinimizer::maxIterations() const "; %feature("docstring") GeneticMinimizer::setPopulationSize "void GeneticMinimizer::setPopulationSize(int value) @@ -359,7 +359,7 @@ Sets maximum number of iterations to try at each step. Sets population size. "; -%feature("docstring") GeneticMinimizer::populationSize "int GeneticMinimizer::populationSize() const +%feature("docstring") GeneticMinimizer::populationSize "int GeneticMinimizer::populationSize() const "; %feature("docstring") GeneticMinimizer::setRandomSeed "void GeneticMinimizer::setRandomSeed(int value) @@ -367,7 +367,7 @@ Sets population size. Sets random seed. "; -%feature("docstring") GeneticMinimizer::randomSeed "int GeneticMinimizer::randomSeed() const +%feature("docstring") GeneticMinimizer::randomSeed "int GeneticMinimizer::randomSeed() const "; %feature("docstring") GeneticMinimizer::setParameter "void GeneticMinimizer::setParameter(size_t index, const IFitParameter *par) @@ -405,7 +405,7 @@ Sets tolerance on the function value at the minimum. %feature("docstring") GSLLevenbergMarquardtMinimizer::setTolerance "void GSLLevenbergMarquardtMinimizer::setTolerance(double value) "; -%feature("docstring") GSLLevenbergMarquardtMinimizer::tolerance "double GSLLevenbergMarquardtMinimizer::tolerance() const +%feature("docstring") GSLLevenbergMarquardtMinimizer::tolerance "double GSLLevenbergMarquardtMinimizer::tolerance() const "; %feature("docstring") GSLLevenbergMarquardtMinimizer::setPrintLevel "void GSLLevenbergMarquardtMinimizer::setPrintLevel(int value) @@ -413,7 +413,7 @@ Sets tolerance on the function value at the minimum. Sets minimizer internal print level. "; -%feature("docstring") GSLLevenbergMarquardtMinimizer::printLevel "int GSLLevenbergMarquardtMinimizer::printLevel() const +%feature("docstring") GSLLevenbergMarquardtMinimizer::printLevel "int GSLLevenbergMarquardtMinimizer::printLevel() const "; %feature("docstring") GSLLevenbergMarquardtMinimizer::setMaxIterations "void GSLLevenbergMarquardtMinimizer::setMaxIterations(int value) @@ -421,7 +421,7 @@ Sets minimizer internal print level. Sets maximum number of iterations. This is an internal minimizer setting which has no direct relation to the number of objective function calls (e.g. numberOfIteraction=5 might correspond to ~100 objective function calls). "; -%feature("docstring") GSLLevenbergMarquardtMinimizer::maxIterations "int GSLLevenbergMarquardtMinimizer::maxIterations() const +%feature("docstring") GSLLevenbergMarquardtMinimizer::maxIterations "int GSLLevenbergMarquardtMinimizer::maxIterations() const "; %feature("docstring") GSLLevenbergMarquardtMinimizer::statusToString "std::string GSLLevenbergMarquardtMinimizer::statusToString() const @@ -454,7 +454,7 @@ C++ includes: GSLMultiMinimizer.h Sets minimizer internal print level. "; -%feature("docstring") GSLMultiMinimizer::printLevel "int GSLMultiMinimizer::printLevel() const +%feature("docstring") GSLMultiMinimizer::printLevel "int GSLMultiMinimizer::printLevel() const "; %feature("docstring") GSLMultiMinimizer::setMaxIterations "void GSLMultiMinimizer::setMaxIterations(int value) @@ -462,7 +462,7 @@ Sets minimizer internal print level. Sets maximum number of iterations. This is an internal minimizer setting which has no direct relation to the number of objective function calls (e.g. numberOfIteraction=5 might correspond to ~100 objective function calls). "; -%feature("docstring") GSLMultiMinimizer::maxIterations "int GSLMultiMinimizer::maxIterations() const +%feature("docstring") GSLMultiMinimizer::maxIterations "int GSLMultiMinimizer::maxIterations() const "; %feature("docstring") GSLMultiMinimizer::statusToString "std::string GSLMultiMinimizer::statusToString() const @@ -488,22 +488,22 @@ C++ includes: IFitParameter.h %feature("docstring") IFitParameter::~IFitParameter "virtual IFitParameter::~IFitParameter() "; -%feature("docstring") IFitParameter::clone "IFitParameter * IFitParameter::clone() const +%feature("docstring") IFitParameter::clone "IFitParameter * IFitParameter::clone() const "; -%feature("docstring") IFitParameter::name "std::string IFitParameter::name() const +%feature("docstring") IFitParameter::name "std::string IFitParameter::name() const "; %feature("docstring") IFitParameter::setName "IFitParameter & IFitParameter::setName(const std::string &name) "; -%feature("docstring") IFitParameter::startValue "double IFitParameter::startValue() const +%feature("docstring") IFitParameter::startValue "double IFitParameter::startValue() const "; %feature("docstring") IFitParameter::setStartValue "void IFitParameter::setStartValue(double value) "; -%feature("docstring") IFitParameter::value "double IFitParameter::value() const +%feature("docstring") IFitParameter::value "double IFitParameter::value() const "; %feature("docstring") IFitParameter::setValue "void IFitParameter::setValue(double value) @@ -512,19 +512,19 @@ C++ includes: IFitParameter.h %feature("docstring") IFitParameter::addPattern "IFitParameter & IFitParameter::addPattern(const std::string &pattern) "; -%feature("docstring") IFitParameter::step "double IFitParameter::step() const +%feature("docstring") IFitParameter::step "double IFitParameter::step() const "; %feature("docstring") IFitParameter::setStep "IFitParameter & IFitParameter::setStep(double value) "; -%feature("docstring") IFitParameter::error "double IFitParameter::error() const +%feature("docstring") IFitParameter::error "double IFitParameter::error() const "; %feature("docstring") IFitParameter::setError "void IFitParameter::setError(double value) "; -%feature("docstring") IFitParameter::limits "const AttLimits & IFitParameter::limits() const +%feature("docstring") IFitParameter::limits "const AttLimits & IFitParameter::limits() const "; %feature("docstring") IFitParameter::limits "AttLimits & IFitParameter::limits() @@ -551,7 +551,7 @@ C++ includes: IFitParameter.h %feature("docstring") IFitParameter::setFixed "IFitParameter & IFitParameter::setFixed() "; -%feature("docstring") IFitParameter::toString "std::string IFitParameter::toString() const +%feature("docstring") IFitParameter::toString "std::string IFitParameter::toString() const "; @@ -636,10 +636,10 @@ C++ includes: MinimizerInfo.h %feature("docstring") InfoItem::InfoItem "InfoItem::InfoItem(const std::string &itemName, const std::string &itemDescription) "; -%feature("docstring") InfoItem::name "std::string InfoItem::name() const +%feature("docstring") InfoItem::name "std::string InfoItem::name() const "; -%feature("docstring") InfoItem::description "std::string InfoItem::description() const +%feature("docstring") InfoItem::description "std::string InfoItem::description() const "; @@ -659,7 +659,7 @@ C++ includes: MinimizerCatalogue.h Returns multiline string representing catalogue content. "; -%feature("docstring") MinimizerCatalogue::minimizerNames "std::vector< std::string > MinimizerCatalogue::minimizerNames() const +%feature("docstring") MinimizerCatalogue::minimizerNames "std::vector< std::string > MinimizerCatalogue::minimizerNames() const "; %feature("docstring") MinimizerCatalogue::algorithmNames "std::vector< std::string > MinimizerCatalogue::algorithmNames(const std::string &minimizerName) const @@ -706,7 +706,7 @@ C++ includes: MinimizerInfo.h Sets currently active algorithm. "; -%feature("docstring") MinimizerInfo::algorithmName "std::string MinimizerInfo::algorithmName() const +%feature("docstring") MinimizerInfo::algorithmName "std::string MinimizerInfo::algorithmName() const "; %feature("docstring") MinimizerInfo::algorithmNames "std::vector< std::string > MinimizerInfo::algorithmNames() const @@ -770,7 +770,7 @@ C++ includes: Minuit2Minimizer.h Sets minimization strategy (0-low, 1-medium, 2-high minimization quality). At low quality number of function calls will be economized. "; -%feature("docstring") Minuit2Minimizer::strategy "int Minuit2Minimizer::strategy() const +%feature("docstring") Minuit2Minimizer::strategy "int Minuit2Minimizer::strategy() const "; %feature("docstring") Minuit2Minimizer::setErrorDefinition "void Minuit2Minimizer::setErrorDefinition(double value) @@ -794,7 +794,7 @@ Sets relative floating point arithmetic precision. Should be adjusted when the u %feature("docstring") Minuit2Minimizer::setPrecision "void Minuit2Minimizer::setPrecision(double value) "; -%feature("docstring") Minuit2Minimizer::precision "double Minuit2Minimizer::precision() const +%feature("docstring") Minuit2Minimizer::precision "double Minuit2Minimizer::precision() const "; %feature("docstring") Minuit2Minimizer::setPrintLevel "void Minuit2Minimizer::setPrintLevel(int value) @@ -802,7 +802,7 @@ Sets relative floating point arithmetic precision. Should be adjusted when the u Sets minimizer internal print level. Default value is 0 (silent). "; -%feature("docstring") Minuit2Minimizer::printLevel "int Minuit2Minimizer::printLevel() const +%feature("docstring") Minuit2Minimizer::printLevel "int Minuit2Minimizer::printLevel() const "; %feature("docstring") Minuit2Minimizer::setMaxFunctionCalls "void Minuit2Minimizer::setMaxFunctionCalls(int value) @@ -810,7 +810,7 @@ Sets minimizer internal print level. Default value is 0 (silent). Sets maximum number of objective function calls. "; -%feature("docstring") Minuit2Minimizer::maxFunctionCalls "int Minuit2Minimizer::maxFunctionCalls() const +%feature("docstring") Minuit2Minimizer::maxFunctionCalls "int Minuit2Minimizer::maxFunctionCalls() const "; %feature("docstring") Minuit2Minimizer::statusToString "std::string Minuit2Minimizer::statusToString() const @@ -838,10 +838,10 @@ C++ includes: MultiOption.h %feature("docstring") MultiOption::MultiOption "MultiOption::MultiOption(const std::string &name, const T &t, const std::string &descripion=std::string()) "; -%feature("docstring") MultiOption::name "std::string MultiOption::name() const +%feature("docstring") MultiOption::name "std::string MultiOption::name() const "; -%feature("docstring") MultiOption::description "std::string MultiOption::description() const +%feature("docstring") MultiOption::description "std::string MultiOption::description() const "; %feature("docstring") MultiOption::setDescription "void MultiOption::setDescription(const std::string &description) @@ -896,10 +896,10 @@ Evaluates the value of the function for given vector of function parameters usin Evaluates residual and gradients of the function for given vector of function parameters and index of dataelement using callback mechanism. "; -%feature("docstring") ObjectiveFunction::functionCalls "int ObjectiveFunction::functionCalls() const +%feature("docstring") ObjectiveFunction::functionCalls "int ObjectiveFunction::functionCalls() const "; -%feature("docstring") ObjectiveFunction::sizeOfData "int ObjectiveFunction::sizeOfData() const +%feature("docstring") ObjectiveFunction::sizeOfData "int ObjectiveFunction::sizeOfData() const "; @@ -925,10 +925,10 @@ Returns true if option with such name already exists. %feature("docstring") OptionContainer::option "OptionContainer::option_t OptionContainer::option(const std::string &optionName) "; -%feature("docstring") OptionContainer::option "const OptionContainer::option_t OptionContainer::option(const std::string &optionName) const +%feature("docstring") OptionContainer::option "const OptionContainer::option_t OptionContainer::option(const std::string &optionName) const "; -%feature("docstring") OptionContainer::optionValue "T OptionContainer::optionValue(const std::string &optionName) const +%feature("docstring") OptionContainer::optionValue "T OptionContainer::optionValue(const std::string &optionName) const "; %feature("docstring") OptionContainer::setOptionValue "void OptionContainer::setOptionValue(const std::string &optionName, T value) @@ -939,16 +939,16 @@ Sets the value of option. Option should hold same value type already. %feature("docstring") OptionContainer::begin "iterator OptionContainer::begin() "; -%feature("docstring") OptionContainer::begin "const_iterator OptionContainer::begin() const +%feature("docstring") OptionContainer::begin "const_iterator OptionContainer::begin() const "; %feature("docstring") OptionContainer::end "iterator OptionContainer::end() "; -%feature("docstring") OptionContainer::end "const_iterator OptionContainer::end() const +%feature("docstring") OptionContainer::end "const_iterator OptionContainer::end() const "; -%feature("docstring") OptionContainer::size "size_t OptionContainer::size() const +%feature("docstring") OptionContainer::size "size_t OptionContainer::size() const "; @@ -1023,25 +1023,25 @@ remove limits returns true if proposed value is in limits range "; -%feature("docstring") RealLimits::toString "std::string RealLimits::toString() const +%feature("docstring") RealLimits::toString "std::string RealLimits::toString() const "; -%feature("docstring") RealLimits::isLimitless "bool RealLimits::isLimitless() const +%feature("docstring") RealLimits::isLimitless "bool RealLimits::isLimitless() const "; -%feature("docstring") RealLimits::isPositive "bool RealLimits::isPositive() const +%feature("docstring") RealLimits::isPositive "bool RealLimits::isPositive() const "; -%feature("docstring") RealLimits::isNonnegative "bool RealLimits::isNonnegative() const +%feature("docstring") RealLimits::isNonnegative "bool RealLimits::isNonnegative() const "; -%feature("docstring") RealLimits::isLowerLimited "bool RealLimits::isLowerLimited() const +%feature("docstring") RealLimits::isLowerLimited "bool RealLimits::isLowerLimited() const "; -%feature("docstring") RealLimits::isUpperLimited "bool RealLimits::isUpperLimited() const +%feature("docstring") RealLimits::isUpperLimited "bool RealLimits::isUpperLimited() const "; -%feature("docstring") RealLimits::isLimited "bool RealLimits::isLimited() const +%feature("docstring") RealLimits::isLimited "bool RealLimits::isLimited() const "; @@ -1056,10 +1056,10 @@ C++ includes: RootMinimizerFunctions.h %feature("docstring") RootGradientFunction::RootGradientFunction "RootGradientFunction::RootGradientFunction(root_gradient_t fun_gradient, size_t npars, size_t ndatasize) "; -%feature("docstring") RootGradientFunction::Type "Type_t RootGradientFunction::Type() const +%feature("docstring") RootGradientFunction::Type "Type_t RootGradientFunction::Type() const "; -%feature("docstring") RootGradientFunction::Clone "BA_ROOT::Math::IMultiGenFunction* RootGradientFunction::Clone() const +%feature("docstring") RootGradientFunction::Clone "BA_ROOT::Math::IMultiGenFunction* RootGradientFunction::Clone() const "; %feature("docstring") RootGradientFunction::DataElement "double RootGradientFunction::DataElement(const double *pars, unsigned int i_data, double *gradient=0) const @@ -1084,39 +1084,39 @@ C++ includes: RootMinimizerAdapter.h run minimization "; -%feature("docstring") RootMinimizerAdapter::minimizerName "std::string RootMinimizerAdapter::minimizerName() const override final +%feature("docstring") RootMinimizerAdapter::minimizerName "std::string RootMinimizerAdapter::minimizerName() const overridefinal Returns name of the minimizer. "; -%feature("docstring") RootMinimizerAdapter::algorithmName "std::string RootMinimizerAdapter::algorithmName() const override final +%feature("docstring") RootMinimizerAdapter::algorithmName "std::string RootMinimizerAdapter::algorithmName() const overridefinal Returns name of the minimization algorithm. "; -%feature("docstring") RootMinimizerAdapter::setParameters "void RootMinimizerAdapter::setParameters(const FitParameterSet ¶meters) override final +%feature("docstring") RootMinimizerAdapter::setParameters "void RootMinimizerAdapter::setParameters(const FitParameterSet ¶meters) overridefinal Sets internal minimizer parameters using external parameter list. "; -%feature("docstring") RootMinimizerAdapter::setObjectiveFunction "void RootMinimizerAdapter::setObjectiveFunction(objective_function_t func) override final +%feature("docstring") RootMinimizerAdapter::setObjectiveFunction "void RootMinimizerAdapter::setObjectiveFunction(objective_function_t func) overridefinal "; -%feature("docstring") RootMinimizerAdapter::setGradientFunction "void RootMinimizerAdapter::setGradientFunction(gradient_function_t func, int ndatasize) override final +%feature("docstring") RootMinimizerAdapter::setGradientFunction "void RootMinimizerAdapter::setGradientFunction(gradient_function_t func, int ndatasize) overridefinal "; -%feature("docstring") RootMinimizerAdapter::minValue "double RootMinimizerAdapter::minValue() const override final +%feature("docstring") RootMinimizerAdapter::minValue "double RootMinimizerAdapter::minValue() const overridefinal Returns minimum function value. "; -%feature("docstring") RootMinimizerAdapter::reportOutcome "std::string RootMinimizerAdapter::reportOutcome() const override final +%feature("docstring") RootMinimizerAdapter::reportOutcome "std::string RootMinimizerAdapter::reportOutcome() const overridefinal "; %feature("docstring") RootMinimizerAdapter::options "MinimizerOptions& RootMinimizerAdapter::options() "; -%feature("docstring") RootMinimizerAdapter::options "const MinimizerOptions& RootMinimizerAdapter::options() const +%feature("docstring") RootMinimizerAdapter::options "const MinimizerOptions& RootMinimizerAdapter::options() const "; %feature("docstring") RootMinimizerAdapter::statusToString "std::string RootMinimizerAdapter::statusToString() const @@ -1139,7 +1139,7 @@ Returns map of string representing different minimizer statuses. Propagates results of minimization to fit parameter set. "; -%feature("docstring") RootMinimizerAdapter::setOptions "void RootMinimizerAdapter::setOptions(const std::string &optionString) override final +%feature("docstring") RootMinimizerAdapter::setOptions "void RootMinimizerAdapter::setOptions(const std::string &optionString) overridefinal Sets option string to the minimizer. "; @@ -1213,7 +1213,7 @@ C++ includes: SimAnMinimizer.h Sets minimizer internal print level. Default value is 0 (silent). "; -%feature("docstring") SimAnMinimizer::printLevel "int SimAnMinimizer::printLevel() const +%feature("docstring") SimAnMinimizer::printLevel "int SimAnMinimizer::printLevel() const "; %feature("docstring") SimAnMinimizer::setMaxIterations "void SimAnMinimizer::setMaxIterations(int value) @@ -1221,7 +1221,7 @@ Sets minimizer internal print level. Default value is 0 (silent). Sets maximum number of iterations to try at each step. "; -%feature("docstring") SimAnMinimizer::maxIterations "int SimAnMinimizer::maxIterations() const +%feature("docstring") SimAnMinimizer::maxIterations "int SimAnMinimizer::maxIterations() const "; %feature("docstring") SimAnMinimizer::setIterationsAtEachTemp "void SimAnMinimizer::setIterationsAtEachTemp(int value) @@ -1229,7 +1229,7 @@ Sets maximum number of iterations to try at each step. Sets number of iterations at each temperature. "; -%feature("docstring") SimAnMinimizer::iterationsAtEachTemp "int SimAnMinimizer::iterationsAtEachTemp() const +%feature("docstring") SimAnMinimizer::iterationsAtEachTemp "int SimAnMinimizer::iterationsAtEachTemp() const "; %feature("docstring") SimAnMinimizer::setStepSize "void SimAnMinimizer::setStepSize(double value) @@ -1237,7 +1237,7 @@ Sets number of iterations at each temperature. Sets max step size used in random walk. "; -%feature("docstring") SimAnMinimizer::stepSize "double SimAnMinimizer::stepSize() const +%feature("docstring") SimAnMinimizer::stepSize "double SimAnMinimizer::stepSize() const "; %feature("docstring") SimAnMinimizer::setBoltzmannK "void SimAnMinimizer::setBoltzmannK(double value) @@ -1245,7 +1245,7 @@ Sets max step size used in random walk. Sets Boltzmann distribution parameter: k. "; -%feature("docstring") SimAnMinimizer::boltzmannK "double SimAnMinimizer::boltzmannK() const +%feature("docstring") SimAnMinimizer::boltzmannK "double SimAnMinimizer::boltzmannK() const "; %feature("docstring") SimAnMinimizer::setBoltzmannInitialTemp "void SimAnMinimizer::setBoltzmannInitialTemp(double value) @@ -1253,7 +1253,7 @@ Sets Boltzmann distribution parameter: k. Sets Boltzmann distribution parameter: initial temperature. "; -%feature("docstring") SimAnMinimizer::boltzmannInitialTemp "double SimAnMinimizer::boltzmannInitialTemp() const +%feature("docstring") SimAnMinimizer::boltzmannInitialTemp "double SimAnMinimizer::boltzmannInitialTemp() const "; %feature("docstring") SimAnMinimizer::setBoltzmannMu "void SimAnMinimizer::setBoltzmannMu(double value) @@ -1261,7 +1261,7 @@ Sets Boltzmann distribution parameter: initial temperature. Sets Boltzmann distribution parameter: mu. "; -%feature("docstring") SimAnMinimizer::boltzmannMu "double SimAnMinimizer::boltzmannMu() const +%feature("docstring") SimAnMinimizer::boltzmannMu "double SimAnMinimizer::boltzmannMu() const "; %feature("docstring") SimAnMinimizer::setBoltzmannMinTemp "void SimAnMinimizer::setBoltzmannMinTemp(double value) @@ -1269,7 +1269,7 @@ Sets Boltzmann distribution parameter: mu. Sets Boltzmann distribution parameter: minimal temperature. "; -%feature("docstring") SimAnMinimizer::boltzmannMinTemp "double SimAnMinimizer::boltzmannMinTemp() const +%feature("docstring") SimAnMinimizer::boltzmannMinTemp "double SimAnMinimizer::boltzmannMinTemp() const "; %feature("docstring") SimAnMinimizer::statusMap "std::map< std::string, std::string > SimAnMinimizer::statusMap() const diff --git a/auto/Wrap/libBornAgainCore.py b/auto/Wrap/libBornAgainCore.py index babda0ebd48..a769ffd8573 100644 --- a/auto/Wrap/libBornAgainCore.py +++ b/auto/Wrap/libBornAgainCore.py @@ -1737,7 +1737,7 @@ def vecOfLambdaAlphaPhi(_lambda, _alpha, _phi): """ vecOfLambdaAlphaPhi(double _lambda, double _alpha, double _phi) -> kvector_t - BA_CORE_API_ BasicVector3D<double> vecOfLambdaAlphaPhi(const double _lambda, const double _alpha, const double _phi) + BA_CORE_API_ BasicVector3D<double> vecOfLambdaAlphaPhi(double _lambda, double _alpha, double _phi) Creates a vector<double> as a wavevector with given wavelength and angles. Specifically needed for grazing-incidence scattering. @@ -1834,7 +1834,7 @@ class INamed(_object): """ getName(INamed self) -> std::string - std::string INamed::getName() const + std::string INamed::getName() const """ return _libBornAgainCore.INamed_getName(self) @@ -3636,7 +3636,7 @@ class WavevectorInfo(_object): """ transformed(WavevectorInfo self, Transform3D const & transform) -> WavevectorInfo - WavevectorInfo WavevectorInfo::transformed(const Transform3D &transform) const + WavevectorInfo WavevectorInfo::transformed(const Transform3D &transform) const """ return _libBornAgainCore.WavevectorInfo_transformed(self, transform) @@ -3646,7 +3646,7 @@ class WavevectorInfo(_object): """ getKi(WavevectorInfo self) -> cvector_t - cvector_t WavevectorInfo::getKi() const + cvector_t WavevectorInfo::getKi() const """ return _libBornAgainCore.WavevectorInfo_getKi(self) @@ -3656,7 +3656,7 @@ class WavevectorInfo(_object): """ getKf(WavevectorInfo self) -> cvector_t - cvector_t WavevectorInfo::getKf() const + cvector_t WavevectorInfo::getKf() const """ return _libBornAgainCore.WavevectorInfo_getKf(self) @@ -3666,7 +3666,7 @@ class WavevectorInfo(_object): """ getQ(WavevectorInfo self) -> cvector_t - cvector_t WavevectorInfo::getQ() const + cvector_t WavevectorInfo::getQ() const """ return _libBornAgainCore.WavevectorInfo_getQ(self) @@ -3676,7 +3676,7 @@ class WavevectorInfo(_object): """ getWavelength(WavevectorInfo self) -> double - double WavevectorInfo::getWavelength() const + double WavevectorInfo::getWavelength() const """ return _libBornAgainCore.WavevectorInfo_getWavelength(self) @@ -3843,7 +3843,7 @@ class Beam(INode): """ getBlochVector(Beam self) -> kvector_t - kvector_t Beam::getBlochVector() const + kvector_t Beam::getBlochVector() const """ return _libBornAgainCore.Beam_getBlochVector(self) @@ -3853,7 +3853,7 @@ class Beam(INode): """ getWavelength(Beam self) -> double - double Beam::getWavelength() const + double Beam::getWavelength() const """ return _libBornAgainCore.Beam_getWavelength(self) @@ -3863,7 +3863,7 @@ class Beam(INode): """ getAlpha(Beam self) -> double - double Beam::getAlpha() const + double Beam::getAlpha() const """ return _libBornAgainCore.Beam_getAlpha(self) @@ -3873,7 +3873,7 @@ class Beam(INode): """ getPhi(Beam self) -> double - double Beam::getPhi() const + double Beam::getPhi() const """ return _libBornAgainCore.Beam_getPhi(self) @@ -3928,7 +3928,7 @@ class Bin1D(_object): """ getMidPoint(Bin1D self) -> double - double Bin1D::getMidPoint() const + double Bin1D::getMidPoint() const """ return _libBornAgainCore.Bin1D_getMidPoint(self) @@ -3938,7 +3938,7 @@ class Bin1D(_object): """ getBinSize(Bin1D self) -> double - double Bin1D::getBinSize() const + double Bin1D::getBinSize() const """ return _libBornAgainCore.Bin1D_getBinSize(self) @@ -3996,7 +3996,7 @@ class Bin1DKVector(_object): """ getMidPoint(Bin1DKVector self) -> kvector_t - kvector_t Bin1DKVector::getMidPoint() const + kvector_t Bin1DKVector::getMidPoint() const """ return _libBornAgainCore.Bin1DKVector_getMidPoint(self) @@ -4006,7 +4006,7 @@ class Bin1DKVector(_object): """ getDelta(Bin1DKVector self) -> kvector_t - kvector_t Bin1DKVector::getDelta() const + kvector_t Bin1DKVector::getDelta() const """ return _libBornAgainCore.Bin1DKVector_getDelta(self) @@ -4061,7 +4061,7 @@ class Bin1DCVector(_object): """ getMidPoint(Bin1DCVector self) -> cvector_t - cvector_t Bin1DCVector::getMidPoint() const + cvector_t Bin1DCVector::getMidPoint() const """ return _libBornAgainCore.Bin1DCVector_getMidPoint(self) @@ -4071,7 +4071,7 @@ class Bin1DCVector(_object): """ getDelta(Bin1DCVector self) -> cvector_t - cvector_t Bin1DCVector::getDelta() const + cvector_t Bin1DCVector::getDelta() const """ return _libBornAgainCore.Bin1DCVector_getDelta(self) @@ -4254,7 +4254,7 @@ class IAxis(_object): """ getBinCenters(IAxis self) -> vdouble1d_t - std::vector< double > IAxis::getBinCenters() const + std::vector< double > IAxis::getBinCenters() const """ return _libBornAgainCore.IAxis_getBinCenters(self) @@ -4264,7 +4264,7 @@ class IAxis(_object): """ getBinBoundaries(IAxis self) -> vdouble1d_t - std::vector< double > IAxis::getBinBoundaries() const + std::vector< double > IAxis::getBinBoundaries() const """ return _libBornAgainCore.IAxis_getBinBoundaries(self) @@ -4420,7 +4420,7 @@ class VariableBinAxis(IAxis): """ getBinCenter(VariableBinAxis self, size_t index) -> double - double VariableBinAxis::getBinCenter(size_t index) const + double VariableBinAxis::getBinCenter(size_t index) const """ return _libBornAgainCore.VariableBinAxis_getBinCenter(self, index) @@ -4442,7 +4442,7 @@ class VariableBinAxis(IAxis): """ getBinCenters(VariableBinAxis self) -> vdouble1d_t - std::vector< double > VariableBinAxis::getBinCenters() const + std::vector< double > VariableBinAxis::getBinCenters() const """ return _libBornAgainCore.VariableBinAxis_getBinCenters(self) @@ -4452,7 +4452,7 @@ class VariableBinAxis(IAxis): """ getBinBoundaries(VariableBinAxis self) -> vdouble1d_t - std::vector<double> VariableBinAxis::getBinBoundaries() const + std::vector<double> VariableBinAxis::getBinBoundaries() const """ return _libBornAgainCore.VariableBinAxis_getBinBoundaries(self) @@ -4635,7 +4635,7 @@ class CustomBinAxis(VariableBinAxis): """ getBinCenters(CustomBinAxis self) -> vdouble1d_t - std::vector< double > CustomBinAxis::getBinCenters() const + std::vector< double > CustomBinAxis::getBinCenters() const """ return _libBornAgainCore.CustomBinAxis_getBinCenters(self) @@ -5180,7 +5180,7 @@ class FitStrategyDefault(IFitStrategy): """ clone(FitStrategyDefault self) -> FitStrategyDefault - FitStrategyDefault * FitStrategyDefault::clone() const + FitStrategyDefault * FitStrategyDefault::clone() const """ return _libBornAgainCore.FitStrategyDefault_clone(self) @@ -5269,7 +5269,7 @@ class IntensityFunctionLog(IIntensityFunction): """ clone(IntensityFunctionLog self) -> IntensityFunctionLog - virtual IntensityFunctionLog* IntensityFunctionLog::clone() const + virtual IntensityFunctionLog* IntensityFunctionLog::clone() const """ return _libBornAgainCore.IntensityFunctionLog_clone(self) @@ -5279,7 +5279,7 @@ class IntensityFunctionLog(IIntensityFunction): """ evaluate(IntensityFunctionLog self, double value) -> double - double IntensityFunctionLog::evaluate(double value) const + double IntensityFunctionLog::evaluate(double value) const """ return _libBornAgainCore.IntensityFunctionLog_evaluate(self, value) @@ -5330,7 +5330,7 @@ class IntensityFunctionSqrt(IIntensityFunction): """ clone(IntensityFunctionSqrt self) -> IntensityFunctionSqrt - virtual IntensityFunctionSqrt* IntensityFunctionSqrt::clone() const + virtual IntensityFunctionSqrt* IntensityFunctionSqrt::clone() const """ return _libBornAgainCore.IntensityFunctionSqrt_clone(self) @@ -5340,7 +5340,7 @@ class IntensityFunctionSqrt(IIntensityFunction): """ evaluate(IntensityFunctionSqrt self, double value) -> double - double IntensityFunctionSqrt::evaluate(double value) const + double IntensityFunctionSqrt::evaluate(double value) const """ return _libBornAgainCore.IntensityFunctionSqrt_evaluate(self, value) @@ -5473,7 +5473,7 @@ class IntensityNormalizer(IIntensityNormalizer): """ clone(IntensityNormalizer self) -> IntensityNormalizer - IntensityNormalizer * IntensityNormalizer::clone() const + IntensityNormalizer * IntensityNormalizer::clone() const """ return _libBornAgainCore.IntensityNormalizer_clone(self) @@ -5495,7 +5495,7 @@ class IntensityNormalizer(IIntensityNormalizer): """ createNormalizedData(IntensityNormalizer self, IntensityData data) -> IntensityData - OutputData< double > * IntensityNormalizer::createNormalizedData(const OutputData< double > &data) const + OutputData< double > * IntensityNormalizer::createNormalizedData(const OutputData< double > &data) const """ return _libBornAgainCore.IntensityNormalizer_createNormalizedData(self, data) @@ -6165,16 +6165,6 @@ class FitObject(INode): """ return _libBornAgainCore.FitObject_getChildren(self) - - def getDefaultAxisUnits(self): - """ - getDefaultAxisUnits(FitObject self) -> std::string - - std::string FitObject::getDefaultAxisUnits() const - - """ - return _libBornAgainCore.FitObject_getDefaultAxisUnits(self) - FitObject_swigregister = _libBornAgainCore.FitObject_swigregister FitObject_swigregister(FitObject) @@ -6264,7 +6254,7 @@ class FitParameter(libBornAgainFit.IFitParameter): """ clone(FitParameter self) -> FitParameter - FitParameter * FitParameter::clone() const + FitParameter * FitParameter::clone() const """ return _libBornAgainCore.FitParameter_clone(self) @@ -6322,7 +6312,7 @@ class FitParameter(libBornAgainFit.IFitParameter): """ patterns(FitParameter self) -> vector_string_t - std::vector< std::string > FitParameter::patterns() const + std::vector< std::string > FitParameter::patterns() const """ return _libBornAgainCore.FitParameter_patterns(self) @@ -6734,7 +6724,7 @@ class FitSuite(IObservable): getRealOutputData(FitSuite self, size_t i_item=0) -> IntensityData getRealOutputData(FitSuite self) -> IntensityData - const OutputData< double > * FitSuite::getRealOutputData(size_t i_item=0) const + const OutputData< double > * FitSuite::getRealOutputData(size_t i_item=0) const """ return _libBornAgainCore.FitSuite_getRealOutputData(self, i_item) @@ -6745,7 +6735,7 @@ class FitSuite(IObservable): getSimulationOutputData(FitSuite self, size_t i_item=0) -> IntensityData getSimulationOutputData(FitSuite self) -> IntensityData - const OutputData< double > * FitSuite::getSimulationOutputData(size_t i_item=0) const + const OutputData< double > * FitSuite::getSimulationOutputData(size_t i_item=0) const """ return _libBornAgainCore.FitSuite_getSimulationOutputData(self, i_item) @@ -6756,7 +6746,7 @@ class FitSuite(IObservable): getChiSquaredOutputData(FitSuite self, size_t i_item=0) -> IntensityData getChiSquaredOutputData(FitSuite self) -> IntensityData - const OutputData< double > * FitSuite::getChiSquaredOutputData(size_t i_item=0) const + const OutputData< double > * FitSuite::getChiSquaredOutputData(size_t i_item=0) const """ return _libBornAgainCore.FitSuite_getChiSquaredOutputData(self, i_item) @@ -7013,7 +7003,7 @@ class FitSuiteObjects(INode): """ size(FitSuiteObjects self) -> size_t - size_t FitSuiteObjects::size() const + size_t FitSuiteObjects::size() const """ return _libBornAgainCore.FitSuiteObjects_size(self) @@ -7050,17 +7040,6 @@ class FitSuiteObjects(INode): """ return _libBornAgainCore.FitSuiteObjects_getChildren(self) - - def getDefaultAxesUnits(self, i_item=0): - """ - getDefaultAxesUnits(FitSuiteObjects self, size_t i_item=0) -> std::string - getDefaultAxesUnits(FitSuiteObjects self) -> std::string - - std::string FitSuiteObjects::getDefaultAxesUnits(size_t i_item=0) const - - """ - return _libBornAgainCore.FitSuiteObjects_getDefaultAxesUnits(self, i_item) - FitSuiteObjects_swigregister = _libBornAgainCore.FitSuiteObjects_swigregister FitSuiteObjects_swigregister(FitSuiteObjects) @@ -7297,7 +7276,7 @@ class AdjustMinimizerStrategy(IFitStrategy): """ clone(AdjustMinimizerStrategy self) -> AdjustMinimizerStrategy - AdjustMinimizerStrategy * AdjustMinimizerStrategy::clone() const + AdjustMinimizerStrategy * AdjustMinimizerStrategy::clone() const """ return _libBornAgainCore.AdjustMinimizerStrategy_clone(self) @@ -7753,7 +7732,7 @@ class Crystal(IClusteredParticles): """ clone(Crystal self) -> Crystal - Crystal * Crystal::clone() const override final + Crystal * Crystal::clone() const overridefinal Returns a clone of this ISample object. @@ -7765,7 +7744,7 @@ class Crystal(IClusteredParticles): """ accept(Crystal self, INodeVisitor visitor) - void Crystal::accept(INodeVisitor *visitor) const override final + void Crystal::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -7777,7 +7756,7 @@ class Crystal(IClusteredParticles): """ createTotalFormFactor(Crystal self, IFormFactor meso_crystal_form_factor, IRotation p_rotation, kvector_t translation) -> IFormFactor - IFormFactor * Crystal::createTotalFormFactor(const IFormFactor &meso_crystal_form_factor, const IRotation *p_rotation, const kvector_t &translation) const override final + IFormFactor * Crystal::createTotalFormFactor(const IFormFactor &meso_crystal_form_factor, const IRotation *p_rotation, const kvector_t &translation) const overridefinal Creates a total form factor for the mesocrystal with a specific shape and content The bulk content of the mesocrystal is encapsulated by the IClusteredParticles object itself @@ -7789,7 +7768,7 @@ class Crystal(IClusteredParticles): """ homogeneousRegions(Crystal self) -> std::vector< HomogeneousRegion,std::allocator< HomogeneousRegion > > - std::vector< HomogeneousRegion > Crystal::homogeneousRegions() const override final + std::vector< HomogeneousRegion > Crystal::homogeneousRegions() const overridefinal Creates region information with volumetric densities instead of absolute volume These densities need to be multiplied by the total mesocrystal volume @@ -7802,7 +7781,7 @@ class Crystal(IClusteredParticles): transformedLattice(Crystal self, IRotation p_rotation=None) -> Lattice transformedLattice(Crystal self) -> Lattice - Lattice Crystal::transformedLattice(const IRotation *p_rotation=nullptr) const + Lattice Crystal::transformedLattice(const IRotation *p_rotation=nullptr) const """ return _libBornAgainCore.Crystal_transformedLattice(self, p_rotation) @@ -7822,7 +7801,7 @@ class Crystal(IClusteredParticles): """ getChildren(Crystal self) -> swig_dummy_type_const_inode_vector - std::vector< const INode * > Crystal::getChildren() const override final + std::vector< const INode * > Crystal::getChildren() const overridefinal Returns a vector of children (const). @@ -8042,7 +8021,7 @@ class DistributionGate(IDistribution1D): """ getMin(DistributionGate self) -> double - double DistributionGate::getMin() const + double DistributionGate::getMin() const """ return _libBornAgainCore.DistributionGate_getMin(self) @@ -8052,7 +8031,7 @@ class DistributionGate(IDistribution1D): """ getMax(DistributionGate self) -> double - double DistributionGate::getMax() const + double DistributionGate::getMax() const """ return _libBornAgainCore.DistributionGate_getMax(self) @@ -8171,7 +8150,7 @@ class DistributionLorentz(IDistribution1D): """ getHWHM(DistributionLorentz self) -> double - double DistributionLorentz::getHWHM() const + double DistributionLorentz::getHWHM() const """ return _libBornAgainCore.DistributionLorentz_getHWHM(self) @@ -8290,7 +8269,7 @@ class DistributionGaussian(IDistribution1D): """ getStdDev(DistributionGaussian self) -> double - double DistributionGaussian::getStdDev() const + double DistributionGaussian::getStdDev() const """ return _libBornAgainCore.DistributionGaussian_getStdDev(self) @@ -8409,7 +8388,7 @@ class DistributionLogNormal(IDistribution1D): """ getMedian(DistributionLogNormal self) -> double - double DistributionLogNormal::getMedian() const + double DistributionLogNormal::getMedian() const """ return _libBornAgainCore.DistributionLogNormal_getMedian(self) @@ -8419,7 +8398,7 @@ class DistributionLogNormal(IDistribution1D): """ getScalePar(DistributionLogNormal self) -> double - double DistributionLogNormal::getScalePar() const + double DistributionLogNormal::getScalePar() const """ return _libBornAgainCore.DistributionLogNormal_getScalePar(self) @@ -8550,7 +8529,7 @@ class DistributionCosine(IDistribution1D): """ getSigma(DistributionCosine self) -> double - double DistributionCosine::getSigma() const + double DistributionCosine::getSigma() const """ return _libBornAgainCore.DistributionCosine_getSigma(self) @@ -8669,7 +8648,7 @@ class DistributionTrapezoid(IDistribution1D): """ getLeftWidth(DistributionTrapezoid self) -> double - double DistributionTrapezoid::getLeftWidth() const + double DistributionTrapezoid::getLeftWidth() const """ return _libBornAgainCore.DistributionTrapezoid_getLeftWidth(self) @@ -8679,7 +8658,7 @@ class DistributionTrapezoid(IDistribution1D): """ getMiddleWidth(DistributionTrapezoid self) -> double - double DistributionTrapezoid::getMiddleWidth() const + double DistributionTrapezoid::getMiddleWidth() const """ return _libBornAgainCore.DistributionTrapezoid_getMiddleWidth(self) @@ -8689,7 +8668,7 @@ class DistributionTrapezoid(IDistribution1D): """ getRightWidth(DistributionTrapezoid self) -> double - double DistributionTrapezoid::getRightWidth() const + double DistributionTrapezoid::getRightWidth() const """ return _libBornAgainCore.DistributionTrapezoid_getRightWidth(self) @@ -8800,7 +8779,7 @@ class DetectorMask(_object): """ isMasked(DetectorMask self, size_t index) -> bool - bool DetectorMask::isMasked(size_t index) const + bool DetectorMask::isMasked(size_t index) const """ return _libBornAgainCore.DetectorMask_isMasked(self, index) @@ -8810,7 +8789,7 @@ class DetectorMask(_object): """ getMaskData(DetectorMask self) -> OutputData< bool > const * - const OutputData<bool>* DetectorMask::getMaskData() const + const OutputData<bool>* DetectorMask::getMaskData() const """ return _libBornAgainCore.DetectorMask_getMaskData(self) @@ -8820,7 +8799,7 @@ class DetectorMask(_object): """ createHistogram(DetectorMask self) -> Histogram2D - Histogram2D * DetectorMask::createHistogram() const + Histogram2D * DetectorMask::createHistogram() const """ return _libBornAgainCore.DetectorMask_createHistogram(self) @@ -8854,7 +8833,7 @@ class DetectorMask(_object): """ numberOfMaskedChannels(DetectorMask self) -> int - int DetectorMask::numberOfMaskedChannels() const + int DetectorMask::numberOfMaskedChannels() const """ return _libBornAgainCore.DetectorMask_numberOfMaskedChannels(self) @@ -8864,7 +8843,7 @@ class DetectorMask(_object): """ numberOfMasks(DetectorMask self) -> size_t - size_t DetectorMask::numberOfMasks() const + size_t DetectorMask::numberOfMasks() const """ return _libBornAgainCore.DetectorMask_numberOfMasks(self) @@ -8874,7 +8853,7 @@ class DetectorMask(_object): """ getMaskShape(DetectorMask self, size_t mask_index, bool & mask_value) -> IShape2D - const IShape2D * DetectorMask::getMaskShape(size_t mask_index, bool &mask_value) const + const IShape2D * DetectorMask::getMaskShape(size_t mask_index, bool &mask_value) const """ return _libBornAgainCore.DetectorMask_getMaskShape(self, mask_index, mask_value) @@ -8940,7 +8919,7 @@ class Ellipse(IShape2D): """ clone(Ellipse self) -> Ellipse - Ellipse* Ellipse::clone() const + Ellipse* Ellipse::clone() const """ return _libBornAgainCore.Ellipse_clone(self) @@ -8963,7 +8942,7 @@ class Ellipse(IShape2D): """ getCenterX(Ellipse self) -> double - double Ellipse::getCenterX() const + double Ellipse::getCenterX() const """ return _libBornAgainCore.Ellipse_getCenterX(self) @@ -8973,7 +8952,7 @@ class Ellipse(IShape2D): """ getCenterY(Ellipse self) -> double - double Ellipse::getCenterY() const + double Ellipse::getCenterY() const """ return _libBornAgainCore.Ellipse_getCenterY(self) @@ -8983,7 +8962,7 @@ class Ellipse(IShape2D): """ getRadiusX(Ellipse self) -> double - double Ellipse::getRadiusX() const + double Ellipse::getRadiusX() const """ return _libBornAgainCore.Ellipse_getRadiusX(self) @@ -8993,7 +8972,7 @@ class Ellipse(IShape2D): """ getRadiusY(Ellipse self) -> double - double Ellipse::getRadiusY() const + double Ellipse::getRadiusY() const """ return _libBornAgainCore.Ellipse_getRadiusY(self) @@ -9003,7 +8982,7 @@ class Ellipse(IShape2D): """ getTheta(Ellipse self) -> double - double Ellipse::getTheta() const + double Ellipse::getTheta() const """ return _libBornAgainCore.Ellipse_getTheta(self) @@ -9060,7 +9039,7 @@ class IFTDecayFunction1D(ICloneable, INode): """ decayLength(IFTDecayFunction1D self) -> double - double IFTDecayFunction1D::decayLength() const + double IFTDecayFunction1D::decayLength() const """ return _libBornAgainCore.IFTDecayFunction1D_decayLength(self) @@ -9107,7 +9086,7 @@ class FTDecayFunction1DCauchy(IFTDecayFunction1D): """ clone(FTDecayFunction1DCauchy self) -> FTDecayFunction1DCauchy - FTDecayFunction1DCauchy * FTDecayFunction1DCauchy::clone() const + FTDecayFunction1DCauchy * FTDecayFunction1DCauchy::clone() const """ return _libBornAgainCore.FTDecayFunction1DCauchy_clone(self) @@ -9176,7 +9155,7 @@ class FTDecayFunction1DGauss(IFTDecayFunction1D): """ clone(FTDecayFunction1DGauss self) -> FTDecayFunction1DGauss - FTDecayFunction1DGauss * FTDecayFunction1DGauss::clone() const + FTDecayFunction1DGauss * FTDecayFunction1DGauss::clone() const """ return _libBornAgainCore.FTDecayFunction1DGauss_clone(self) @@ -9245,7 +9224,7 @@ class FTDecayFunction1DTriangle(IFTDecayFunction1D): """ clone(FTDecayFunction1DTriangle self) -> FTDecayFunction1DTriangle - FTDecayFunction1DTriangle * FTDecayFunction1DTriangle::clone() const + FTDecayFunction1DTriangle * FTDecayFunction1DTriangle::clone() const """ return _libBornAgainCore.FTDecayFunction1DTriangle_clone(self) @@ -9325,7 +9304,7 @@ class FTDecayFunction1DVoigt(IFTDecayFunction1D): """ clone(FTDecayFunction1DVoigt self) -> FTDecayFunction1DVoigt - FTDecayFunction1DVoigt * FTDecayFunction1DVoigt::clone() const + FTDecayFunction1DVoigt * FTDecayFunction1DVoigt::clone() const """ return _libBornAgainCore.FTDecayFunction1DVoigt_clone(self) @@ -9357,7 +9336,7 @@ class FTDecayFunction1DVoigt(IFTDecayFunction1D): """ eEta(FTDecayFunction1DVoigt self) -> double - double FTDecayFunction1DVoigt::eEta() const + double FTDecayFunction1DVoigt::eEta() const """ return _libBornAgainCore.FTDecayFunction1DVoigt_eEta(self) @@ -9526,7 +9505,7 @@ class FTDecayFunction2DCauchy(IFTDecayFunction2D): """ clone(FTDecayFunction2DCauchy self) -> FTDecayFunction2DCauchy - FTDecayFunction2DCauchy * FTDecayFunction2DCauchy::clone() const + FTDecayFunction2DCauchy * FTDecayFunction2DCauchy::clone() const """ return _libBornAgainCore.FTDecayFunction2DCauchy_clone(self) @@ -9598,7 +9577,7 @@ class FTDecayFunction2DGauss(IFTDecayFunction2D): """ clone(FTDecayFunction2DGauss self) -> FTDecayFunction2DGauss - FTDecayFunction2DGauss * FTDecayFunction2DGauss::clone() const + FTDecayFunction2DGauss * FTDecayFunction2DGauss::clone() const """ return _libBornAgainCore.FTDecayFunction2DGauss_clone(self) @@ -9687,7 +9666,7 @@ class FTDecayFunction2DVoigt(IFTDecayFunction2D): """ clone(FTDecayFunction2DVoigt self) -> FTDecayFunction2DVoigt - FTDecayFunction2DVoigt * FTDecayFunction2DVoigt::clone() const + FTDecayFunction2DVoigt * FTDecayFunction2DVoigt::clone() const """ return _libBornAgainCore.FTDecayFunction2DVoigt_clone(self) @@ -9721,7 +9700,7 @@ class FTDecayFunction2DVoigt(IFTDecayFunction2D): """ eta(FTDecayFunction2DVoigt self) -> double - double FTDecayFunction2DVoigt::eta() const + double FTDecayFunction2DVoigt::eta() const """ return _libBornAgainCore.FTDecayFunction2DVoigt_eta(self) @@ -9790,7 +9769,7 @@ class IFTDistribution1D(ICloneable, INode): """ omega(IFTDistribution1D self) -> double - double IFTDistribution1D::omega() const + double IFTDistribution1D::omega() const """ return _libBornAgainCore.IFTDistribution1D_omega(self) @@ -10237,7 +10216,7 @@ class FTDistribution1DVoigt(IFTDistribution1D): """ eta(FTDistribution1DVoigt self) -> double - double FTDistribution1DVoigt::eta() const + double FTDistribution1DVoigt::eta() const """ return _libBornAgainCore.FTDistribution1DVoigt_eta(self) @@ -10294,7 +10273,7 @@ class IFTDistribution2D(ICloneable, INode): """ gamma(IFTDistribution2D self) -> double - double IFTDistribution2D::gamma() const + double IFTDistribution2D::gamma() const """ return _libBornAgainCore.IFTDistribution2D_gamma(self) @@ -10304,7 +10283,7 @@ class IFTDistribution2D(ICloneable, INode): """ delta(IFTDistribution2D self) -> double - double IFTDistribution2D::delta() const + double IFTDistribution2D::delta() const """ return _libBornAgainCore.IFTDistribution2D_delta(self) @@ -10314,7 +10293,7 @@ class IFTDistribution2D(ICloneable, INode): """ omegaX(IFTDistribution2D self) -> double - double IFTDistribution2D::omegaX() const + double IFTDistribution2D::omegaX() const """ return _libBornAgainCore.IFTDistribution2D_omegaX(self) @@ -10324,7 +10303,7 @@ class IFTDistribution2D(ICloneable, INode): """ omegaY(IFTDistribution2D self) -> double - double IFTDistribution2D::omegaY() const + double IFTDistribution2D::omegaY() const """ return _libBornAgainCore.IFTDistribution2D_omegaY(self) @@ -10723,7 +10702,7 @@ class FTDistribution2DVoigt(IFTDistribution2D): """ eta(FTDistribution2DVoigt self) -> double - double FTDistribution2DVoigt::eta() const + double FTDistribution2DVoigt::eta() const """ return _libBornAgainCore.FTDistribution2DVoigt_eta(self) @@ -10849,7 +10828,7 @@ class FixedBinAxis(IAxis): """ getBinCenter(FixedBinAxis self, size_t index) -> double - double FixedBinAxis::getBinCenter(size_t index) const + double FixedBinAxis::getBinCenter(size_t index) const """ return _libBornAgainCore.FixedBinAxis_getBinCenter(self, index) @@ -10871,7 +10850,7 @@ class FixedBinAxis(IAxis): """ getBinCenters(FixedBinAxis self) -> vdouble1d_t - std::vector< double > FixedBinAxis::getBinCenters() const + std::vector< double > FixedBinAxis::getBinCenters() const """ return _libBornAgainCore.FixedBinAxis_getBinCenters(self) @@ -10881,7 +10860,7 @@ class FixedBinAxis(IAxis): """ getBinBoundaries(FixedBinAxis self) -> vdouble1d_t - std::vector< double > FixedBinAxis::getBinBoundaries() const + std::vector< double > FixedBinAxis::getBinBoundaries() const """ return _libBornAgainCore.FixedBinAxis_getBinBoundaries(self) @@ -11708,7 +11687,7 @@ class PolyhedralEdge(_object): """ E(PolyhedralEdge self) -> kvector_t - kvector_t PolyhedralEdge::E() const + kvector_t PolyhedralEdge::E() const """ return _libBornAgainCore.PolyhedralEdge_E(self) @@ -11718,7 +11697,7 @@ class PolyhedralEdge(_object): """ R(PolyhedralEdge self) -> kvector_t - kvector_t PolyhedralEdge::R() const + kvector_t PolyhedralEdge::R() const """ return _libBornAgainCore.PolyhedralEdge_R(self) @@ -11728,7 +11707,7 @@ class PolyhedralEdge(_object): """ qE(PolyhedralEdge self, cvector_t q) -> complex_t - complex_t PolyhedralEdge::qE(cvector_t q) const + complex_t PolyhedralEdge::qE(cvector_t q) const """ return _libBornAgainCore.PolyhedralEdge_qE(self, q) @@ -11738,7 +11717,7 @@ class PolyhedralEdge(_object): """ qR(PolyhedralEdge self, cvector_t q) -> complex_t - complex_t PolyhedralEdge::qR(cvector_t q) const + complex_t PolyhedralEdge::qR(cvector_t q) const """ return _libBornAgainCore.PolyhedralEdge_qR(self, q) @@ -11814,7 +11793,7 @@ class PolyhedralFace(_object): """ area(PolyhedralFace self) -> double - double PolyhedralFace::area() const + double PolyhedralFace::area() const """ return _libBornAgainCore.PolyhedralFace_area(self) @@ -11824,7 +11803,7 @@ class PolyhedralFace(_object): """ center(PolyhedralFace self) -> kvector_t - kvector_t PolyhedralFace::center() const + kvector_t PolyhedralFace::center() const """ return _libBornAgainCore.PolyhedralFace_center(self) @@ -11834,7 +11813,7 @@ class PolyhedralFace(_object): """ pyramidalVolume(PolyhedralFace self) -> double - double PolyhedralFace::pyramidalVolume() const + double PolyhedralFace::pyramidalVolume() const """ return _libBornAgainCore.PolyhedralFace_pyramidalVolume(self) @@ -11844,7 +11823,7 @@ class PolyhedralFace(_object): """ radius3d(PolyhedralFace self) -> double - double PolyhedralFace::radius3d() const + double PolyhedralFace::radius3d() const """ return _libBornAgainCore.PolyhedralFace_radius3d(self) @@ -11945,7 +11924,7 @@ class FormFactorPolyhedron(IFormFactorBorn): """ 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 overridefinal Returns the form factor F(q) of this polyhedron, respecting the offset z_origin. @@ -11969,7 +11948,7 @@ class FormFactorPolyhedron(IFormFactorBorn): """ volume(FormFactorPolyhedron self) -> double - double FormFactorPolyhedron::volume() const override final + double FormFactorPolyhedron::volume() const overridefinal Returns the total volume of the particle of this form factor's shape. @@ -11981,7 +11960,7 @@ class FormFactorPolyhedron(IFormFactorBorn): """ radialExtension(FormFactorPolyhedron self) -> double - double FormFactorPolyhedron::radialExtension() const override final + double FormFactorPolyhedron::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations @@ -12032,7 +12011,7 @@ class FormFactorPolygonalPrism(IFormFactorBorn): """ evaluate_for_q(FormFactorPolygonalPrism self, cvector_t q) -> complex_t - complex_t FormFactorPolygonalPrism::evaluate_for_q(cvector_t q) const override final + complex_t FormFactorPolygonalPrism::evaluate_for_q(cvector_t q) const overridefinal Returns the form factor F(q) of this polyhedron, respecting the offset height/2. @@ -12044,7 +12023,7 @@ class FormFactorPolygonalPrism(IFormFactorBorn): """ volume(FormFactorPolygonalPrism self) -> double - double FormFactorPolygonalPrism::volume() const override final + double FormFactorPolygonalPrism::volume() const overridefinal Returns the volume of this prism. @@ -12056,7 +12035,7 @@ class FormFactorPolygonalPrism(IFormFactorBorn): """ getHeight(FormFactorPolygonalPrism self) -> double - double FormFactorPolygonalPrism::getHeight() const + double FormFactorPolygonalPrism::getHeight() const """ return _libBornAgainCore.FormFactorPolygonalPrism_getHeight(self) @@ -12066,7 +12045,7 @@ class FormFactorPolygonalPrism(IFormFactorBorn): """ radialExtension(FormFactorPolygonalPrism self) -> double - double FormFactorPolygonalPrism::radialExtension() const override final + double FormFactorPolygonalPrism::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations @@ -12105,7 +12084,7 @@ class FormFactorPolygonalSurface(IFormFactorBorn): """ evaluate_for_q(FormFactorPolygonalSurface self, cvector_t q) -> complex_t - complex_t FormFactorPolygonalSurface::evaluate_for_q(cvector_t q) const override final + complex_t FormFactorPolygonalSurface::evaluate_for_q(cvector_t q) const overridefinal Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. @@ -12129,7 +12108,7 @@ class FormFactorPolygonalSurface(IFormFactorBorn): """ radialExtension(FormFactorPolygonalSurface self) -> double - double FormFactorPolygonalSurface::radialExtension() const override final + double FormFactorPolygonalSurface::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations @@ -12195,7 +12174,7 @@ class FormFactorAnisoPyramid(FormFactorPolyhedron): """ clone(FormFactorAnisoPyramid self) -> FormFactorAnisoPyramid - FormFactorAnisoPyramid* FormFactorAnisoPyramid::clone() const override final + FormFactorAnisoPyramid* FormFactorAnisoPyramid::clone() const overridefinal Returns a clone of this ISample object. @@ -12207,7 +12186,7 @@ class FormFactorAnisoPyramid(FormFactorPolyhedron): """ accept(FormFactorAnisoPyramid self, INodeVisitor visitor) - void FormFactorAnisoPyramid::accept(INodeVisitor *visitor) const override final + void FormFactorAnisoPyramid::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -12219,7 +12198,7 @@ class FormFactorAnisoPyramid(FormFactorPolyhedron): """ getLength(FormFactorAnisoPyramid self) -> double - double FormFactorAnisoPyramid::getLength() const + double FormFactorAnisoPyramid::getLength() const """ return _libBornAgainCore.FormFactorAnisoPyramid_getLength(self) @@ -12229,7 +12208,7 @@ class FormFactorAnisoPyramid(FormFactorPolyhedron): """ getWidth(FormFactorAnisoPyramid self) -> double - double FormFactorAnisoPyramid::getWidth() const + double FormFactorAnisoPyramid::getWidth() const """ return _libBornAgainCore.FormFactorAnisoPyramid_getWidth(self) @@ -12239,7 +12218,7 @@ class FormFactorAnisoPyramid(FormFactorPolyhedron): """ getHeight(FormFactorAnisoPyramid self) -> double - double FormFactorAnisoPyramid::getHeight() const + double FormFactorAnisoPyramid::getHeight() const """ return _libBornAgainCore.FormFactorAnisoPyramid_getHeight(self) @@ -12249,7 +12228,7 @@ class FormFactorAnisoPyramid(FormFactorPolyhedron): """ getAlpha(FormFactorAnisoPyramid self) -> double - double FormFactorAnisoPyramid::getAlpha() const + double FormFactorAnisoPyramid::getAlpha() const """ return _libBornAgainCore.FormFactorAnisoPyramid_getAlpha(self) @@ -12310,7 +12289,7 @@ class FormFactorBox(IFormFactorBorn): """ clone(FormFactorBox self) -> FormFactorBox - FormFactorBox* FormFactorBox::clone() const override final + FormFactorBox* FormFactorBox::clone() const overridefinal Returns a clone of this ISample object. @@ -12322,7 +12301,7 @@ class FormFactorBox(IFormFactorBorn): """ accept(FormFactorBox self, INodeVisitor visitor) - void FormFactorBox::accept(INodeVisitor *visitor) const override final + void FormFactorBox::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -12334,7 +12313,7 @@ class FormFactorBox(IFormFactorBorn): """ getLength(FormFactorBox self) -> double - double FormFactorBox::getLength() const + double FormFactorBox::getLength() const """ return _libBornAgainCore.FormFactorBox_getLength(self) @@ -12344,7 +12323,7 @@ class FormFactorBox(IFormFactorBorn): """ getHeight(FormFactorBox self) -> double - double FormFactorBox::getHeight() const + double FormFactorBox::getHeight() const """ return _libBornAgainCore.FormFactorBox_getHeight(self) @@ -12354,7 +12333,7 @@ class FormFactorBox(IFormFactorBorn): """ getWidth(FormFactorBox self) -> double - double FormFactorBox::getWidth() const + double FormFactorBox::getWidth() const """ return _libBornAgainCore.FormFactorBox_getWidth(self) @@ -12364,7 +12343,7 @@ class FormFactorBox(IFormFactorBorn): """ radialExtension(FormFactorBox self) -> double - double FormFactorBox::radialExtension() const override final + double FormFactorBox::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations @@ -12376,7 +12355,7 @@ class FormFactorBox(IFormFactorBorn): """ evaluate_for_q(FormFactorBox self, cvector_t q) -> complex_t - complex_t FormFactorBox::evaluate_for_q(cvector_t q) const override final + complex_t FormFactorBox::evaluate_for_q(cvector_t q) const overridefinal Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. @@ -12439,7 +12418,7 @@ class FormFactorCone(IFormFactorBorn): """ clone(FormFactorCone self) -> FormFactorCone - FormFactorCone* FormFactorCone::clone() const override final + FormFactorCone* FormFactorCone::clone() const overridefinal Returns a clone of this ISample object. @@ -12451,7 +12430,7 @@ class FormFactorCone(IFormFactorBorn): """ accept(FormFactorCone self, INodeVisitor visitor) - void FormFactorCone::accept(INodeVisitor *visitor) const override final + void FormFactorCone::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -12463,7 +12442,7 @@ class FormFactorCone(IFormFactorBorn): """ getHeight(FormFactorCone self) -> double - double FormFactorCone::getHeight() const + double FormFactorCone::getHeight() const """ return _libBornAgainCore.FormFactorCone_getHeight(self) @@ -12473,7 +12452,7 @@ class FormFactorCone(IFormFactorBorn): """ getAlpha(FormFactorCone self) -> double - double FormFactorCone::getAlpha() const + double FormFactorCone::getAlpha() const """ return _libBornAgainCore.FormFactorCone_getAlpha(self) @@ -12483,7 +12462,7 @@ class FormFactorCone(IFormFactorBorn): """ getRadius(FormFactorCone self) -> double - double FormFactorCone::getRadius() const + double FormFactorCone::getRadius() const """ return _libBornAgainCore.FormFactorCone_getRadius(self) @@ -12493,7 +12472,7 @@ class FormFactorCone(IFormFactorBorn): """ radialExtension(FormFactorCone self) -> double - double FormFactorCone::radialExtension() const override final + double FormFactorCone::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations @@ -12505,7 +12484,7 @@ class FormFactorCone(IFormFactorBorn): """ evaluate_for_q(FormFactorCone self, cvector_t q) -> complex_t - complex_t FormFactorCone::evaluate_for_q(cvector_t q) const override final + complex_t FormFactorCone::evaluate_for_q(cvector_t q) const overridefinal Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. @@ -12568,7 +12547,7 @@ class FormFactorCone6(FormFactorPolyhedron): """ clone(FormFactorCone6 self) -> FormFactorCone6 - FormFactorCone6* FormFactorCone6::clone() const override final + FormFactorCone6* FormFactorCone6::clone() const overridefinal Returns a clone of this ISample object. @@ -12580,7 +12559,7 @@ class FormFactorCone6(FormFactorPolyhedron): """ accept(FormFactorCone6 self, INodeVisitor visitor) - void FormFactorCone6::accept(INodeVisitor *visitor) const override final + void FormFactorCone6::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -12592,7 +12571,7 @@ class FormFactorCone6(FormFactorPolyhedron): """ getBaseEdge(FormFactorCone6 self) -> double - double FormFactorCone6::getBaseEdge() const + double FormFactorCone6::getBaseEdge() const """ return _libBornAgainCore.FormFactorCone6_getBaseEdge(self) @@ -12602,7 +12581,7 @@ class FormFactorCone6(FormFactorPolyhedron): """ getHeight(FormFactorCone6 self) -> double - double FormFactorCone6::getHeight() const + double FormFactorCone6::getHeight() const """ return _libBornAgainCore.FormFactorCone6_getHeight(self) @@ -12612,7 +12591,7 @@ class FormFactorCone6(FormFactorPolyhedron): """ getAlpha(FormFactorCone6 self) -> double - double FormFactorCone6::getAlpha() const + double FormFactorCone6::getAlpha() const """ return _libBornAgainCore.FormFactorCone6_getAlpha(self) @@ -12661,7 +12640,7 @@ class FormFactorCrystal(IFormFactor): """ clone(FormFactorCrystal self) -> FormFactorCrystal - FormFactorCrystal* FormFactorCrystal::clone() const override final + FormFactorCrystal* FormFactorCrystal::clone() const overridefinal Returns a clone of this ISample object. @@ -12673,7 +12652,7 @@ class FormFactorCrystal(IFormFactor): """ accept(FormFactorCrystal self, INodeVisitor visitor) - void FormFactorCrystal::accept(INodeVisitor *visitor) const override final + void FormFactorCrystal::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -12697,7 +12676,7 @@ class FormFactorCrystal(IFormFactor): """ volume(FormFactorCrystal self) -> double - double FormFactorCrystal::volume() const override final + double FormFactorCrystal::volume() const overridefinal Returns the total volume of the particle of this form factor's shape. @@ -12709,7 +12688,7 @@ class FormFactorCrystal(IFormFactor): """ radialExtension(FormFactorCrystal self) -> double - double FormFactorCrystal::radialExtension() const override final + double FormFactorCrystal::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations @@ -12733,7 +12712,7 @@ class FormFactorCrystal(IFormFactor): """ topZ(FormFactorCrystal self, IRotation rotation) -> double - double FormFactorCrystal::topZ(const IRotation &rotation) const override final + double FormFactorCrystal::topZ(const IRotation &rotation) const overridefinal Returns the z-coordinate of the lowest point in this shape after a given rotation. @@ -12745,7 +12724,7 @@ class FormFactorCrystal(IFormFactor): """ evaluate(FormFactorCrystal self, WavevectorInfo wavevectors) -> complex_t - complex_t FormFactorCrystal::evaluate(const WavevectorInfo &wavevectors) const override final + complex_t FormFactorCrystal::evaluate(const WavevectorInfo &wavevectors) const overridefinal Returns scattering amplitude for complex wavevectors ki, kf. @@ -12809,7 +12788,7 @@ class FormFactorCuboctahedron(FormFactorPolyhedron): """ clone(FormFactorCuboctahedron self) -> FormFactorCuboctahedron - FormFactorCuboctahedron* FormFactorCuboctahedron::clone() const override final + FormFactorCuboctahedron* FormFactorCuboctahedron::clone() const overridefinal Returns a clone of this ISample object. @@ -12821,7 +12800,7 @@ class FormFactorCuboctahedron(FormFactorPolyhedron): """ accept(FormFactorCuboctahedron self, INodeVisitor visitor) - void FormFactorCuboctahedron::accept(INodeVisitor *visitor) const override final + void FormFactorCuboctahedron::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -12833,7 +12812,7 @@ class FormFactorCuboctahedron(FormFactorPolyhedron): """ getLength(FormFactorCuboctahedron self) -> double - double FormFactorCuboctahedron::getLength() const + double FormFactorCuboctahedron::getLength() const """ return _libBornAgainCore.FormFactorCuboctahedron_getLength(self) @@ -12843,7 +12822,7 @@ class FormFactorCuboctahedron(FormFactorPolyhedron): """ getHeight(FormFactorCuboctahedron self) -> double - double FormFactorCuboctahedron::getHeight() const + double FormFactorCuboctahedron::getHeight() const """ return _libBornAgainCore.FormFactorCuboctahedron_getHeight(self) @@ -12853,7 +12832,7 @@ class FormFactorCuboctahedron(FormFactorPolyhedron): """ getHeightRatio(FormFactorCuboctahedron self) -> double - double FormFactorCuboctahedron::getHeightRatio() const + double FormFactorCuboctahedron::getHeightRatio() const """ return _libBornAgainCore.FormFactorCuboctahedron_getHeightRatio(self) @@ -12863,7 +12842,7 @@ class FormFactorCuboctahedron(FormFactorPolyhedron): """ getAlpha(FormFactorCuboctahedron self) -> double - double FormFactorCuboctahedron::getAlpha() const + double FormFactorCuboctahedron::getAlpha() const """ return _libBornAgainCore.FormFactorCuboctahedron_getAlpha(self) @@ -12921,7 +12900,7 @@ class FormFactorCylinder(IFormFactorBorn): """ clone(FormFactorCylinder self) -> FormFactorCylinder - FormFactorCylinder* FormFactorCylinder::clone() const override final + FormFactorCylinder* FormFactorCylinder::clone() const overridefinal Returns a clone of this ISample object. @@ -12933,7 +12912,7 @@ class FormFactorCylinder(IFormFactorBorn): """ accept(FormFactorCylinder self, INodeVisitor visitor) - void FormFactorCylinder::accept(INodeVisitor *visitor) const override final + void FormFactorCylinder::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -12945,7 +12924,7 @@ class FormFactorCylinder(IFormFactorBorn): """ getHeight(FormFactorCylinder self) -> double - double FormFactorCylinder::getHeight() const + double FormFactorCylinder::getHeight() const """ return _libBornAgainCore.FormFactorCylinder_getHeight(self) @@ -12955,7 +12934,7 @@ class FormFactorCylinder(IFormFactorBorn): """ getRadius(FormFactorCylinder self) -> double - double FormFactorCylinder::getRadius() const + double FormFactorCylinder::getRadius() const """ return _libBornAgainCore.FormFactorCylinder_getRadius(self) @@ -12965,7 +12944,7 @@ class FormFactorCylinder(IFormFactorBorn): """ radialExtension(FormFactorCylinder self) -> double - double FormFactorCylinder::radialExtension() const override final + double FormFactorCylinder::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations @@ -12977,7 +12956,7 @@ class FormFactorCylinder(IFormFactorBorn): """ evaluate_for_q(FormFactorCylinder self, cvector_t q) -> complex_t - complex_t FormFactorCylinder::evaluate_for_q(cvector_t q) const override final + complex_t FormFactorCylinder::evaluate_for_q(cvector_t q) const overridefinal Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. @@ -13029,7 +13008,7 @@ class FormFactorDecoratorDebyeWaller(IFormFactorDecorator): """ clone(FormFactorDecoratorDebyeWaller self) -> FormFactorDecoratorDebyeWaller - FormFactorDecoratorDebyeWaller* FormFactorDecoratorDebyeWaller::clone() const override final + FormFactorDecoratorDebyeWaller* FormFactorDecoratorDebyeWaller::clone() const overridefinal Returns a clone of this ISample object. @@ -13041,7 +13020,7 @@ class FormFactorDecoratorDebyeWaller(IFormFactorDecorator): """ accept(FormFactorDecoratorDebyeWaller self, INodeVisitor visitor) - void FormFactorDecoratorDebyeWaller::accept(INodeVisitor *visitor) const override final + void FormFactorDecoratorDebyeWaller::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -13053,7 +13032,7 @@ class FormFactorDecoratorDebyeWaller(IFormFactorDecorator): """ evaluate(FormFactorDecoratorDebyeWaller self, WavevectorInfo wavevectors) -> complex_t - complex_t FormFactorDecoratorDebyeWaller::evaluate(const WavevectorInfo &wavevectors) const override final + complex_t FormFactorDecoratorDebyeWaller::evaluate(const WavevectorInfo &wavevectors) const overridefinal Returns scattering amplitude for complex wavevectors ki, kf. @@ -13118,7 +13097,7 @@ class FormFactorDodecahedron(FormFactorPolyhedron): """ clone(FormFactorDodecahedron self) -> FormFactorDodecahedron - FormFactorDodecahedron* FormFactorDodecahedron::clone() const override final + FormFactorDodecahedron* FormFactorDodecahedron::clone() const overridefinal Returns a clone of this ISample object. @@ -13130,7 +13109,7 @@ class FormFactorDodecahedron(FormFactorPolyhedron): """ accept(FormFactorDodecahedron self, INodeVisitor visitor) - void FormFactorDodecahedron::accept(INodeVisitor *visitor) const override final + void FormFactorDodecahedron::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -13142,7 +13121,7 @@ class FormFactorDodecahedron(FormFactorPolyhedron): """ getEdge(FormFactorDodecahedron self) -> double - double FormFactorDodecahedron::getEdge() const + double FormFactorDodecahedron::getEdge() const """ return _libBornAgainCore.FormFactorDodecahedron_getEdge(self) @@ -13189,7 +13168,7 @@ class FormFactorDot(IFormFactorBorn): """ clone(FormFactorDot self) -> FormFactorDot - FormFactorDot* FormFactorDot::clone() const override final + FormFactorDot* FormFactorDot::clone() const overridefinal Returns a clone of this ISample object. @@ -13201,7 +13180,7 @@ class FormFactorDot(IFormFactorBorn): """ accept(FormFactorDot self, INodeVisitor visitor) - void FormFactorDot::accept(INodeVisitor *visitor) const override final + void FormFactorDot::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -13213,7 +13192,7 @@ class FormFactorDot(IFormFactorBorn): """ radialExtension(FormFactorDot self) -> double - double FormFactorDot::radialExtension() const override final + double FormFactorDot::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations @@ -13225,7 +13204,7 @@ class FormFactorDot(IFormFactorBorn): """ evaluate_for_q(FormFactorDot self, cvector_t arg2) -> complex_t - complex_t FormFactorDot::evaluate_for_q(cvector_t) const override final + complex_t FormFactorDot::evaluate_for_q(cvector_t) const overridefinal Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. @@ -13288,7 +13267,7 @@ class FormFactorEllipsoidalCylinder(IFormFactorBorn): """ clone(FormFactorEllipsoidalCylinder self) -> FormFactorEllipsoidalCylinder - FormFactorEllipsoidalCylinder* FormFactorEllipsoidalCylinder::clone() const override final + FormFactorEllipsoidalCylinder* FormFactorEllipsoidalCylinder::clone() const overridefinal Returns a clone of this ISample object. @@ -13300,7 +13279,7 @@ class FormFactorEllipsoidalCylinder(IFormFactorBorn): """ accept(FormFactorEllipsoidalCylinder self, INodeVisitor visitor) - void FormFactorEllipsoidalCylinder::accept(INodeVisitor *visitor) const override final + void FormFactorEllipsoidalCylinder::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -13312,7 +13291,7 @@ class FormFactorEllipsoidalCylinder(IFormFactorBorn): """ getRadiusX(FormFactorEllipsoidalCylinder self) -> double - double FormFactorEllipsoidalCylinder::getRadiusX() const + double FormFactorEllipsoidalCylinder::getRadiusX() const """ return _libBornAgainCore.FormFactorEllipsoidalCylinder_getRadiusX(self) @@ -13322,7 +13301,7 @@ class FormFactorEllipsoidalCylinder(IFormFactorBorn): """ getRadiusY(FormFactorEllipsoidalCylinder self) -> double - double FormFactorEllipsoidalCylinder::getRadiusY() const + double FormFactorEllipsoidalCylinder::getRadiusY() const """ return _libBornAgainCore.FormFactorEllipsoidalCylinder_getRadiusY(self) @@ -13332,7 +13311,7 @@ class FormFactorEllipsoidalCylinder(IFormFactorBorn): """ getHeight(FormFactorEllipsoidalCylinder self) -> double - double FormFactorEllipsoidalCylinder::getHeight() const + double FormFactorEllipsoidalCylinder::getHeight() const """ return _libBornAgainCore.FormFactorEllipsoidalCylinder_getHeight(self) @@ -13342,7 +13321,7 @@ class FormFactorEllipsoidalCylinder(IFormFactorBorn): """ radialExtension(FormFactorEllipsoidalCylinder self) -> double - double FormFactorEllipsoidalCylinder::radialExtension() const override final + double FormFactorEllipsoidalCylinder::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations @@ -13354,7 +13333,7 @@ class FormFactorEllipsoidalCylinder(IFormFactorBorn): """ evaluate_for_q(FormFactorEllipsoidalCylinder self, cvector_t q) -> complex_t - complex_t FormFactorEllipsoidalCylinder::evaluate_for_q(cvector_t q) const override final + complex_t FormFactorEllipsoidalCylinder::evaluate_for_q(cvector_t q) const overridefinal Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. @@ -13411,7 +13390,7 @@ class FormFactorFullSphere(IFormFactorBorn): """ clone(FormFactorFullSphere self) -> FormFactorFullSphere - FormFactorFullSphere* FormFactorFullSphere::clone() const override final + FormFactorFullSphere* FormFactorFullSphere::clone() const overridefinal Returns a clone of this ISample object. @@ -13423,7 +13402,7 @@ class FormFactorFullSphere(IFormFactorBorn): """ accept(FormFactorFullSphere self, INodeVisitor visitor) - void FormFactorFullSphere::accept(INodeVisitor *visitor) const override final + void FormFactorFullSphere::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -13435,7 +13414,7 @@ class FormFactorFullSphere(IFormFactorBorn): """ getRadius(FormFactorFullSphere self) -> double - double FormFactorFullSphere::getRadius() const + double FormFactorFullSphere::getRadius() const """ return _libBornAgainCore.FormFactorFullSphere_getRadius(self) @@ -13445,7 +13424,7 @@ class FormFactorFullSphere(IFormFactorBorn): """ radialExtension(FormFactorFullSphere self) -> double - double FormFactorFullSphere::radialExtension() const override final + double FormFactorFullSphere::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations @@ -13457,7 +13436,7 @@ class FormFactorFullSphere(IFormFactorBorn): """ bottomZ(FormFactorFullSphere self, IRotation rotation) -> double - double FormFactorFullSphere::bottomZ(const IRotation &rotation) const override final + double FormFactorFullSphere::bottomZ(const IRotation &rotation) const overridefinal Returns the z-coordinate of the lowest point in this shape after a given rotation. @@ -13469,7 +13448,7 @@ class FormFactorFullSphere(IFormFactorBorn): """ topZ(FormFactorFullSphere self, IRotation rotation) -> double - double FormFactorFullSphere::topZ(const IRotation &rotation) const override final + double FormFactorFullSphere::topZ(const IRotation &rotation) const overridefinal Returns the z-coordinate of the lowest point in this shape after a given rotation. @@ -13481,7 +13460,7 @@ class FormFactorFullSphere(IFormFactorBorn): """ evaluate_for_q(FormFactorFullSphere self, cvector_t q) -> complex_t - complex_t FormFactorFullSphere::evaluate_for_q(cvector_t q) const override final + complex_t FormFactorFullSphere::evaluate_for_q(cvector_t q) const overridefinal Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. @@ -13541,7 +13520,7 @@ class FormFactorFullSpheroid(IFormFactorBorn): """ clone(FormFactorFullSpheroid self) -> FormFactorFullSpheroid - FormFactorFullSpheroid* FormFactorFullSpheroid::clone() const override final + FormFactorFullSpheroid* FormFactorFullSpheroid::clone() const overridefinal Returns a clone of this ISample object. @@ -13553,7 +13532,7 @@ class FormFactorFullSpheroid(IFormFactorBorn): """ accept(FormFactorFullSpheroid self, INodeVisitor visitor) - void FormFactorFullSpheroid::accept(INodeVisitor *visitor) const override final + void FormFactorFullSpheroid::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -13565,7 +13544,7 @@ class FormFactorFullSpheroid(IFormFactorBorn): """ getHeight(FormFactorFullSpheroid self) -> double - double FormFactorFullSpheroid::getHeight() const + double FormFactorFullSpheroid::getHeight() const """ return _libBornAgainCore.FormFactorFullSpheroid_getHeight(self) @@ -13575,7 +13554,7 @@ class FormFactorFullSpheroid(IFormFactorBorn): """ getRadius(FormFactorFullSpheroid self) -> double - double FormFactorFullSpheroid::getRadius() const + double FormFactorFullSpheroid::getRadius() const """ return _libBornAgainCore.FormFactorFullSpheroid_getRadius(self) @@ -13585,7 +13564,7 @@ class FormFactorFullSpheroid(IFormFactorBorn): """ radialExtension(FormFactorFullSpheroid self) -> double - double FormFactorFullSpheroid::radialExtension() const override final + double FormFactorFullSpheroid::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations @@ -13597,7 +13576,7 @@ class FormFactorFullSpheroid(IFormFactorBorn): """ evaluate_for_q(FormFactorFullSpheroid self, cvector_t q) -> complex_t - complex_t FormFactorFullSpheroid::evaluate_for_q(cvector_t q) const override final + complex_t FormFactorFullSpheroid::evaluate_for_q(cvector_t q) const overridefinal Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. @@ -13647,7 +13626,7 @@ class FormFactorGauss(IFormFactorBorn): """ clone(FormFactorGauss self) -> FormFactorGauss - FormFactorGauss* FormFactorGauss::clone() const override final + FormFactorGauss* FormFactorGauss::clone() const overridefinal Returns a clone of this ISample object. @@ -13659,7 +13638,7 @@ class FormFactorGauss(IFormFactorBorn): """ accept(FormFactorGauss self, INodeVisitor visitor) - void FormFactorGauss::accept(INodeVisitor *visitor) const override final + void FormFactorGauss::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -13671,7 +13650,7 @@ class FormFactorGauss(IFormFactorBorn): """ getWidth(FormFactorGauss self) -> double - double FormFactorGauss::getWidth() const + double FormFactorGauss::getWidth() const """ return _libBornAgainCore.FormFactorGauss_getWidth(self) @@ -13681,7 +13660,7 @@ class FormFactorGauss(IFormFactorBorn): """ getHeight(FormFactorGauss self) -> double - double FormFactorGauss::getHeight() const + double FormFactorGauss::getHeight() const """ return _libBornAgainCore.FormFactorGauss_getHeight(self) @@ -13691,7 +13670,7 @@ class FormFactorGauss(IFormFactorBorn): """ radialExtension(FormFactorGauss self) -> double - double FormFactorGauss::radialExtension() const override final + double FormFactorGauss::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations @@ -13703,7 +13682,7 @@ class FormFactorGauss(IFormFactorBorn): """ evaluate_for_q(FormFactorGauss self, cvector_t q) -> complex_t - complex_t FormFactorGauss::evaluate_for_q(cvector_t q) const override final + complex_t FormFactorGauss::evaluate_for_q(cvector_t q) const overridefinal Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. @@ -13768,7 +13747,7 @@ class FormFactorHemiEllipsoid(IFormFactorBorn): """ clone(FormFactorHemiEllipsoid self) -> FormFactorHemiEllipsoid - FormFactorHemiEllipsoid* FormFactorHemiEllipsoid::clone() const override final + FormFactorHemiEllipsoid* FormFactorHemiEllipsoid::clone() const overridefinal Returns a clone of this ISample object. @@ -13780,7 +13759,7 @@ class FormFactorHemiEllipsoid(IFormFactorBorn): """ accept(FormFactorHemiEllipsoid self, INodeVisitor visitor) - void FormFactorHemiEllipsoid::accept(INodeVisitor *visitor) const override final + void FormFactorHemiEllipsoid::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -13792,7 +13771,7 @@ class FormFactorHemiEllipsoid(IFormFactorBorn): """ getHeight(FormFactorHemiEllipsoid self) -> double - double FormFactorHemiEllipsoid::getHeight() const + double FormFactorHemiEllipsoid::getHeight() const """ return _libBornAgainCore.FormFactorHemiEllipsoid_getHeight(self) @@ -13802,7 +13781,7 @@ class FormFactorHemiEllipsoid(IFormFactorBorn): """ getRadiusX(FormFactorHemiEllipsoid self) -> double - double FormFactorHemiEllipsoid::getRadiusX() const + double FormFactorHemiEllipsoid::getRadiusX() const """ return _libBornAgainCore.FormFactorHemiEllipsoid_getRadiusX(self) @@ -13812,7 +13791,7 @@ class FormFactorHemiEllipsoid(IFormFactorBorn): """ getRadiusY(FormFactorHemiEllipsoid self) -> double - double FormFactorHemiEllipsoid::getRadiusY() const + double FormFactorHemiEllipsoid::getRadiusY() const """ return _libBornAgainCore.FormFactorHemiEllipsoid_getRadiusY(self) @@ -13822,7 +13801,7 @@ class FormFactorHemiEllipsoid(IFormFactorBorn): """ radialExtension(FormFactorHemiEllipsoid self) -> double - double FormFactorHemiEllipsoid::radialExtension() const override final + double FormFactorHemiEllipsoid::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations @@ -13834,7 +13813,7 @@ class FormFactorHemiEllipsoid(IFormFactorBorn): """ evaluate_for_q(FormFactorHemiEllipsoid self, cvector_t q) -> complex_t - complex_t FormFactorHemiEllipsoid::evaluate_for_q(cvector_t q) const override final + complex_t FormFactorHemiEllipsoid::evaluate_for_q(cvector_t q) const overridefinal Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. @@ -13889,7 +13868,7 @@ class FormFactorIcosahedron(FormFactorPolyhedron): """ clone(FormFactorIcosahedron self) -> FormFactorIcosahedron - FormFactorIcosahedron* FormFactorIcosahedron::clone() const override final + FormFactorIcosahedron* FormFactorIcosahedron::clone() const overridefinal Returns a clone of this ISample object. @@ -13901,7 +13880,7 @@ class FormFactorIcosahedron(FormFactorPolyhedron): """ accept(FormFactorIcosahedron self, INodeVisitor visitor) - void FormFactorIcosahedron::accept(INodeVisitor *visitor) const override final + void FormFactorIcosahedron::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -13913,7 +13892,7 @@ class FormFactorIcosahedron(FormFactorPolyhedron): """ getEdge(FormFactorIcosahedron self) -> double - double FormFactorIcosahedron::getEdge() const + double FormFactorIcosahedron::getEdge() const """ return _libBornAgainCore.FormFactorIcosahedron_getEdge(self) @@ -13974,7 +13953,7 @@ class FormFactorLongBoxGauss(IFormFactorBorn): """ clone(FormFactorLongBoxGauss self) -> FormFactorLongBoxGauss - FormFactorLongBoxGauss* FormFactorLongBoxGauss::clone() const override final + FormFactorLongBoxGauss* FormFactorLongBoxGauss::clone() const overridefinal Returns a clone of this ISample object. @@ -13986,7 +13965,7 @@ class FormFactorLongBoxGauss(IFormFactorBorn): """ accept(FormFactorLongBoxGauss self, INodeVisitor visitor) - void FormFactorLongBoxGauss::accept(INodeVisitor *visitor) const override final + void FormFactorLongBoxGauss::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -13998,7 +13977,7 @@ class FormFactorLongBoxGauss(IFormFactorBorn): """ getLength(FormFactorLongBoxGauss self) -> double - double FormFactorLongBoxGauss::getLength() const + double FormFactorLongBoxGauss::getLength() const """ return _libBornAgainCore.FormFactorLongBoxGauss_getLength(self) @@ -14008,7 +13987,7 @@ class FormFactorLongBoxGauss(IFormFactorBorn): """ getHeight(FormFactorLongBoxGauss self) -> double - double FormFactorLongBoxGauss::getHeight() const + double FormFactorLongBoxGauss::getHeight() const """ return _libBornAgainCore.FormFactorLongBoxGauss_getHeight(self) @@ -14018,7 +13997,7 @@ class FormFactorLongBoxGauss(IFormFactorBorn): """ getWidth(FormFactorLongBoxGauss self) -> double - double FormFactorLongBoxGauss::getWidth() const + double FormFactorLongBoxGauss::getWidth() const """ return _libBornAgainCore.FormFactorLongBoxGauss_getWidth(self) @@ -14028,7 +14007,7 @@ class FormFactorLongBoxGauss(IFormFactorBorn): """ radialExtension(FormFactorLongBoxGauss self) -> double - double FormFactorLongBoxGauss::radialExtension() const override final + double FormFactorLongBoxGauss::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations @@ -14040,7 +14019,7 @@ class FormFactorLongBoxGauss(IFormFactorBorn): """ evaluate_for_q(FormFactorLongBoxGauss self, cvector_t q) -> complex_t - complex_t FormFactorLongBoxGauss::evaluate_for_q(cvector_t q) const override final + complex_t FormFactorLongBoxGauss::evaluate_for_q(cvector_t q) const overridefinal Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. @@ -14103,7 +14082,7 @@ class FormFactorLongBoxLorentz(IFormFactorBorn): """ clone(FormFactorLongBoxLorentz self) -> FormFactorLongBoxLorentz - FormFactorLongBoxLorentz* FormFactorLongBoxLorentz::clone() const override final + FormFactorLongBoxLorentz* FormFactorLongBoxLorentz::clone() const overridefinal Returns a clone of this ISample object. @@ -14115,7 +14094,7 @@ class FormFactorLongBoxLorentz(IFormFactorBorn): """ accept(FormFactorLongBoxLorentz self, INodeVisitor visitor) - void FormFactorLongBoxLorentz::accept(INodeVisitor *visitor) const override final + void FormFactorLongBoxLorentz::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -14127,7 +14106,7 @@ class FormFactorLongBoxLorentz(IFormFactorBorn): """ getLength(FormFactorLongBoxLorentz self) -> double - double FormFactorLongBoxLorentz::getLength() const + double FormFactorLongBoxLorentz::getLength() const """ return _libBornAgainCore.FormFactorLongBoxLorentz_getLength(self) @@ -14137,7 +14116,7 @@ class FormFactorLongBoxLorentz(IFormFactorBorn): """ getHeight(FormFactorLongBoxLorentz self) -> double - double FormFactorLongBoxLorentz::getHeight() const + double FormFactorLongBoxLorentz::getHeight() const """ return _libBornAgainCore.FormFactorLongBoxLorentz_getHeight(self) @@ -14147,7 +14126,7 @@ class FormFactorLongBoxLorentz(IFormFactorBorn): """ getWidth(FormFactorLongBoxLorentz self) -> double - double FormFactorLongBoxLorentz::getWidth() const + double FormFactorLongBoxLorentz::getWidth() const """ return _libBornAgainCore.FormFactorLongBoxLorentz_getWidth(self) @@ -14157,7 +14136,7 @@ class FormFactorLongBoxLorentz(IFormFactorBorn): """ radialExtension(FormFactorLongBoxLorentz self) -> double - double FormFactorLongBoxLorentz::radialExtension() const override final + double FormFactorLongBoxLorentz::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations @@ -14169,7 +14148,7 @@ class FormFactorLongBoxLorentz(IFormFactorBorn): """ evaluate_for_q(FormFactorLongBoxLorentz self, cvector_t q) -> complex_t - complex_t FormFactorLongBoxLorentz::evaluate_for_q(cvector_t q) const override final + complex_t FormFactorLongBoxLorentz::evaluate_for_q(cvector_t q) const overridefinal Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. @@ -14232,7 +14211,7 @@ class FormFactorLongRipple1Gauss(IFormFactorBorn): """ clone(FormFactorLongRipple1Gauss self) -> FormFactorLongRipple1Gauss - FormFactorLongRipple1Gauss* FormFactorLongRipple1Gauss::clone() const override final + FormFactorLongRipple1Gauss* FormFactorLongRipple1Gauss::clone() const overridefinal Returns a clone of this ISample object. @@ -14244,7 +14223,7 @@ class FormFactorLongRipple1Gauss(IFormFactorBorn): """ accept(FormFactorLongRipple1Gauss self, INodeVisitor visitor) - void FormFactorLongRipple1Gauss::accept(INodeVisitor *visitor) const override final + void FormFactorLongRipple1Gauss::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -14256,7 +14235,7 @@ class FormFactorLongRipple1Gauss(IFormFactorBorn): """ getHeight(FormFactorLongRipple1Gauss self) -> double - double FormFactorLongRipple1Gauss::getHeight() const + double FormFactorLongRipple1Gauss::getHeight() const """ return _libBornAgainCore.FormFactorLongRipple1Gauss_getHeight(self) @@ -14266,7 +14245,7 @@ class FormFactorLongRipple1Gauss(IFormFactorBorn): """ getWidth(FormFactorLongRipple1Gauss self) -> double - double FormFactorLongRipple1Gauss::getWidth() const + double FormFactorLongRipple1Gauss::getWidth() const """ return _libBornAgainCore.FormFactorLongRipple1Gauss_getWidth(self) @@ -14276,7 +14255,7 @@ class FormFactorLongRipple1Gauss(IFormFactorBorn): """ getLength(FormFactorLongRipple1Gauss self) -> double - double FormFactorLongRipple1Gauss::getLength() const + double FormFactorLongRipple1Gauss::getLength() const """ return _libBornAgainCore.FormFactorLongRipple1Gauss_getLength(self) @@ -14286,7 +14265,7 @@ class FormFactorLongRipple1Gauss(IFormFactorBorn): """ radialExtension(FormFactorLongRipple1Gauss self) -> double - double FormFactorLongRipple1Gauss::radialExtension() const override final + double FormFactorLongRipple1Gauss::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations @@ -14298,7 +14277,7 @@ class FormFactorLongRipple1Gauss(IFormFactorBorn): """ evaluate_for_q(FormFactorLongRipple1Gauss self, cvector_t q) -> complex_t - complex_t FormFactorLongRipple1Gauss::evaluate_for_q(cvector_t q) const override final + complex_t FormFactorLongRipple1Gauss::evaluate_for_q(cvector_t q) const overridefinal Complex formfactor. @@ -14361,7 +14340,7 @@ class FormFactorLongRipple1Lorentz(IFormFactorBorn): """ clone(FormFactorLongRipple1Lorentz self) -> FormFactorLongRipple1Lorentz - FormFactorLongRipple1Lorentz* FormFactorLongRipple1Lorentz::clone() const override final + FormFactorLongRipple1Lorentz* FormFactorLongRipple1Lorentz::clone() const overridefinal Returns a clone of this ISample object. @@ -14373,7 +14352,7 @@ class FormFactorLongRipple1Lorentz(IFormFactorBorn): """ accept(FormFactorLongRipple1Lorentz self, INodeVisitor visitor) - void FormFactorLongRipple1Lorentz::accept(INodeVisitor *visitor) const override final + void FormFactorLongRipple1Lorentz::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -14385,7 +14364,7 @@ class FormFactorLongRipple1Lorentz(IFormFactorBorn): """ radialExtension(FormFactorLongRipple1Lorentz self) -> double - double FormFactorLongRipple1Lorentz::radialExtension() const override final + double FormFactorLongRipple1Lorentz::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations @@ -14397,7 +14376,7 @@ class FormFactorLongRipple1Lorentz(IFormFactorBorn): """ getHeight(FormFactorLongRipple1Lorentz self) -> double - double FormFactorLongRipple1Lorentz::getHeight() const + double FormFactorLongRipple1Lorentz::getHeight() const """ return _libBornAgainCore.FormFactorLongRipple1Lorentz_getHeight(self) @@ -14407,7 +14386,7 @@ class FormFactorLongRipple1Lorentz(IFormFactorBorn): """ getWidth(FormFactorLongRipple1Lorentz self) -> double - double FormFactorLongRipple1Lorentz::getWidth() const + double FormFactorLongRipple1Lorentz::getWidth() const """ return _libBornAgainCore.FormFactorLongRipple1Lorentz_getWidth(self) @@ -14417,7 +14396,7 @@ class FormFactorLongRipple1Lorentz(IFormFactorBorn): """ getLength(FormFactorLongRipple1Lorentz self) -> double - double FormFactorLongRipple1Lorentz::getLength() const + double FormFactorLongRipple1Lorentz::getLength() const """ return _libBornAgainCore.FormFactorLongRipple1Lorentz_getLength(self) @@ -14427,7 +14406,7 @@ class FormFactorLongRipple1Lorentz(IFormFactorBorn): """ evaluate_for_q(FormFactorLongRipple1Lorentz self, cvector_t q) -> complex_t - complex_t FormFactorLongRipple1Lorentz::evaluate_for_q(cvector_t q) const override final + complex_t FormFactorLongRipple1Lorentz::evaluate_for_q(cvector_t q) const overridefinal Complex formfactor. @@ -14493,7 +14472,7 @@ class FormFactorLongRipple2Gauss(IFormFactorBorn): """ clone(FormFactorLongRipple2Gauss self) -> FormFactorLongRipple2Gauss - FormFactorLongRipple2Gauss* FormFactorLongRipple2Gauss::clone() const override final + FormFactorLongRipple2Gauss* FormFactorLongRipple2Gauss::clone() const overridefinal Returns a clone of this ISample object. @@ -14505,7 +14484,7 @@ class FormFactorLongRipple2Gauss(IFormFactorBorn): """ accept(FormFactorLongRipple2Gauss self, INodeVisitor visitor) - void FormFactorLongRipple2Gauss::accept(INodeVisitor *visitor) const override final + void FormFactorLongRipple2Gauss::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -14517,7 +14496,7 @@ class FormFactorLongRipple2Gauss(IFormFactorBorn): """ getHeight(FormFactorLongRipple2Gauss self) -> double - double FormFactorLongRipple2Gauss::getHeight() const + double FormFactorLongRipple2Gauss::getHeight() const """ return _libBornAgainCore.FormFactorLongRipple2Gauss_getHeight(self) @@ -14527,7 +14506,7 @@ class FormFactorLongRipple2Gauss(IFormFactorBorn): """ getWidth(FormFactorLongRipple2Gauss self) -> double - double FormFactorLongRipple2Gauss::getWidth() const + double FormFactorLongRipple2Gauss::getWidth() const """ return _libBornAgainCore.FormFactorLongRipple2Gauss_getWidth(self) @@ -14537,7 +14516,7 @@ class FormFactorLongRipple2Gauss(IFormFactorBorn): """ getLength(FormFactorLongRipple2Gauss self) -> double - double FormFactorLongRipple2Gauss::getLength() const + double FormFactorLongRipple2Gauss::getLength() const """ return _libBornAgainCore.FormFactorLongRipple2Gauss_getLength(self) @@ -14547,7 +14526,7 @@ class FormFactorLongRipple2Gauss(IFormFactorBorn): """ getAsymmetry(FormFactorLongRipple2Gauss self) -> double - double FormFactorLongRipple2Gauss::getAsymmetry() const + double FormFactorLongRipple2Gauss::getAsymmetry() const """ return _libBornAgainCore.FormFactorLongRipple2Gauss_getAsymmetry(self) @@ -14557,7 +14536,7 @@ class FormFactorLongRipple2Gauss(IFormFactorBorn): """ radialExtension(FormFactorLongRipple2Gauss self) -> double - double FormFactorLongRipple2Gauss::radialExtension() const override final + double FormFactorLongRipple2Gauss::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations @@ -14569,7 +14548,7 @@ class FormFactorLongRipple2Gauss(IFormFactorBorn): """ evaluate_for_q(FormFactorLongRipple2Gauss self, cvector_t q) -> complex_t - complex_t FormFactorLongRipple2Gauss::evaluate_for_q(cvector_t q) const override final + complex_t FormFactorLongRipple2Gauss::evaluate_for_q(cvector_t q) const overridefinal Complex formfactor. @@ -14633,7 +14612,7 @@ class FormFactorLongRipple2Lorentz(IFormFactorBorn): """ clone(FormFactorLongRipple2Lorentz self) -> FormFactorLongRipple2Lorentz - FormFactorLongRipple2Lorentz* FormFactorLongRipple2Lorentz::clone() const override final + FormFactorLongRipple2Lorentz* FormFactorLongRipple2Lorentz::clone() const overridefinal Returns a clone of this ISample object. @@ -14645,7 +14624,7 @@ class FormFactorLongRipple2Lorentz(IFormFactorBorn): """ accept(FormFactorLongRipple2Lorentz self, INodeVisitor visitor) - void FormFactorLongRipple2Lorentz::accept(INodeVisitor *visitor) const override final + void FormFactorLongRipple2Lorentz::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -14657,7 +14636,7 @@ class FormFactorLongRipple2Lorentz(IFormFactorBorn): """ getHeight(FormFactorLongRipple2Lorentz self) -> double - double FormFactorLongRipple2Lorentz::getHeight() const + double FormFactorLongRipple2Lorentz::getHeight() const """ return _libBornAgainCore.FormFactorLongRipple2Lorentz_getHeight(self) @@ -14667,7 +14646,7 @@ class FormFactorLongRipple2Lorentz(IFormFactorBorn): """ getWidth(FormFactorLongRipple2Lorentz self) -> double - double FormFactorLongRipple2Lorentz::getWidth() const + double FormFactorLongRipple2Lorentz::getWidth() const """ return _libBornAgainCore.FormFactorLongRipple2Lorentz_getWidth(self) @@ -14677,7 +14656,7 @@ class FormFactorLongRipple2Lorentz(IFormFactorBorn): """ getLength(FormFactorLongRipple2Lorentz self) -> double - double FormFactorLongRipple2Lorentz::getLength() const + double FormFactorLongRipple2Lorentz::getLength() const """ return _libBornAgainCore.FormFactorLongRipple2Lorentz_getLength(self) @@ -14687,7 +14666,7 @@ class FormFactorLongRipple2Lorentz(IFormFactorBorn): """ getAsymmetry(FormFactorLongRipple2Lorentz self) -> double - double FormFactorLongRipple2Lorentz::getAsymmetry() const + double FormFactorLongRipple2Lorentz::getAsymmetry() const """ return _libBornAgainCore.FormFactorLongRipple2Lorentz_getAsymmetry(self) @@ -14697,7 +14676,7 @@ class FormFactorLongRipple2Lorentz(IFormFactorBorn): """ radialExtension(FormFactorLongRipple2Lorentz self) -> double - double FormFactorLongRipple2Lorentz::radialExtension() const override final + double FormFactorLongRipple2Lorentz::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations @@ -14709,7 +14688,7 @@ class FormFactorLongRipple2Lorentz(IFormFactorBorn): """ evaluate_for_q(FormFactorLongRipple2Lorentz self, cvector_t q) -> complex_t - complex_t FormFactorLongRipple2Lorentz::evaluate_for_q(cvector_t q) const override final + complex_t FormFactorLongRipple2Lorentz::evaluate_for_q(cvector_t q) const overridefinal Complex formfactor. @@ -14759,7 +14738,7 @@ class FormFactorLorentz(IFormFactorBorn): """ clone(FormFactorLorentz self) -> FormFactorLorentz - FormFactorLorentz* FormFactorLorentz::clone() const override final + FormFactorLorentz* FormFactorLorentz::clone() const overridefinal Returns a clone of this ISample object. @@ -14771,7 +14750,7 @@ class FormFactorLorentz(IFormFactorBorn): """ accept(FormFactorLorentz self, INodeVisitor visitor) - void FormFactorLorentz::accept(INodeVisitor *visitor) const override final + void FormFactorLorentz::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -14783,7 +14762,7 @@ class FormFactorLorentz(IFormFactorBorn): """ getWidth(FormFactorLorentz self) -> double - double FormFactorLorentz::getWidth() const + double FormFactorLorentz::getWidth() const """ return _libBornAgainCore.FormFactorLorentz_getWidth(self) @@ -14793,7 +14772,7 @@ class FormFactorLorentz(IFormFactorBorn): """ getHeight(FormFactorLorentz self) -> double - double FormFactorLorentz::getHeight() const + double FormFactorLorentz::getHeight() const """ return _libBornAgainCore.FormFactorLorentz_getHeight(self) @@ -14803,7 +14782,7 @@ class FormFactorLorentz(IFormFactorBorn): """ radialExtension(FormFactorLorentz self) -> double - double FormFactorLorentz::radialExtension() const override final + double FormFactorLorentz::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations @@ -14815,7 +14794,7 @@ class FormFactorLorentz(IFormFactorBorn): """ evaluate_for_q(FormFactorLorentz self, cvector_t q) -> complex_t - complex_t FormFactorLorentz::evaluate_for_q(cvector_t q) const override final + complex_t FormFactorLorentz::evaluate_for_q(cvector_t q) const overridefinal Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. @@ -14875,7 +14854,7 @@ class FormFactorPrism3(FormFactorPolygonalPrism): """ clone(FormFactorPrism3 self) -> FormFactorPrism3 - FormFactorPrism3* FormFactorPrism3::clone() const override final + FormFactorPrism3* FormFactorPrism3::clone() const overridefinal Returns a clone of this ISample object. @@ -14887,7 +14866,7 @@ class FormFactorPrism3(FormFactorPolygonalPrism): """ accept(FormFactorPrism3 self, INodeVisitor visitor) - void FormFactorPrism3::accept(INodeVisitor *visitor) const override final + void FormFactorPrism3::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -14899,7 +14878,7 @@ class FormFactorPrism3(FormFactorPolygonalPrism): """ getBaseEdge(FormFactorPrism3 self) -> double - double FormFactorPrism3::getBaseEdge() const + double FormFactorPrism3::getBaseEdge() const """ return _libBornAgainCore.FormFactorPrism3_getBaseEdge(self) @@ -14957,7 +14936,7 @@ class FormFactorPrism6(FormFactorPolygonalPrism): """ clone(FormFactorPrism6 self) -> FormFactorPrism6 - FormFactorPrism6* FormFactorPrism6::clone() const override final + FormFactorPrism6* FormFactorPrism6::clone() const overridefinal Returns a clone of this ISample object. @@ -14969,7 +14948,7 @@ class FormFactorPrism6(FormFactorPolygonalPrism): """ accept(FormFactorPrism6 self, INodeVisitor visitor) - void FormFactorPrism6::accept(INodeVisitor *visitor) const override final + void FormFactorPrism6::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -14981,7 +14960,7 @@ class FormFactorPrism6(FormFactorPolygonalPrism): """ getBaseEdge(FormFactorPrism6 self) -> double - double FormFactorPrism6::getBaseEdge() const + double FormFactorPrism6::getBaseEdge() const """ return _libBornAgainCore.FormFactorPrism6_getBaseEdge(self) @@ -15042,7 +15021,7 @@ class FormFactorPyramid(FormFactorPolyhedron): """ clone(FormFactorPyramid self) -> FormFactorPyramid - FormFactorPyramid* FormFactorPyramid::clone() const override final + FormFactorPyramid* FormFactorPyramid::clone() const overridefinal Returns a clone of this ISample object. @@ -15054,7 +15033,7 @@ class FormFactorPyramid(FormFactorPolyhedron): """ accept(FormFactorPyramid self, INodeVisitor visitor) - void FormFactorPyramid::accept(INodeVisitor *visitor) const override final + void FormFactorPyramid::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -15066,7 +15045,7 @@ class FormFactorPyramid(FormFactorPolyhedron): """ getHeight(FormFactorPyramid self) -> double - double FormFactorPyramid::getHeight() const + double FormFactorPyramid::getHeight() const """ return _libBornAgainCore.FormFactorPyramid_getHeight(self) @@ -15076,7 +15055,7 @@ class FormFactorPyramid(FormFactorPolyhedron): """ getBaseEdge(FormFactorPyramid self) -> double - double FormFactorPyramid::getBaseEdge() const + double FormFactorPyramid::getBaseEdge() const """ return _libBornAgainCore.FormFactorPyramid_getBaseEdge(self) @@ -15086,7 +15065,7 @@ class FormFactorPyramid(FormFactorPolyhedron): """ getAlpha(FormFactorPyramid self) -> double - double FormFactorPyramid::getAlpha() const + double FormFactorPyramid::getAlpha() const """ return _libBornAgainCore.FormFactorPyramid_getAlpha(self) @@ -15147,7 +15126,7 @@ class FormFactorRipple1(IFormFactorBorn): """ clone(FormFactorRipple1 self) -> FormFactorRipple1 - FormFactorRipple1* FormFactorRipple1::clone() const override final + FormFactorRipple1* FormFactorRipple1::clone() const overridefinal Returns a clone of this ISample object. @@ -15159,7 +15138,7 @@ class FormFactorRipple1(IFormFactorBorn): """ accept(FormFactorRipple1 self, INodeVisitor visitor) - void FormFactorRipple1::accept(INodeVisitor *visitor) const override final + void FormFactorRipple1::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -15171,7 +15150,7 @@ class FormFactorRipple1(IFormFactorBorn): """ getLength(FormFactorRipple1 self) -> double - double FormFactorRipple1::getLength() const + double FormFactorRipple1::getLength() const """ return _libBornAgainCore.FormFactorRipple1_getLength(self) @@ -15181,7 +15160,7 @@ class FormFactorRipple1(IFormFactorBorn): """ getHeight(FormFactorRipple1 self) -> double - double FormFactorRipple1::getHeight() const + double FormFactorRipple1::getHeight() const """ return _libBornAgainCore.FormFactorRipple1_getHeight(self) @@ -15191,7 +15170,7 @@ class FormFactorRipple1(IFormFactorBorn): """ getWidth(FormFactorRipple1 self) -> double - double FormFactorRipple1::getWidth() const + double FormFactorRipple1::getWidth() const """ return _libBornAgainCore.FormFactorRipple1_getWidth(self) @@ -15201,7 +15180,7 @@ class FormFactorRipple1(IFormFactorBorn): """ radialExtension(FormFactorRipple1 self) -> double - double FormFactorRipple1::radialExtension() const override final + double FormFactorRipple1::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations @@ -15213,7 +15192,7 @@ class FormFactorRipple1(IFormFactorBorn): """ evaluate_for_q(FormFactorRipple1 self, cvector_t q) -> complex_t - complex_t FormFactorRipple1::evaluate_for_q(cvector_t q) const override final + complex_t FormFactorRipple1::evaluate_for_q(cvector_t q) const overridefinal Complex formfactor. @@ -15279,7 +15258,7 @@ class FormFactorRipple2(IFormFactorBorn): """ clone(FormFactorRipple2 self) -> FormFactorRipple2 - FormFactorRipple2* FormFactorRipple2::clone() const override final + FormFactorRipple2* FormFactorRipple2::clone() const overridefinal Returns a clone of this ISample object. @@ -15291,7 +15270,7 @@ class FormFactorRipple2(IFormFactorBorn): """ accept(FormFactorRipple2 self, INodeVisitor visitor) - void FormFactorRipple2::accept(INodeVisitor *visitor) const override final + void FormFactorRipple2::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -15303,7 +15282,7 @@ class FormFactorRipple2(IFormFactorBorn): """ getHeight(FormFactorRipple2 self) -> double - double FormFactorRipple2::getHeight() const + double FormFactorRipple2::getHeight() const """ return _libBornAgainCore.FormFactorRipple2_getHeight(self) @@ -15313,7 +15292,7 @@ class FormFactorRipple2(IFormFactorBorn): """ getWidth(FormFactorRipple2 self) -> double - double FormFactorRipple2::getWidth() const + double FormFactorRipple2::getWidth() const """ return _libBornAgainCore.FormFactorRipple2_getWidth(self) @@ -15323,7 +15302,7 @@ class FormFactorRipple2(IFormFactorBorn): """ getLength(FormFactorRipple2 self) -> double - double FormFactorRipple2::getLength() const + double FormFactorRipple2::getLength() const """ return _libBornAgainCore.FormFactorRipple2_getLength(self) @@ -15333,7 +15312,7 @@ class FormFactorRipple2(IFormFactorBorn): """ getAsymmetry(FormFactorRipple2 self) -> double - double FormFactorRipple2::getAsymmetry() const + double FormFactorRipple2::getAsymmetry() const """ return _libBornAgainCore.FormFactorRipple2_getAsymmetry(self) @@ -15343,7 +15322,7 @@ class FormFactorRipple2(IFormFactorBorn): """ radialExtension(FormFactorRipple2 self) -> double - double FormFactorRipple2::radialExtension() const override final + double FormFactorRipple2::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations @@ -15355,7 +15334,7 @@ class FormFactorRipple2(IFormFactorBorn): """ evaluate_for_q(FormFactorRipple2 self, cvector_t q) -> complex_t - complex_t FormFactorRipple2::evaluate_for_q(cvector_t q) const override final + complex_t FormFactorRipple2::evaluate_for_q(cvector_t q) const overridefinal Complex formfactor. @@ -15404,7 +15383,7 @@ class FormFactorSphereGaussianRadius(IFormFactorBorn): """ clone(FormFactorSphereGaussianRadius self) -> FormFactorSphereGaussianRadius - FormFactorSphereGaussianRadius* FormFactorSphereGaussianRadius::clone() const override final + FormFactorSphereGaussianRadius* FormFactorSphereGaussianRadius::clone() const overridefinal Returns a clone of this ISample object. @@ -15416,7 +15395,7 @@ class FormFactorSphereGaussianRadius(IFormFactorBorn): """ accept(FormFactorSphereGaussianRadius self, INodeVisitor visitor) - void FormFactorSphereGaussianRadius::accept(INodeVisitor *visitor) const override final + void FormFactorSphereGaussianRadius::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -15428,7 +15407,7 @@ class FormFactorSphereGaussianRadius(IFormFactorBorn): """ radialExtension(FormFactorSphereGaussianRadius self) -> double - double FormFactorSphereGaussianRadius::radialExtension() const override final + double FormFactorSphereGaussianRadius::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations @@ -15440,7 +15419,7 @@ class FormFactorSphereGaussianRadius(IFormFactorBorn): """ evaluate_for_q(FormFactorSphereGaussianRadius self, cvector_t q) -> complex_t - complex_t FormFactorSphereGaussianRadius::evaluate_for_q(cvector_t q) const override final + complex_t FormFactorSphereGaussianRadius::evaluate_for_q(cvector_t q) const overridefinal Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. @@ -15489,7 +15468,7 @@ class FormFactorSphereLogNormalRadius(IFormFactorBorn): """ clone(FormFactorSphereLogNormalRadius self) -> FormFactorSphereLogNormalRadius - FormFactorSphereLogNormalRadius* FormFactorSphereLogNormalRadius::clone() const override final + FormFactorSphereLogNormalRadius* FormFactorSphereLogNormalRadius::clone() const overridefinal Returns a clone of this ISample object. @@ -15501,7 +15480,7 @@ class FormFactorSphereLogNormalRadius(IFormFactorBorn): """ accept(FormFactorSphereLogNormalRadius self, INodeVisitor visitor) - void FormFactorSphereLogNormalRadius::accept(INodeVisitor *visitor) const override final + void FormFactorSphereLogNormalRadius::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -15513,7 +15492,7 @@ class FormFactorSphereLogNormalRadius(IFormFactorBorn): """ radialExtension(FormFactorSphereLogNormalRadius self) -> double - double FormFactorSphereLogNormalRadius::radialExtension() const override final + double FormFactorSphereLogNormalRadius::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations @@ -15525,7 +15504,7 @@ class FormFactorSphereLogNormalRadius(IFormFactorBorn): """ evaluate_for_q(FormFactorSphereLogNormalRadius self, cvector_t q) -> complex_t - complex_t FormFactorSphereLogNormalRadius::evaluate_for_q(cvector_t q) const override final + complex_t FormFactorSphereLogNormalRadius::evaluate_for_q(cvector_t q) const overridefinal Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. @@ -15574,7 +15553,7 @@ class FormFactorSphereUniformRadius(IFormFactorBorn): """ clone(FormFactorSphereUniformRadius self) -> FormFactorSphereUniformRadius - FormFactorSphereUniformRadius* FormFactorSphereUniformRadius::clone() const override final + FormFactorSphereUniformRadius* FormFactorSphereUniformRadius::clone() const overridefinal Returns a clone of this ISample object. @@ -15586,7 +15565,7 @@ class FormFactorSphereUniformRadius(IFormFactorBorn): """ accept(FormFactorSphereUniformRadius self, INodeVisitor visitor) - void FormFactorSphereUniformRadius::accept(INodeVisitor *visitor) const override final + void FormFactorSphereUniformRadius::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -15598,7 +15577,7 @@ class FormFactorSphereUniformRadius(IFormFactorBorn): """ radialExtension(FormFactorSphereUniformRadius self) -> double - double FormFactorSphereUniformRadius::radialExtension() const override final + double FormFactorSphereUniformRadius::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations @@ -15610,7 +15589,7 @@ class FormFactorSphereUniformRadius(IFormFactorBorn): """ evaluate_for_q(FormFactorSphereUniformRadius self, cvector_t q) -> complex_t - complex_t FormFactorSphereUniformRadius::evaluate_for_q(cvector_t q) const override final + complex_t FormFactorSphereUniformRadius::evaluate_for_q(cvector_t q) const overridefinal Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. @@ -15673,7 +15652,7 @@ class FormFactorTetrahedron(FormFactorPolyhedron): """ clone(FormFactorTetrahedron self) -> FormFactorTetrahedron - FormFactorTetrahedron* FormFactorTetrahedron::clone() const override final + FormFactorTetrahedron* FormFactorTetrahedron::clone() const overridefinal Returns a clone of this ISample object. @@ -15685,7 +15664,7 @@ class FormFactorTetrahedron(FormFactorPolyhedron): """ accept(FormFactorTetrahedron self, INodeVisitor visitor) - void FormFactorTetrahedron::accept(INodeVisitor *visitor) const override final + void FormFactorTetrahedron::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -15697,7 +15676,7 @@ class FormFactorTetrahedron(FormFactorPolyhedron): """ getBaseEdge(FormFactorTetrahedron self) -> double - double FormFactorTetrahedron::getBaseEdge() const + double FormFactorTetrahedron::getBaseEdge() const """ return _libBornAgainCore.FormFactorTetrahedron_getBaseEdge(self) @@ -15707,7 +15686,7 @@ class FormFactorTetrahedron(FormFactorPolyhedron): """ getHeight(FormFactorTetrahedron self) -> double - double FormFactorTetrahedron::getHeight() const + double FormFactorTetrahedron::getHeight() const """ return _libBornAgainCore.FormFactorTetrahedron_getHeight(self) @@ -15717,7 +15696,7 @@ class FormFactorTetrahedron(FormFactorPolyhedron): """ getAlpha(FormFactorTetrahedron self) -> double - double FormFactorTetrahedron::getAlpha() const + double FormFactorTetrahedron::getAlpha() const """ return _libBornAgainCore.FormFactorTetrahedron_getAlpha(self) @@ -15775,7 +15754,7 @@ class FormFactorTruncatedCube(FormFactorPolyhedron): """ clone(FormFactorTruncatedCube self) -> FormFactorTruncatedCube - FormFactorTruncatedCube* FormFactorTruncatedCube::clone() const override final + FormFactorTruncatedCube* FormFactorTruncatedCube::clone() const overridefinal Returns a clone of this ISample object. @@ -15787,7 +15766,7 @@ class FormFactorTruncatedCube(FormFactorPolyhedron): """ accept(FormFactorTruncatedCube self, INodeVisitor visitor) - void FormFactorTruncatedCube::accept(INodeVisitor *visitor) const override final + void FormFactorTruncatedCube::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -15799,7 +15778,7 @@ class FormFactorTruncatedCube(FormFactorPolyhedron): """ getLength(FormFactorTruncatedCube self) -> double - double FormFactorTruncatedCube::getLength() const + double FormFactorTruncatedCube::getLength() const """ return _libBornAgainCore.FormFactorTruncatedCube_getLength(self) @@ -15809,7 +15788,7 @@ class FormFactorTruncatedCube(FormFactorPolyhedron): """ getRemovedLength(FormFactorTruncatedCube self) -> double - double FormFactorTruncatedCube::getRemovedLength() const + double FormFactorTruncatedCube::getRemovedLength() const """ return _libBornAgainCore.FormFactorTruncatedCube_getRemovedLength(self) @@ -15871,7 +15850,7 @@ class FormFactorTruncatedSphere(IFormFactorBorn): """ clone(FormFactorTruncatedSphere self) -> FormFactorTruncatedSphere - FormFactorTruncatedSphere* FormFactorTruncatedSphere::clone() const override final + FormFactorTruncatedSphere* FormFactorTruncatedSphere::clone() const overridefinal Returns a clone of this ISample object. @@ -15883,7 +15862,7 @@ class FormFactorTruncatedSphere(IFormFactorBorn): """ accept(FormFactorTruncatedSphere self, INodeVisitor visitor) - void FormFactorTruncatedSphere::accept(INodeVisitor *visitor) const override final + void FormFactorTruncatedSphere::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -15895,7 +15874,7 @@ class FormFactorTruncatedSphere(IFormFactorBorn): """ getHeight(FormFactorTruncatedSphere self) -> double - double FormFactorTruncatedSphere::getHeight() const + double FormFactorTruncatedSphere::getHeight() const """ return _libBornAgainCore.FormFactorTruncatedSphere_getHeight(self) @@ -15905,7 +15884,7 @@ class FormFactorTruncatedSphere(IFormFactorBorn): """ getRadius(FormFactorTruncatedSphere self) -> double - double FormFactorTruncatedSphere::getRadius() const + double FormFactorTruncatedSphere::getRadius() const """ return _libBornAgainCore.FormFactorTruncatedSphere_getRadius(self) @@ -15915,7 +15894,7 @@ class FormFactorTruncatedSphere(IFormFactorBorn): """ getRemovedTop(FormFactorTruncatedSphere self) -> double - double FormFactorTruncatedSphere::getRemovedTop() const + double FormFactorTruncatedSphere::getRemovedTop() const """ return _libBornAgainCore.FormFactorTruncatedSphere_getRemovedTop(self) @@ -15925,7 +15904,7 @@ class FormFactorTruncatedSphere(IFormFactorBorn): """ radialExtension(FormFactorTruncatedSphere self) -> double - double FormFactorTruncatedSphere::radialExtension() const override final + double FormFactorTruncatedSphere::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations @@ -15937,7 +15916,7 @@ class FormFactorTruncatedSphere(IFormFactorBorn): """ evaluate_for_q(FormFactorTruncatedSphere self, cvector_t q) -> complex_t - complex_t FormFactorTruncatedSphere::evaluate_for_q(cvector_t q) const override final + complex_t FormFactorTruncatedSphere::evaluate_for_q(cvector_t q) const overridefinal Complex formfactor. @@ -16004,7 +15983,7 @@ class FormFactorTruncatedSpheroid(IFormFactorBorn): """ clone(FormFactorTruncatedSpheroid self) -> FormFactorTruncatedSpheroid - FormFactorTruncatedSpheroid* FormFactorTruncatedSpheroid::clone() const override final + FormFactorTruncatedSpheroid* FormFactorTruncatedSpheroid::clone() const overridefinal Returns a clone of this ISample object. @@ -16016,7 +15995,7 @@ class FormFactorTruncatedSpheroid(IFormFactorBorn): """ accept(FormFactorTruncatedSpheroid self, INodeVisitor visitor) - void FormFactorTruncatedSpheroid::accept(INodeVisitor *visitor) const override final + void FormFactorTruncatedSpheroid::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -16028,7 +16007,7 @@ class FormFactorTruncatedSpheroid(IFormFactorBorn): """ getRadius(FormFactorTruncatedSpheroid self) -> double - double FormFactorTruncatedSpheroid::getRadius() const + double FormFactorTruncatedSpheroid::getRadius() const """ return _libBornAgainCore.FormFactorTruncatedSpheroid_getRadius(self) @@ -16038,7 +16017,7 @@ class FormFactorTruncatedSpheroid(IFormFactorBorn): """ getHeight(FormFactorTruncatedSpheroid self) -> double - double FormFactorTruncatedSpheroid::getHeight() const + double FormFactorTruncatedSpheroid::getHeight() const """ return _libBornAgainCore.FormFactorTruncatedSpheroid_getHeight(self) @@ -16048,7 +16027,7 @@ class FormFactorTruncatedSpheroid(IFormFactorBorn): """ getHeightFlattening(FormFactorTruncatedSpheroid self) -> double - double FormFactorTruncatedSpheroid::getHeightFlattening() const + double FormFactorTruncatedSpheroid::getHeightFlattening() const """ return _libBornAgainCore.FormFactorTruncatedSpheroid_getHeightFlattening(self) @@ -16058,7 +16037,7 @@ class FormFactorTruncatedSpheroid(IFormFactorBorn): """ getRemovedTop(FormFactorTruncatedSpheroid self) -> double - double FormFactorTruncatedSpheroid::getRemovedTop() const + double FormFactorTruncatedSpheroid::getRemovedTop() const """ return _libBornAgainCore.FormFactorTruncatedSpheroid_getRemovedTop(self) @@ -16068,7 +16047,7 @@ class FormFactorTruncatedSpheroid(IFormFactorBorn): """ radialExtension(FormFactorTruncatedSpheroid self) -> double - double FormFactorTruncatedSpheroid::radialExtension() const override final + double FormFactorTruncatedSpheroid::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations @@ -16080,7 +16059,7 @@ class FormFactorTruncatedSpheroid(IFormFactorBorn): """ evaluate_for_q(FormFactorTruncatedSpheroid self, cvector_t q) -> complex_t - complex_t FormFactorTruncatedSpheroid::evaluate_for_q(cvector_t q) const override final + complex_t FormFactorTruncatedSpheroid::evaluate_for_q(cvector_t q) const overridefinal Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. @@ -16133,7 +16112,7 @@ class FormFactorWeighted(IFormFactor): """ clone(FormFactorWeighted self) -> FormFactorWeighted - FormFactorWeighted * FormFactorWeighted::clone() const override final + FormFactorWeighted * FormFactorWeighted::clone() const overridefinal Returns a clone of this ISample object. @@ -16145,7 +16124,7 @@ class FormFactorWeighted(IFormFactor): """ accept(FormFactorWeighted self, INodeVisitor visitor) - void FormFactorWeighted::accept(INodeVisitor *visitor) const override final + void FormFactorWeighted::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -16157,7 +16136,7 @@ class FormFactorWeighted(IFormFactor): """ radialExtension(FormFactorWeighted self) -> double - double FormFactorWeighted::radialExtension() const override final + double FormFactorWeighted::radialExtension() const overridefinal Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations @@ -16169,7 +16148,7 @@ class FormFactorWeighted(IFormFactor): """ bottomZ(FormFactorWeighted self, IRotation rotation) -> double - double FormFactorWeighted::bottomZ(const IRotation &rotation) const override final + double FormFactorWeighted::bottomZ(const IRotation &rotation) const overridefinal Returns the z-coordinate of the lowest point in this shape after a given rotation. @@ -16181,7 +16160,7 @@ class FormFactorWeighted(IFormFactor): """ topZ(FormFactorWeighted self, IRotation rotation) -> double - double FormFactorWeighted::topZ(const IRotation &rotation) const override final + double FormFactorWeighted::topZ(const IRotation &rotation) const overridefinal Returns the z-coordinate of the lowest point in this shape after a given rotation. @@ -16204,7 +16183,7 @@ class FormFactorWeighted(IFormFactor): """ setAmbientMaterial(FormFactorWeighted self, Material material) - void FormFactorWeighted::setAmbientMaterial(Material material) override final + void FormFactorWeighted::setAmbientMaterial(Material material) overridefinal Passes the material in which this particle is embedded. @@ -16216,7 +16195,7 @@ class FormFactorWeighted(IFormFactor): """ evaluate(FormFactorWeighted self, WavevectorInfo wavevectors) -> complex_t - complex_t FormFactorWeighted::evaluate(const WavevectorInfo &wavevectors) const override final + complex_t FormFactorWeighted::evaluate(const WavevectorInfo &wavevectors) const overridefinal Returns scattering amplitude for complex wavevectors ki, kf. @@ -16322,7 +16301,7 @@ class Simulation(ICloneable, INode): """ getBeamIntensity(Simulation self) -> double - double Simulation::getBeamIntensity() const + double Simulation::getBeamIntensity() const """ return _libBornAgainCore.Simulation_getBeamIntensity(self) @@ -16388,7 +16367,7 @@ class Simulation(ICloneable, INode): """ sample(Simulation self) -> MultiLayer - const MultiLayer * Simulation::sample() const + const MultiLayer * Simulation::sample() const """ return _libBornAgainCore.Simulation_sample(self) @@ -16418,7 +16397,7 @@ class Simulation(ICloneable, INode): """ background(Simulation self) -> IBackground - const IBackground* Simulation::background() const + const IBackground* Simulation::background() const """ return _libBornAgainCore.Simulation_background(self) @@ -16464,7 +16443,7 @@ class Simulation(ICloneable, INode): """ getDistributionHandler(Simulation self) -> DistributionHandler const & - const DistributionHandler& Simulation::getDistributionHandler() const + const DistributionHandler& Simulation::getDistributionHandler() const """ return _libBornAgainCore.Simulation_getDistributionHandler(self) @@ -16601,12 +16580,26 @@ class Simulation2D(Simulation): def setDetector(self, detector): - """setDetector(Simulation2D self, IDetector2D detector)""" + """ + setDetector(Simulation2D self, IDetector2D detector) + + void Simulation2D::setDetector(const IDetector2D &detector) + + Sets the detector (axes can be overwritten later) + + """ return _libBornAgainCore.Simulation2D_setDetector(self, detector) def result(self): - """result(Simulation2D self) -> SimulationResult""" + """ + result(Simulation2D self) -> SimulationResult + + virtual SimulationResult Simulation2D::result() const =0 + + Returns the results of the simulation in a format that supports unit conversion and export to numpy arrays + + """ return _libBornAgainCore.Simulation2D_result(self) @@ -16615,9 +16608,9 @@ class Simulation2D(Simulation): getDetectorIntensity(Simulation2D self, AxesUnits units_type) -> IntensityData getDetectorIntensity(Simulation2D self) -> IntensityData - virtual OutputData<double>* Simulation::getDetectorIntensity(AxesUnits units_type=AxesUnits::DEFAULT) const =0 + OutputData< double > * Simulation2D::getDetectorIntensity(AxesUnits units_type=AxesUnits::DEFAULT) const override - Clone simulated intensity map. + Returns clone of the detector intensity map with detector resolution applied. """ return _libBornAgainCore.Simulation2D_getDetectorIntensity(self, *args) @@ -16627,12 +16620,24 @@ class Simulation2D(Simulation): """ getIntensityData(Simulation2D self, AxesUnits units_type) -> Histogram2D getIntensityData(Simulation2D self) -> Histogram2D + + Histogram2D * Simulation2D::getIntensityData(AxesUnits units_type=AxesUnits::DEFAULT) const + + Returns histogram representing intensity map in requested axes units. + """ return _libBornAgainCore.Simulation2D_getIntensityData(self, *args) def removeMasks(self): - """removeMasks(Simulation2D self)""" + """ + removeMasks(Simulation2D self) + + void Simulation2D::removeMasks() + + removes all masks from the detector + + """ return _libBornAgainCore.Simulation2D_removeMasks(self) @@ -16640,17 +16645,45 @@ class Simulation2D(Simulation): """ addMask(Simulation2D self, IShape2D shape, bool mask_value=True) addMask(Simulation2D self, IShape2D shape) + + void Simulation2D::addMask(const IShape2D &shape, bool mask_value=true) + + Adds mask of given shape to the stack of detector masks. The mask value 'true' means that the channel will be excluded from the simulation. The mask which is added last has priority. + + Parameters: + ----------- + + shape: + The shape of mask ( Rectangle, Polygon, Line, Ellipse) + + mask_value: + The value of mask + """ return _libBornAgainCore.Simulation2D_addMask(self, shape, mask_value) def maskAll(self): - """maskAll(Simulation2D self)""" + """ + maskAll(Simulation2D self) + + void Simulation2D::maskAll() + + Put the mask for all detector channels (i.e. exclude whole detector from the analysis) + + """ return _libBornAgainCore.Simulation2D_maskAll(self) def setRegionOfInterest(self, xlow, ylow, xup, yup): - """setRegionOfInterest(Simulation2D self, double xlow, double ylow, double xup, double yup)""" + """ + setRegionOfInterest(Simulation2D self, double xlow, double ylow, double xup, double yup) + + void Simulation2D::setRegionOfInterest(double xlow, double ylow, double xup, double yup) + + Sets rectangular region of interest with lower left and upper right corners defined. + + """ return _libBornAgainCore.Simulation2D_setRegionOfInterest(self, xlow, ylow, xup, yup) Simulation2D_swigregister = _libBornAgainCore.Simulation2D_swigregister @@ -16691,7 +16724,7 @@ class SimulationOptions(_object): """ isIntegrate(SimulationOptions self) -> bool - bool SimulationOptions::isIntegrate() const + bool SimulationOptions::isIntegrate() const """ return _libBornAgainCore.SimulationOptions_isIntegrate(self) @@ -16701,7 +16734,7 @@ class SimulationOptions(_object): """ getMcPoints(SimulationOptions self) -> size_t - size_t SimulationOptions::getMcPoints() const + size_t SimulationOptions::getMcPoints() const """ return _libBornAgainCore.SimulationOptions_getMcPoints(self) @@ -16746,7 +16779,7 @@ class SimulationOptions(_object): """ getNumberOfThreads(SimulationOptions self) -> unsigned int - unsigned SimulationOptions::getNumberOfThreads() const + unsigned SimulationOptions::getNumberOfThreads() const """ return _libBornAgainCore.SimulationOptions_getNumberOfThreads(self) @@ -16768,7 +16801,7 @@ class SimulationOptions(_object): """ getNumberOfBatches(SimulationOptions self) -> unsigned int - unsigned SimulationOptions::getNumberOfBatches() const + unsigned SimulationOptions::getNumberOfBatches() const """ return _libBornAgainCore.SimulationOptions_getNumberOfBatches(self) @@ -16778,7 +16811,7 @@ class SimulationOptions(_object): """ getCurrentBatch(SimulationOptions self) -> unsigned int - unsigned SimulationOptions::getCurrentBatch() const + unsigned SimulationOptions::getCurrentBatch() const """ return _libBornAgainCore.SimulationOptions_getCurrentBatch(self) @@ -16800,7 +16833,7 @@ class SimulationOptions(_object): """ getHardwareConcurrency(SimulationOptions self) -> unsigned int - unsigned SimulationOptions::getHardwareConcurrency() const + unsigned SimulationOptions::getHardwareConcurrency() const """ return _libBornAgainCore.SimulationOptions_getHardwareConcurrency(self) @@ -16820,7 +16853,7 @@ class SimulationOptions(_object): """ includeSpecular(SimulationOptions self) -> bool - bool SimulationOptions::includeSpecular() const + bool SimulationOptions::includeSpecular() const """ return _libBornAgainCore.SimulationOptions_includeSpecular(self) @@ -16840,7 +16873,7 @@ class SimulationOptions(_object): """ useAvgMaterials(SimulationOptions self) -> bool - bool SimulationOptions::useAvgMaterials() const + bool SimulationOptions::useAvgMaterials() const """ return _libBornAgainCore.SimulationOptions_useAvgMaterials(self) @@ -16901,7 +16934,7 @@ class GISASSimulation(Simulation2D): """ accept(GISASSimulation self, INodeVisitor visitor) - void GISASSimulation::accept(INodeVisitor *visitor) const final + void GISASSimulation::accept(INodeVisitor *visitor) const override Calls the INodeVisitor's visit method. @@ -16913,7 +16946,7 @@ class GISASSimulation(Simulation2D): """ prepareSimulation(GISASSimulation self) - void GISASSimulation::prepareSimulation() final + void GISASSimulation::prepareSimulation() override Put into a clean state for running a simulation. @@ -16925,7 +16958,7 @@ class GISASSimulation(Simulation2D): """ numberOfSimulationElements(GISASSimulation self) -> size_t - size_t GISASSimulation::numberOfSimulationElements() const final + size_t GISASSimulation::numberOfSimulationElements() const override Gets the number of elements this simulation needs to calculate. @@ -16934,7 +16967,14 @@ class GISASSimulation(Simulation2D): def result(self): - """result(GISASSimulation self) -> SimulationResult""" + """ + result(GISASSimulation self) -> SimulationResult + + SimulationResult GISASSimulation::result() const override + + Returns the results of the simulation in a format that supports unit conversion and export to numpy arrays + + """ return _libBornAgainCore.GISASSimulation_result(self) @@ -17934,7 +17974,7 @@ class ConstantBackground(IBackground): """ clone(ConstantBackground self) -> ConstantBackground - ConstantBackground * ConstantBackground::clone() const override final + ConstantBackground * ConstantBackground::clone() const overridefinal """ return _libBornAgainCore.ConstantBackground_clone(self) @@ -17944,7 +17984,7 @@ class ConstantBackground(IBackground): """ backgroundValue(ConstantBackground self) -> double - double ConstantBackground::backgroundValue() const + double ConstantBackground::backgroundValue() const """ return _libBornAgainCore.ConstantBackground_backgroundValue(self) @@ -17966,7 +18006,7 @@ class ConstantBackground(IBackground): """ addBackGround(ConstantBackground self, double intensity) -> double - double ConstantBackground::addBackGround(double intensity) const override final + double ConstantBackground::addBackGround(double intensity) const overridefinal """ return _libBornAgainCore.ConstantBackground_addBackGround(self, intensity) @@ -18045,7 +18085,7 @@ class IDetector(ICloneable, INode): """ getAxis(IDetector self, size_t index) -> IAxis - const IAxis & IDetector::getAxis(size_t index) const + const IAxis & IDetector::getAxis(size_t index) const """ return _libBornAgainCore.IDetector_getAxis(self, index) @@ -18783,7 +18823,7 @@ class IAbstractParticle(ISample): """ abundance(IAbstractParticle self) -> double - double IAbstractParticle::abundance() const + double IAbstractParticle::abundance() const """ return _libBornAgainCore.IAbstractParticle_abundance(self) @@ -18883,7 +18923,7 @@ class IParameterReal(INamed): """ getData(IParameterReal self) -> double & - T& IParameter< T >::getData() const + T& IParameter< T >::getData() const """ return _libBornAgainCore.IParameterReal_getData(self) @@ -19058,7 +19098,7 @@ class IParticle(IAbstractParticle): """ translate(IParticle self, kvector_t translation) - void IParticle::translate(kvector_t translation) override final + void IParticle::translate(kvector_t translation) overridefinal Translates the particle. @@ -19094,7 +19134,7 @@ class IParticle(IAbstractParticle): """ rotate(IParticle self, IRotation rotation) - void IParticle::rotate(const IRotation &rotation) override final + void IParticle::rotate(const IRotation &rotation) overridefinal Rotates the particle. @@ -19506,7 +19546,7 @@ class RotationX(IRotation): """ getAngle(RotationX self) -> double - double RotationX::getAngle() const + double RotationX::getAngle() const """ return _libBornAgainCore.RotationX_getAngle(self) @@ -19602,7 +19642,7 @@ class RotationY(IRotation): """ getAngle(RotationY self) -> double - double RotationY::getAngle() const + double RotationY::getAngle() const """ return _libBornAgainCore.RotationY_getAngle(self) @@ -19699,7 +19739,7 @@ class RotationZ(IRotation): """ getAngle(RotationZ self) -> double - double RotationZ::getAngle() const + double RotationZ::getAngle() const """ return _libBornAgainCore.RotationZ_getAngle(self) @@ -19801,7 +19841,7 @@ class RotationEuler(IRotation): """ getAlpha(RotationEuler self) -> double - double RotationEuler::getAlpha() const + double RotationEuler::getAlpha() const """ return _libBornAgainCore.RotationEuler_getAlpha(self) @@ -19811,7 +19851,7 @@ class RotationEuler(IRotation): """ getBeta(RotationEuler self) -> double - double RotationEuler::getBeta() const + double RotationEuler::getBeta() const """ return _libBornAgainCore.RotationEuler_getBeta(self) @@ -19821,7 +19861,7 @@ class RotationEuler(IRotation): """ getGamma(RotationEuler self) -> double - double RotationEuler::getGamma() const + double RotationEuler::getGamma() const """ return _libBornAgainCore.RotationEuler_getGamma(self) @@ -19925,7 +19965,7 @@ class SimpleSelectionRule(ISelectionRule): """ clone(SimpleSelectionRule self) -> SimpleSelectionRule - SimpleSelectionRule * SimpleSelectionRule::clone() const + SimpleSelectionRule * SimpleSelectionRule::clone() const """ return _libBornAgainCore.SimpleSelectionRule_clone(self) @@ -19935,7 +19975,7 @@ class SimpleSelectionRule(ISelectionRule): """ coordinateSelected(SimpleSelectionRule self, ivector_t const & coordinate) -> bool - bool SimpleSelectionRule::coordinateSelected(const ivector_t &coordinate) const + bool SimpleSelectionRule::coordinateSelected(const ivector_t &coordinate) const """ return _libBornAgainCore.SimpleSelectionRule_coordinateSelected(self, coordinate) @@ -19996,7 +20036,7 @@ class Instrument(INode): getBeam(Instrument self) -> Beam getBeam(Instrument self) -> Beam - const Beam& Instrument::getBeam() const + const Beam& Instrument::getBeam() const """ return _libBornAgainCore.Instrument_getBeam(self, *args) @@ -20075,7 +20115,7 @@ class Instrument(INode): """ getDetectorMask(Instrument self) -> DetectorMask - const DetectorMask * Instrument::getDetectorMask() const + const DetectorMask * Instrument::getDetectorMask() const """ return _libBornAgainCore.Instrument_getDetectorMask(self) @@ -20459,7 +20499,7 @@ class InterferenceFunction1DLattice(IInterferenceFunction): """ getLatticeParameters(InterferenceFunction1DLattice self) -> Lattice1DParameters - Lattice1DParameters InterferenceFunction1DLattice::getLatticeParameters() const + Lattice1DParameters InterferenceFunction1DLattice::getLatticeParameters() const """ return _libBornAgainCore.InterferenceFunction1DLattice_getLatticeParameters(self) @@ -20612,7 +20652,7 @@ class InterferenceFunctionRadialParaCrystal(IInterferenceFunction): """ domainSize(InterferenceFunctionRadialParaCrystal self) -> double - double InterferenceFunctionRadialParaCrystal::domainSize() const + double InterferenceFunctionRadialParaCrystal::domainSize() const """ return _libBornAgainCore.InterferenceFunctionRadialParaCrystal_domainSize(self) @@ -20634,7 +20674,7 @@ class InterferenceFunctionRadialParaCrystal(IInterferenceFunction): """ FTPDF(InterferenceFunctionRadialParaCrystal self, double qpar) -> complex_t - complex_t InterferenceFunctionRadialParaCrystal::FTPDF(double qpar) const + complex_t InterferenceFunctionRadialParaCrystal::FTPDF(double qpar) const """ return _libBornAgainCore.InterferenceFunctionRadialParaCrystal_FTPDF(self, qpar) @@ -20662,7 +20702,7 @@ class InterferenceFunctionRadialParaCrystal(IInterferenceFunction): """ peakDistance(InterferenceFunctionRadialParaCrystal self) -> double - double InterferenceFunctionRadialParaCrystal::peakDistance() const + double InterferenceFunctionRadialParaCrystal::peakDistance() const """ return _libBornAgainCore.InterferenceFunctionRadialParaCrystal_peakDistance(self) @@ -20672,7 +20712,7 @@ class InterferenceFunctionRadialParaCrystal(IInterferenceFunction): """ dampingLength(InterferenceFunctionRadialParaCrystal self) -> double - double InterferenceFunctionRadialParaCrystal::dampingLength() const + double InterferenceFunctionRadialParaCrystal::dampingLength() const """ return _libBornAgainCore.InterferenceFunctionRadialParaCrystal_dampingLength(self) @@ -20838,7 +20878,7 @@ class InterferenceFunction2DLattice(IInterferenceFunction): """ integrationOverXi(InterferenceFunction2DLattice self) -> bool - bool InterferenceFunction2DLattice::integrationOverXi() const + bool InterferenceFunction2DLattice::integrationOverXi() const """ return _libBornAgainCore.InterferenceFunction2DLattice_integrationOverXi(self) @@ -20848,7 +20888,7 @@ class InterferenceFunction2DLattice(IInterferenceFunction): """ lattice(InterferenceFunction2DLattice self) -> Lattice2D - const Lattice2D & InterferenceFunction2DLattice::lattice() const + const Lattice2D & InterferenceFunction2DLattice::lattice() const """ return _libBornAgainCore.InterferenceFunction2DLattice_lattice(self) @@ -20882,7 +20922,7 @@ class InterferenceFunction2DLattice(IInterferenceFunction): """ onChange(InterferenceFunction2DLattice self) - void InterferenceFunction2DLattice::onChange() override final + void InterferenceFunction2DLattice::onChange() overridefinal Action to be taken in inherited class when a parameter has changed. @@ -21093,7 +21133,7 @@ class InterferenceFunction2DParaCrystal(IInterferenceFunction): """ domainSizes(InterferenceFunction2DParaCrystal self) -> vdouble1d_t - std::vector< double > InterferenceFunction2DParaCrystal::domainSizes() const + std::vector< double > InterferenceFunction2DParaCrystal::domainSizes() const """ return _libBornAgainCore.InterferenceFunction2DParaCrystal_domainSizes(self) @@ -21121,7 +21161,7 @@ class InterferenceFunction2DParaCrystal(IInterferenceFunction): """ integrationOverXi(InterferenceFunction2DParaCrystal self) -> bool - bool InterferenceFunction2DParaCrystal::integrationOverXi() const + bool InterferenceFunction2DParaCrystal::integrationOverXi() const """ return _libBornAgainCore.InterferenceFunction2DParaCrystal_integrationOverXi(self) @@ -21131,7 +21171,7 @@ class InterferenceFunction2DParaCrystal(IInterferenceFunction): """ dampingLength(InterferenceFunction2DParaCrystal self) -> double - double InterferenceFunction2DParaCrystal::dampingLength() const + double InterferenceFunction2DParaCrystal::dampingLength() const """ return _libBornAgainCore.InterferenceFunction2DParaCrystal_dampingLength(self) @@ -21141,7 +21181,7 @@ class InterferenceFunction2DParaCrystal(IInterferenceFunction): """ lattice(InterferenceFunction2DParaCrystal self) -> Lattice2D - const Lattice2D & InterferenceFunction2DParaCrystal::lattice() const + const Lattice2D & InterferenceFunction2DParaCrystal::lattice() const """ return _libBornAgainCore.InterferenceFunction2DParaCrystal_lattice(self) @@ -21902,7 +21942,7 @@ class Lattice2D(ICloneable, INode): """ rotationAngle(Lattice2D self) -> double - double Lattice2D::rotationAngle() const + double Lattice2D::rotationAngle() const """ return _libBornAgainCore.Lattice2D_rotationAngle(self) @@ -21912,7 +21952,7 @@ class Lattice2D(ICloneable, INode): """ reciprocalBases(Lattice2D self) -> Lattice2D::ReciprocalBases - Lattice2D::ReciprocalBases Lattice2D::reciprocalBases() const + Lattice2D::ReciprocalBases Lattice2D::reciprocalBases() const """ return _libBornAgainCore.Lattice2D_reciprocalBases(self) @@ -21963,7 +22003,7 @@ class BasicLattice(Lattice2D): """ clone(BasicLattice self) -> BasicLattice - BasicLattice * BasicLattice::clone() const + BasicLattice * BasicLattice::clone() const """ return _libBornAgainCore.BasicLattice_clone(self) @@ -21985,7 +22025,7 @@ class BasicLattice(Lattice2D): """ length1(BasicLattice self) -> double - virtual double BasicLattice::length1() const + virtual double BasicLattice::length1() const """ return _libBornAgainCore.BasicLattice_length1(self) @@ -21995,7 +22035,7 @@ class BasicLattice(Lattice2D): """ length2(BasicLattice self) -> double - virtual double BasicLattice::length2() const + virtual double BasicLattice::length2() const """ return _libBornAgainCore.BasicLattice_length2(self) @@ -22005,7 +22045,7 @@ class BasicLattice(Lattice2D): """ latticeAngle(BasicLattice self) -> double - virtual double BasicLattice::latticeAngle() const + virtual double BasicLattice::latticeAngle() const """ return _libBornAgainCore.BasicLattice_latticeAngle(self) @@ -22015,7 +22055,7 @@ class BasicLattice(Lattice2D): """ unitCellArea(BasicLattice self) -> double - double BasicLattice::unitCellArea() const + double BasicLattice::unitCellArea() const """ return _libBornAgainCore.BasicLattice_unitCellArea(self) @@ -22056,7 +22096,7 @@ class SquareLattice(Lattice2D): """ clone(SquareLattice self) -> SquareLattice - SquareLattice * SquareLattice::clone() const + SquareLattice * SquareLattice::clone() const """ return _libBornAgainCore.SquareLattice_clone(self) @@ -22078,7 +22118,7 @@ class SquareLattice(Lattice2D): """ length1(SquareLattice self) -> double - virtual double SquareLattice::length1() const + virtual double SquareLattice::length1() const """ return _libBornAgainCore.SquareLattice_length1(self) @@ -22088,7 +22128,7 @@ class SquareLattice(Lattice2D): """ length2(SquareLattice self) -> double - virtual double SquareLattice::length2() const + virtual double SquareLattice::length2() const """ return _libBornAgainCore.SquareLattice_length2(self) @@ -22098,7 +22138,7 @@ class SquareLattice(Lattice2D): """ latticeAngle(SquareLattice self) -> double - double SquareLattice::latticeAngle() const + double SquareLattice::latticeAngle() const """ return _libBornAgainCore.SquareLattice_latticeAngle(self) @@ -22108,7 +22148,7 @@ class SquareLattice(Lattice2D): """ unitCellArea(SquareLattice self) -> double - double SquareLattice::unitCellArea() const + double SquareLattice::unitCellArea() const """ return _libBornAgainCore.SquareLattice_unitCellArea(self) @@ -22149,7 +22189,7 @@ class HexagonalLattice(Lattice2D): """ clone(HexagonalLattice self) -> HexagonalLattice - HexagonalLattice * HexagonalLattice::clone() const + HexagonalLattice * HexagonalLattice::clone() const """ return _libBornAgainCore.HexagonalLattice_clone(self) @@ -22171,7 +22211,7 @@ class HexagonalLattice(Lattice2D): """ length1(HexagonalLattice self) -> double - virtual double HexagonalLattice::length1() const + virtual double HexagonalLattice::length1() const """ return _libBornAgainCore.HexagonalLattice_length1(self) @@ -22181,7 +22221,7 @@ class HexagonalLattice(Lattice2D): """ length2(HexagonalLattice self) -> double - virtual double HexagonalLattice::length2() const + virtual double HexagonalLattice::length2() const """ return _libBornAgainCore.HexagonalLattice_length2(self) @@ -22191,7 +22231,7 @@ class HexagonalLattice(Lattice2D): """ latticeAngle(HexagonalLattice self) -> double - double HexagonalLattice::latticeAngle() const + double HexagonalLattice::latticeAngle() const """ return _libBornAgainCore.HexagonalLattice_latticeAngle(self) @@ -22201,7 +22241,7 @@ class HexagonalLattice(Lattice2D): """ unitCellArea(HexagonalLattice self) -> double - double HexagonalLattice::unitCellArea() const + double HexagonalLattice::unitCellArea() const """ return _libBornAgainCore.HexagonalLattice_unitCellArea(self) @@ -22266,7 +22306,7 @@ class Layer(ISample): """ clone(Layer self) -> Layer - Layer * Layer::clone() const override final + Layer * Layer::clone() const overridefinal Returns a clone of this ISample object. @@ -22278,7 +22318,7 @@ class Layer(ISample): """ cloneInvertB(Layer self) -> Layer - Layer * Layer::cloneInvertB() const + Layer * Layer::cloneInvertB() const """ return _libBornAgainCore.Layer_cloneInvertB(self) @@ -22288,7 +22328,7 @@ class Layer(ISample): """ accept(Layer self, INodeVisitor visitor) - void Layer::accept(INodeVisitor *visitor) const override final + void Layer::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -22312,7 +22352,7 @@ class Layer(ISample): """ thickness(Layer self) -> double - double Layer::thickness() const + double Layer::thickness() const """ return _libBornAgainCore.Layer_thickness(self) @@ -22322,7 +22362,7 @@ class Layer(ISample): """ material(Layer self) -> Material - const Material* Layer::material() const override final + const Material* Layer::material() const overridefinal Returns nullptr, unless overwritten to return a specific material. @@ -22354,7 +22394,7 @@ class Layer(ISample): """ numberOfLayouts(Layer self) -> size_t - size_t Layer::numberOfLayouts() const + size_t Layer::numberOfLayouts() const """ return _libBornAgainCore.Layer_numberOfLayouts(self) @@ -22364,7 +22404,7 @@ class Layer(ISample): """ layouts(Layer self) -> std::vector< ILayout const *,std::allocator< ILayout const * > > - std::vector< const ILayout * > Layer::layouts() const + std::vector< const ILayout * > Layer::layouts() const """ return _libBornAgainCore.Layer_layouts(self) @@ -22374,7 +22414,7 @@ class Layer(ISample): """ getChildren(Layer self) -> swig_dummy_type_const_inode_vector - std::vector< const INode * > Layer::getChildren() const override final + std::vector< const INode * > Layer::getChildren() const overridefinal Returns a vector of children (const). @@ -22407,7 +22447,7 @@ class Layer(ISample): """ numberOfSlices(Layer self) -> unsigned int - unsigned int Layer::numberOfSlices() const + unsigned int Layer::numberOfSlices() const """ return _libBornAgainCore.Layer_numberOfSlices(self) @@ -22417,7 +22457,7 @@ class Layer(ISample): """ slice(Layer self, ZLimits limits, Layer::ELayerType layer_type) -> SafePointerVector< Layer > - SafePointerVector< Layer > Layer::slice(ZLimits limits, ELayerType layer_type) const + SafePointerVector< Layer > Layer::slice(ZLimits limits, ELayerType layer_type) const """ return _libBornAgainCore.Layer_slice(self, limits, layer_type) @@ -22665,7 +22705,7 @@ class Line(IShape2D): """ clone(Line self) -> Line - Line* Line::clone() const + Line* Line::clone() const """ return _libBornAgainCore.Line_clone(self) @@ -22731,7 +22771,7 @@ class VerticalLine(IShape2D): """ clone(VerticalLine self) -> VerticalLine - VerticalLine* VerticalLine::clone() const + VerticalLine* VerticalLine::clone() const """ return _libBornAgainCore.VerticalLine_clone(self) @@ -22754,7 +22794,7 @@ class VerticalLine(IShape2D): """ getXpos(VerticalLine self) -> double - double VerticalLine::getXpos() const + double VerticalLine::getXpos() const """ return _libBornAgainCore.VerticalLine_getXpos(self) @@ -22807,7 +22847,7 @@ class HorizontalLine(IShape2D): """ clone(HorizontalLine self) -> HorizontalLine - HorizontalLine* HorizontalLine::clone() const + HorizontalLine* HorizontalLine::clone() const """ return _libBornAgainCore.HorizontalLine_clone(self) @@ -22830,7 +22870,7 @@ class HorizontalLine(IShape2D): """ getYpos(HorizontalLine self) -> double - double HorizontalLine::getYpos() const + double HorizontalLine::getYpos() const """ return _libBornAgainCore.HorizontalLine_getYpos(self) @@ -22924,7 +22964,7 @@ class Material(_object): """ isMagneticMaterial(Material self) -> bool - bool Material::isMagneticMaterial() const + bool Material::isMagneticMaterial() const """ return _libBornAgainCore.Material_isMagneticMaterial(self) @@ -23006,7 +23046,7 @@ class Material(_object): """ transformedMaterial(Material self, Transform3D const & transform) -> Material - Material Material::transformedMaterial(const Transform3D &transform) const + Material Material::transformedMaterial(const Transform3D &transform) const """ return _libBornAgainCore.Material_transformedMaterial(self, transform) @@ -23136,7 +23176,7 @@ class MesoCrystal(IParticle): """ clone(MesoCrystal self) -> MesoCrystal - MesoCrystal * MesoCrystal::clone() const override final + MesoCrystal * MesoCrystal::clone() const overridefinal Returns a clone of this ISample object. @@ -23148,7 +23188,7 @@ class MesoCrystal(IParticle): """ accept(MesoCrystal self, INodeVisitor visitor) - void MesoCrystal::accept(INodeVisitor *visitor) const override final + void MesoCrystal::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -23160,7 +23200,7 @@ class MesoCrystal(IParticle): """ createSlicedParticle(MesoCrystal self, ZLimits limits) -> SlicedParticle - SlicedParticle MesoCrystal::createSlicedParticle(ZLimits limits) const override final + SlicedParticle MesoCrystal::createSlicedParticle(ZLimits limits) const overridefinal Create a sliced form factor for this particle. @@ -23172,7 +23212,7 @@ class MesoCrystal(IParticle): """ getChildren(MesoCrystal self) -> swig_dummy_type_const_inode_vector - std::vector< const INode * > MesoCrystal::getChildren() const override final + std::vector< const INode * > MesoCrystal::getChildren() const overridefinal Returns a vector of children (const). @@ -23223,7 +23263,7 @@ class MultiLayer(ISample): """ accept(MultiLayer self, INodeVisitor visitor) - void MultiLayer::accept(INodeVisitor *visitor) const final override + void MultiLayer::accept(INodeVisitor *visitor) const finaloverride Calls the INodeVisitor's visit method. @@ -23235,7 +23275,7 @@ class MultiLayer(ISample): """ numberOfLayers(MultiLayer self) -> size_t - size_t MultiLayer::numberOfLayers() const + size_t MultiLayer::numberOfLayers() const """ return _libBornAgainCore.MultiLayer_numberOfLayers(self) @@ -23245,7 +23285,7 @@ class MultiLayer(ISample): """ numberOfInterfaces(MultiLayer self) -> size_t - size_t MultiLayer::numberOfInterfaces() const + size_t MultiLayer::numberOfInterfaces() const """ return _libBornAgainCore.MultiLayer_numberOfInterfaces(self) @@ -23393,7 +23433,7 @@ class MultiLayer(ISample): """ clone(MultiLayer self) -> MultiLayer - MultiLayer * MultiLayer::clone() const final override + MultiLayer * MultiLayer::clone() const finaloverride Returns a clone of multilayer with clones of all layers and recreated interfaces between layers @@ -23527,7 +23567,7 @@ class MultiLayer(ISample): """ containsMagneticMaterial(MultiLayer self) -> bool - bool MultiLayer::containsMagneticMaterial() const + bool MultiLayer::containsMagneticMaterial() const """ return _libBornAgainCore.MultiLayer_containsMagneticMaterial(self) @@ -23561,7 +23601,7 @@ class MultiLayer(ISample): """ hasRoughness(MultiLayer self) -> bool - bool MultiLayer::hasRoughness() const + bool MultiLayer::hasRoughness() const """ return _libBornAgainCore.MultiLayer_hasRoughness(self) @@ -23571,7 +23611,7 @@ class MultiLayer(ISample): """ totalNofLayouts(MultiLayer self) -> size_t - size_t MultiLayer::totalNofLayouts() const + size_t MultiLayer::totalNofLayouts() const """ return _libBornAgainCore.MultiLayer_totalNofLayouts(self) @@ -23581,7 +23621,7 @@ class MultiLayer(ISample): """ getChildren(MultiLayer self) -> swig_dummy_type_const_inode_vector - std::vector< const INode * > MultiLayer::getChildren() const final override + std::vector< const INode * > MultiLayer::getChildren() const finaloverride Returns a vector of children (const). @@ -23675,7 +23715,14 @@ class OffSpecSimulation(Simulation2D): def result(self): - """result(OffSpecSimulation self) -> SimulationResult""" + """ + result(OffSpecSimulation self) -> SimulationResult + + SimulationResult OffSpecSimulation::result() const override + + Returns the results of the simulation in a format that supports unit conversion and export to numpy arrays + + """ return _libBornAgainCore.OffSpecSimulation_result(self) @@ -23728,7 +23775,7 @@ class IntensityData(_object): """ clone(IntensityData self) -> IntensityData - OutputData< T > * OutputData< T >::clone() const + OutputData< T > * OutputData< T >::clone() const """ return _libBornAgainCore.IntensityData_clone(self) @@ -23748,7 +23795,7 @@ class IntensityData(_object): """ meanValues(IntensityData self) -> IntensityData - OutputData< double > * OutputData< T >::meanValues() const + OutputData< double > * OutputData< T >::meanValues() const """ return _libBornAgainCore.IntensityData_meanValues(self) @@ -24280,7 +24327,7 @@ class ParameterDistribution(IParameterized): """ getLimits(ParameterDistribution self) -> RealLimits - RealLimits ParameterDistribution::getLimits() const + RealLimits ParameterDistribution::getLimits() const """ return _libBornAgainCore.ParameterDistribution_getLimits(self) @@ -24290,7 +24337,7 @@ class ParameterDistribution(IParameterized): """ getMinValue(ParameterDistribution self) -> double - double ParameterDistribution::getMinValue() const + double ParameterDistribution::getMinValue() const """ return _libBornAgainCore.ParameterDistribution_getMinValue(self) @@ -24300,7 +24347,7 @@ class ParameterDistribution(IParameterized): """ getMaxValue(ParameterDistribution self) -> double - double ParameterDistribution::getMaxValue() const + double ParameterDistribution::getMaxValue() const """ return _libBornAgainCore.ParameterDistribution_getMaxValue(self) @@ -24496,7 +24543,7 @@ class ParameterPool(ICloneable): """ parameterNames(ParameterPool self) -> vector_string_t - std::vector< std::string > ParameterPool::parameterNames() const + std::vector< std::string > ParameterPool::parameterNames() const """ return _libBornAgainCore.ParameterPool_parameterNames(self) @@ -24820,7 +24867,7 @@ class Particle(IParticle): """ clone(Particle self) -> Particle - Particle * Particle::clone() const override final + Particle * Particle::clone() const overridefinal Returns a clone of this ISample object. @@ -24832,7 +24879,7 @@ class Particle(IParticle): """ accept(Particle self, INodeVisitor visitor) - void Particle::accept(INodeVisitor *visitor) const override final + void Particle::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -24844,7 +24891,7 @@ class Particle(IParticle): """ createSlicedParticle(Particle self, ZLimits limits) -> SlicedParticle - SlicedParticle Particle::createSlicedParticle(ZLimits limits) const override final + SlicedParticle Particle::createSlicedParticle(ZLimits limits) const overridefinal Create a sliced form factor for this particle. @@ -24866,7 +24913,7 @@ class Particle(IParticle): """ material(Particle self) -> Material - const Material* Particle::material() const override final + const Material* Particle::material() const overridefinal Returns nullptr, unless overwritten to return a specific material. @@ -24888,7 +24935,7 @@ class Particle(IParticle): """ getChildren(Particle self) -> swig_dummy_type_const_inode_vector - std::vector< const INode * > Particle::getChildren() const override final + std::vector< const INode * > Particle::getChildren() const overridefinal Returns a vector of children (const). @@ -24940,7 +24987,7 @@ class ParticleComposition(IParticle): """ clone(ParticleComposition self) -> ParticleComposition - ParticleComposition * ParticleComposition::clone() const override final + ParticleComposition * ParticleComposition::clone() const overridefinal Returns a clone of this ISample object. @@ -24952,7 +24999,7 @@ class ParticleComposition(IParticle): """ accept(ParticleComposition self, INodeVisitor visitor) - void ParticleComposition::accept(INodeVisitor *visitor) const override final + void ParticleComposition::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -24964,7 +25011,7 @@ class ParticleComposition(IParticle): """ createFormFactor(ParticleComposition self) -> IFormFactor - IFormFactor * ParticleComposition::createFormFactor() const override final + IFormFactor * ParticleComposition::createFormFactor() const overridefinal Create a form factor for this particle. @@ -25009,7 +25056,7 @@ class ParticleComposition(IParticle): """ getChildren(ParticleComposition self) -> swig_dummy_type_const_inode_vector - std::vector< const INode * > ParticleComposition::getChildren() const override final + std::vector< const INode * > ParticleComposition::getChildren() const overridefinal Returns a vector of children (const). @@ -25021,7 +25068,7 @@ class ParticleComposition(IParticle): """ decompose(ParticleComposition self) -> SafePointerVector< IParticle > - SafePointerVector< IParticle > ParticleComposition::decompose() const override final + SafePointerVector< IParticle > ParticleComposition::decompose() const overridefinal Decompose in constituent IParticle objects. @@ -25033,7 +25080,7 @@ class ParticleComposition(IParticle): """ bottomTopZ(ParticleComposition self) -> ParticleLimits - ParticleLimits ParticleComposition::bottomTopZ() const override final + ParticleLimits ParticleComposition::bottomTopZ() const overridefinal Top and bottom z-coordinate. @@ -25083,7 +25130,7 @@ class ParticleCoreShell(IParticle): """ clone(ParticleCoreShell self) -> ParticleCoreShell - ParticleCoreShell * ParticleCoreShell::clone() const override final + ParticleCoreShell * ParticleCoreShell::clone() const overridefinal Returns a clone of this ISample object. @@ -25095,7 +25142,7 @@ class ParticleCoreShell(IParticle): """ accept(ParticleCoreShell self, INodeVisitor visitor) - void ParticleCoreShell::accept(INodeVisitor *visitor) const override final + void ParticleCoreShell::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -25107,7 +25154,7 @@ class ParticleCoreShell(IParticle): """ createSlicedParticle(ParticleCoreShell self, ZLimits limits) -> SlicedParticle - SlicedParticle ParticleCoreShell::createSlicedParticle(ZLimits limits) const override final + SlicedParticle ParticleCoreShell::createSlicedParticle(ZLimits limits) const overridefinal Create a sliced form factor for this particle. @@ -25119,7 +25166,7 @@ class ParticleCoreShell(IParticle): """ coreParticle(ParticleCoreShell self) -> Particle - const Particle * ParticleCoreShell::coreParticle() const + const Particle * ParticleCoreShell::coreParticle() const """ return _libBornAgainCore.ParticleCoreShell_coreParticle(self) @@ -25129,7 +25176,7 @@ class ParticleCoreShell(IParticle): """ shellParticle(ParticleCoreShell self) -> Particle - const Particle * ParticleCoreShell::shellParticle() const + const Particle * ParticleCoreShell::shellParticle() const """ return _libBornAgainCore.ParticleCoreShell_shellParticle(self) @@ -25139,7 +25186,7 @@ class ParticleCoreShell(IParticle): """ getChildren(ParticleCoreShell self) -> swig_dummy_type_const_inode_vector - std::vector< const INode * > ParticleCoreShell::getChildren() const override final + std::vector< const INode * > ParticleCoreShell::getChildren() const overridefinal Returns a vector of children (const). @@ -25186,7 +25233,7 @@ class ParticleDistribution(IAbstractParticle): """ clone(ParticleDistribution self) -> ParticleDistribution - ParticleDistribution * ParticleDistribution::clone() const override final + ParticleDistribution * ParticleDistribution::clone() const overridefinal Returns a clone of this ISample object. @@ -25198,7 +25245,7 @@ class ParticleDistribution(IAbstractParticle): """ accept(ParticleDistribution self, INodeVisitor visitor) - void ParticleDistribution::accept(INodeVisitor *visitor) const override final + void ParticleDistribution::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -25210,7 +25257,7 @@ class ParticleDistribution(IAbstractParticle): """ translate(ParticleDistribution self, kvector_t translation) - void ParticleDistribution::translate(kvector_t translation) override final + void ParticleDistribution::translate(kvector_t translation) overridefinal Translates the particle with the given vector. @@ -25222,7 +25269,7 @@ class ParticleDistribution(IAbstractParticle): """ rotate(ParticleDistribution self, IRotation rotation) - void ParticleDistribution::rotate(const IRotation &rotation) override final + void ParticleDistribution::rotate(const IRotation &rotation) overridefinal Applies the given rotation to the particle. @@ -25272,7 +25319,7 @@ class ParticleDistribution(IAbstractParticle): """ getChildren(ParticleDistribution self) -> swig_dummy_type_const_inode_vector - std::vector< const INode * > ParticleDistribution::getChildren() const override final + std::vector< const INode * > ParticleDistribution::getChildren() const overridefinal Returns a vector of children (const). @@ -25325,7 +25372,7 @@ class ParticleLayout(ILayout): """ clone(ParticleLayout self) -> ParticleLayout - ParticleLayout * ParticleLayout::clone() const final override + ParticleLayout * ParticleLayout::clone() const finaloverride Returns a clone of this ISample object. @@ -25337,7 +25384,7 @@ class ParticleLayout(ILayout): """ cloneWithOffset(ParticleLayout self, double offset) -> ParticleLayout - ParticleLayout * ParticleLayout::cloneWithOffset(double offset) const final override + ParticleLayout * ParticleLayout::cloneWithOffset(double offset) const finaloverride """ return _libBornAgainCore.ParticleLayout_cloneWithOffset(self, offset) @@ -25347,7 +25394,7 @@ class ParticleLayout(ILayout): """ accept(ParticleLayout self, INodeVisitor visitor) - void ParticleLayout::accept(INodeVisitor *visitor) const final override + void ParticleLayout::accept(INodeVisitor *visitor) const finaloverride Calls the INodeVisitor's visit method. @@ -25389,7 +25436,7 @@ class ParticleLayout(ILayout): """ particles(ParticleLayout self) -> SafePointerVector< IParticle const > - SafePointerVector< const IParticle > ParticleLayout::particles() const final override + SafePointerVector< const IParticle > ParticleLayout::particles() const finaloverride Returns information on all particles (type and abundance) and generates new particles if an IAbstractParticle denotes a collection @@ -25401,7 +25448,7 @@ class ParticleLayout(ILayout): """ getTotalAbundance(ParticleLayout self) -> double - double ParticleLayout::getTotalAbundance() const final override + double ParticleLayout::getTotalAbundance() const finaloverride Get total abundance of all particles. @@ -25425,7 +25472,7 @@ class ParticleLayout(ILayout): """ totalParticleSurfaceDensity(ParticleLayout self) -> double - double ParticleLayout::totalParticleSurfaceDensity() const final override + double ParticleLayout::totalParticleSurfaceDensity() const finaloverride Returns surface density of all particles. @@ -25437,7 +25484,7 @@ class ParticleLayout(ILayout): """ setTotalParticleSurfaceDensity(ParticleLayout self, double particle_density) - void ParticleLayout::setTotalParticleSurfaceDensity(double particle_density) final override + void ParticleLayout::setTotalParticleSurfaceDensity(double particle_density) finaloverride Sets total particle surface density. particle_density: number of particles per square nanometer @@ -25449,7 +25496,7 @@ class ParticleLayout(ILayout): """ getChildren(ParticleLayout self) -> swig_dummy_type_const_inode_vector - std::vector< const INode * > ParticleLayout::getChildren() const final override + std::vector< const INode * > ParticleLayout::getChildren() const finaloverride Returns a vector of children (const). @@ -25498,7 +25545,7 @@ class PoissonNoiseBackground(IBackground): """ clone(PoissonNoiseBackground self) -> PoissonNoiseBackground - PoissonNoiseBackground * PoissonNoiseBackground::clone() const override final + PoissonNoiseBackground * PoissonNoiseBackground::clone() const overridefinal """ return _libBornAgainCore.PoissonNoiseBackground_clone(self) @@ -25520,7 +25567,7 @@ class PoissonNoiseBackground(IBackground): """ addBackGround(PoissonNoiseBackground self, double intensity) -> double - double PoissonNoiseBackground::addBackGround(double intensity) const override final + double PoissonNoiseBackground::addBackGround(double intensity) const overridefinal """ return _libBornAgainCore.PoissonNoiseBackground_addBackGround(self, intensity) @@ -25569,7 +25616,7 @@ class Polygon(IShape2D): """ clone(Polygon self) -> Polygon - virtual Polygon* Polygon::clone() const + virtual Polygon* Polygon::clone() const """ return _libBornAgainCore.Polygon_clone(self) @@ -25592,7 +25639,7 @@ class Polygon(IShape2D): """ getArea(Polygon self) -> double - double Polygon::getArea() const + double Polygon::getArea() const """ return _libBornAgainCore.Polygon_getArea(self) @@ -25602,7 +25649,7 @@ class Polygon(IShape2D): """ getPoints(Polygon self, vdouble1d_t xpos, vdouble1d_t ypos) - void Polygon::getPoints(std::vector< double > &xpos, std::vector< double > &ypos) const + void Polygon::getPoints(std::vector< double > &xpos, std::vector< double > &ypos) const """ return _libBornAgainCore.Polygon_getPoints(self, xpos, ypos) @@ -25652,7 +25699,7 @@ class RealParameter(IParameterReal): clone(RealParameter self, std::string const & new_name) -> RealParameter clone(RealParameter self) -> RealParameter - RealParameter * RealParameter::clone(const std::string &new_name="") const + RealParameter * RealParameter::clone(const std::string &new_name="") const """ return _libBornAgainCore.RealParameter_clone(self, *args) @@ -25696,7 +25743,7 @@ class RealParameter(IParameterReal): """ limits(RealParameter self) -> RealLimits - RealLimits RealParameter::limits() const + RealLimits RealParameter::limits() const """ return _libBornAgainCore.RealParameter_limits(self) @@ -25746,7 +25793,7 @@ class RealParameter(IParameterReal): """ unit(RealParameter self) -> std::string - std::string RealParameter::unit() const + std::string RealParameter::unit() const """ return _libBornAgainCore.RealParameter_unit(self) @@ -25808,7 +25855,7 @@ class Rectangle(IShape2D): """ clone(Rectangle self) -> Rectangle - Rectangle* Rectangle::clone() const + Rectangle* Rectangle::clone() const """ return _libBornAgainCore.Rectangle_clone(self) @@ -25831,7 +25878,7 @@ class Rectangle(IShape2D): """ getArea(Rectangle self) -> double - double Rectangle::getArea() const + double Rectangle::getArea() const """ return _libBornAgainCore.Rectangle_getArea(self) @@ -25841,7 +25888,7 @@ class Rectangle(IShape2D): """ getXlow(Rectangle self) -> double - double Rectangle::getXlow() const + double Rectangle::getXlow() const """ return _libBornAgainCore.Rectangle_getXlow(self) @@ -25851,7 +25898,7 @@ class Rectangle(IShape2D): """ getYlow(Rectangle self) -> double - double Rectangle::getYlow() const + double Rectangle::getYlow() const """ return _libBornAgainCore.Rectangle_getYlow(self) @@ -25861,7 +25908,7 @@ class Rectangle(IShape2D): """ getXup(Rectangle self) -> double - double Rectangle::getXup() const + double Rectangle::getXup() const """ return _libBornAgainCore.Rectangle_getXup(self) @@ -25871,7 +25918,7 @@ class Rectangle(IShape2D): """ getYup(Rectangle self) -> double - double Rectangle::getYup() const + double Rectangle::getYup() const """ return _libBornAgainCore.Rectangle_getYup(self) @@ -25961,7 +26008,7 @@ class RectangularDetector(IDetector2D): setPosition(RectangularDetector self, kvector_t normal_to_detector, double u0, double v0, kvector_t direction) setPosition(RectangularDetector self, kvector_t normal_to_detector, double u0, double v0) - void RectangularDetector::setPosition(const kvector_t normal_to_detector, double u0, double v0, const kvector_t direction=kvector_t(0.0, -1.0, 0.0)) + void RectangularDetector::setPosition(const kvector_t normal_to_detector, double u0, double v0, const kvector_t direction=kvector_t(0.0,-1.0, 0.0)) """ return _libBornAgainCore.RectangularDetector_setPosition(self, *args) @@ -26013,7 +26060,7 @@ class RectangularDetector(IDetector2D): """ getWidth(RectangularDetector self) -> double - double RectangularDetector::getWidth() const + double RectangularDetector::getWidth() const """ return _libBornAgainCore.RectangularDetector_getWidth(self) @@ -26023,7 +26070,7 @@ class RectangularDetector(IDetector2D): """ getHeight(RectangularDetector self) -> double - double RectangularDetector::getHeight() const + double RectangularDetector::getHeight() const """ return _libBornAgainCore.RectangularDetector_getHeight(self) @@ -26033,7 +26080,7 @@ class RectangularDetector(IDetector2D): """ getNbinsX(RectangularDetector self) -> size_t - size_t RectangularDetector::getNbinsX() const + size_t RectangularDetector::getNbinsX() const """ return _libBornAgainCore.RectangularDetector_getNbinsX(self) @@ -26043,7 +26090,7 @@ class RectangularDetector(IDetector2D): """ getNbinsY(RectangularDetector self) -> size_t - size_t RectangularDetector::getNbinsY() const + size_t RectangularDetector::getNbinsY() const """ return _libBornAgainCore.RectangularDetector_getNbinsY(self) @@ -26053,7 +26100,7 @@ class RectangularDetector(IDetector2D): """ getNormalVector(RectangularDetector self) -> kvector_t - kvector_t RectangularDetector::getNormalVector() const + kvector_t RectangularDetector::getNormalVector() const """ return _libBornAgainCore.RectangularDetector_getNormalVector(self) @@ -26063,7 +26110,7 @@ class RectangularDetector(IDetector2D): """ getU0(RectangularDetector self) -> double - double RectangularDetector::getU0() const + double RectangularDetector::getU0() const """ return _libBornAgainCore.RectangularDetector_getU0(self) @@ -26073,7 +26120,7 @@ class RectangularDetector(IDetector2D): """ getV0(RectangularDetector self) -> double - double RectangularDetector::getV0() const + double RectangularDetector::getV0() const """ return _libBornAgainCore.RectangularDetector_getV0(self) @@ -26083,7 +26130,7 @@ class RectangularDetector(IDetector2D): """ getDirectionVector(RectangularDetector self) -> kvector_t - kvector_t RectangularDetector::getDirectionVector() const + kvector_t RectangularDetector::getDirectionVector() const """ return _libBornAgainCore.RectangularDetector_getDirectionVector(self) @@ -26093,7 +26140,7 @@ class RectangularDetector(IDetector2D): """ getDistance(RectangularDetector self) -> double - double RectangularDetector::getDistance() const + double RectangularDetector::getDistance() const """ return _libBornAgainCore.RectangularDetector_getDistance(self) @@ -26103,7 +26150,7 @@ class RectangularDetector(IDetector2D): """ getDirectBeamU0(RectangularDetector self) -> double - double RectangularDetector::getDirectBeamU0() const + double RectangularDetector::getDirectBeamU0() const """ return _libBornAgainCore.RectangularDetector_getDirectBeamU0(self) @@ -26113,7 +26160,7 @@ class RectangularDetector(IDetector2D): """ getDirectBeamV0(RectangularDetector self) -> double - double RectangularDetector::getDirectBeamV0() const + double RectangularDetector::getDirectBeamV0() const """ return _libBornAgainCore.RectangularDetector_getDirectBeamV0(self) @@ -26123,7 +26170,7 @@ class RectangularDetector(IDetector2D): """ getDetectorArrangment(RectangularDetector self) -> RectangularDetector::EDetectorArrangement - RectangularDetector::EDetectorArrangement RectangularDetector::getDetectorArrangment() const + RectangularDetector::EDetectorArrangement RectangularDetector::getDetectorArrangment() const """ return _libBornAgainCore.RectangularDetector_getDetectorArrangment(self) @@ -26154,7 +26201,12 @@ class RectangularDetector(IDetector2D): def regionOfInterestPixel(self): - """regionOfInterestPixel(RectangularDetector self) -> RectangularPixel""" + """ + regionOfInterestPixel(RectangularDetector self) -> RectangularPixel + + RectangularPixel * RectangularDetector::regionOfInterestPixel() const + + """ return _libBornAgainCore.RectangularDetector_regionOfInterestPixel(self) RectangularDetector_swigregister = _libBornAgainCore.RectangularDetector_swigregister @@ -26219,7 +26271,12 @@ class RectangularPixel(IPixel): def getPosition(self, x, y): - """getPosition(RectangularPixel self, double x, double y) -> kvector_t""" + """ + getPosition(RectangularPixel self, double x, double y) -> kvector_t + + kvector_t RectangularPixel::getPosition(double x, double y) const + + """ return _libBornAgainCore.RectangularPixel_getPosition(self, x, y) @@ -26282,7 +26339,7 @@ class ResolutionFunction2DGaussian(IResolutionFunction2D): """ evaluateCDF(ResolutionFunction2DGaussian self, double x, double y) -> double - double ResolutionFunction2DGaussian::evaluateCDF(double x, double y) const + double ResolutionFunction2DGaussian::evaluateCDF(double x, double y) const """ return _libBornAgainCore.ResolutionFunction2DGaussian_evaluateCDF(self, x, y) @@ -26292,7 +26349,7 @@ class ResolutionFunction2DGaussian(IResolutionFunction2D): """ clone(ResolutionFunction2DGaussian self) -> ResolutionFunction2DGaussian - ResolutionFunction2DGaussian* ResolutionFunction2DGaussian::clone() const + ResolutionFunction2DGaussian* ResolutionFunction2DGaussian::clone() const """ return _libBornAgainCore.ResolutionFunction2DGaussian_clone(self) @@ -26314,7 +26371,7 @@ class ResolutionFunction2DGaussian(IResolutionFunction2D): """ getSigmaX(ResolutionFunction2DGaussian self) -> double - double ResolutionFunction2DGaussian::getSigmaX() const + double ResolutionFunction2DGaussian::getSigmaX() const """ return _libBornAgainCore.ResolutionFunction2DGaussian_getSigmaX(self) @@ -26324,7 +26381,7 @@ class ResolutionFunction2DGaussian(IResolutionFunction2D): """ getSigmaY(ResolutionFunction2DGaussian self) -> double - double ResolutionFunction2DGaussian::getSigmaY() const + double ResolutionFunction2DGaussian::getSigmaY() const """ return _libBornAgainCore.ResolutionFunction2DGaussian_getSigmaY(self) @@ -26397,7 +26454,7 @@ class SpecularSimulation(Simulation): """ accept(SpecularSimulation self, INodeVisitor visitor) - void SpecularSimulation::accept(INodeVisitor *visitor) const override final + void SpecularSimulation::accept(INodeVisitor *visitor) const overridefinal Calls the INodeVisitor's visit method. @@ -26575,7 +26632,7 @@ class SampleBuilderFactoryTemp(_object): """ contains(SampleBuilderFactoryTemp self, std::string const & item_key) -> bool - bool IFactory< Key, AbstractProduct >::contains(const Key &item_key) const + bool IFactory< Key, AbstractProduct >::contains(const Key &item_key) const """ return _libBornAgainCore.SampleBuilderFactoryTemp_contains(self, item_key) @@ -26599,7 +26656,7 @@ class SampleBuilderFactoryTemp(_object): """ begin(SampleBuilderFactoryTemp self) -> IFactory< std::string,IMultiLayerBuilder >::const_iterator - const_iterator IFactory< Key, AbstractProduct >::begin() const + const_iterator IFactory< Key, AbstractProduct >::begin() const """ return _libBornAgainCore.SampleBuilderFactoryTemp_begin(self) @@ -26609,7 +26666,7 @@ class SampleBuilderFactoryTemp(_object): """ end(SampleBuilderFactoryTemp self) -> IFactory< std::string,IMultiLayerBuilder >::const_iterator - const_iterator IFactory< Key, AbstractProduct >::end() const + const_iterator IFactory< Key, AbstractProduct >::end() const """ return _libBornAgainCore.SampleBuilderFactoryTemp_end(self) @@ -26724,7 +26781,7 @@ class SimulationFactoryTemp(_object): """ contains(SimulationFactoryTemp self, std::string const & item_key) -> bool - bool IFactory< Key, AbstractProduct >::contains(const Key &item_key) const + bool IFactory< Key, AbstractProduct >::contains(const Key &item_key) const """ return _libBornAgainCore.SimulationFactoryTemp_contains(self, item_key) @@ -26748,7 +26805,7 @@ class SimulationFactoryTemp(_object): """ begin(SimulationFactoryTemp self) -> IFactory< std::string,Simulation >::const_iterator - const_iterator IFactory< Key, AbstractProduct >::begin() const + const_iterator IFactory< Key, AbstractProduct >::begin() const """ return _libBornAgainCore.SimulationFactoryTemp_begin(self) @@ -26758,7 +26815,7 @@ class SimulationFactoryTemp(_object): """ end(SimulationFactoryTemp self) -> IFactory< std::string,Simulation >::const_iterator - const_iterator IFactory< Key, AbstractProduct >::end() const + const_iterator IFactory< Key, AbstractProduct >::end() const """ return _libBornAgainCore.SimulationFactoryTemp_end(self) @@ -26809,7 +26866,7 @@ class AxesUnits(_object): Wrapper for detector axes units, required for a better representation of detector axes units in python - C++ includes: IDetector.h + C++ includes: UnitConverters.h """ @@ -26833,7 +26890,14 @@ AxesUnits_swigregister = _libBornAgainCore.AxesUnits_swigregister AxesUnits_swigregister(AxesUnits) class IUnitConverter(ICloneable): - """Proxy of C++ IUnitConverter class.""" + """ + + + Interface for objects that provide axis translations to different units for IDetector objects + + C++ includes: UnitConverters.h + + """ __swig_setmethods__ = {} for _s in [ICloneable]: @@ -26854,29 +26918,49 @@ class IUnitConverter(ICloneable): """ clone(IUnitConverter self) -> IUnitConverter - virtual ICloneable* ICloneable::clone() const =0 + virtual IUnitConverter* IUnitConverter::clone() const =0 """ return _libBornAgainCore.IUnitConverter_clone(self) def dimension(self): - """dimension(IUnitConverter self) -> size_t""" + """ + dimension(IUnitConverter self) -> size_t + + virtual size_t IUnitConverter::dimension() const =0 + + """ return _libBornAgainCore.IUnitConverter_dimension(self) def calculateMin(self, i_axis, units_type): - """calculateMin(IUnitConverter self, size_t i_axis, AxesUnits units_type) -> double""" + """ + calculateMin(IUnitConverter self, size_t i_axis, AxesUnits units_type) -> double + + virtual double IUnitConverter::calculateMin(size_t i_axis, AxesUnits units_type) const =0 + + """ return _libBornAgainCore.IUnitConverter_calculateMin(self, i_axis, units_type) def calculateMax(self, i_axis, units_type): - """calculateMax(IUnitConverter self, size_t i_axis, AxesUnits units_type) -> double""" + """ + calculateMax(IUnitConverter self, size_t i_axis, AxesUnits units_type) -> double + + virtual double IUnitConverter::calculateMax(size_t i_axis, AxesUnits units_type) const =0 + + """ return _libBornAgainCore.IUnitConverter_calculateMax(self, i_axis, units_type) def axisSize(self, i_axis): - """axisSize(IUnitConverter self, size_t i_axis) -> size_t""" + """ + axisSize(IUnitConverter self, size_t i_axis) -> size_t + + virtual size_t IUnitConverter::axisSize(size_t i_axis) const =0 + + """ return _libBornAgainCore.IUnitConverter_axisSize(self, i_axis) @@ -26884,6 +26968,9 @@ class IUnitConverter(ICloneable): """ axisName(IUnitConverter self, size_t i_axis, AxesUnits units_type) -> std::string axisName(IUnitConverter self, size_t i_axis) -> std::string + + virtual std::string IUnitConverter::axisName(size_t i_axis, AxesUnits units_type=AxesUnits::DEFAULT) const =0 + """ return _libBornAgainCore.IUnitConverter_axisName(self, *args) @@ -26891,7 +26978,14 @@ IUnitConverter_swigregister = _libBornAgainCore.IUnitConverter_swigregister IUnitConverter_swigregister(IUnitConverter) class UnitConverterSimple(IUnitConverter): - """Proxy of C++ UnitConverterSimple class.""" + """ + + + Interface for objects that provide axis translations to different units for IDetector objects + + C++ includes: UnitConverters.h + + """ __swig_setmethods__ = {} for _s in [IUnitConverter]: @@ -26909,22 +27003,42 @@ class UnitConverterSimple(IUnitConverter): __del__ = lambda self: None def dimension(self): - """dimension(UnitConverterSimple self) -> size_t""" + """ + dimension(UnitConverterSimple self) -> size_t + + size_t UnitConverterSimple::dimension() const override + + """ return _libBornAgainCore.UnitConverterSimple_dimension(self) def calculateMin(self, i_axis, units_type): - """calculateMin(UnitConverterSimple self, size_t i_axis, AxesUnits units_type) -> double""" + """ + calculateMin(UnitConverterSimple self, size_t i_axis, AxesUnits units_type) -> double + + double UnitConverterSimple::calculateMin(size_t i_axis, AxesUnits units_type) const override + + """ return _libBornAgainCore.UnitConverterSimple_calculateMin(self, i_axis, units_type) def calculateMax(self, i_axis, units_type): - """calculateMax(UnitConverterSimple self, size_t i_axis, AxesUnits units_type) -> double""" + """ + calculateMax(UnitConverterSimple self, size_t i_axis, AxesUnits units_type) -> double + + double UnitConverterSimple::calculateMax(size_t i_axis, AxesUnits units_type) const override + + """ return _libBornAgainCore.UnitConverterSimple_calculateMax(self, i_axis, units_type) def axisSize(self, i_axis): - """axisSize(UnitConverterSimple self, size_t i_axis) -> size_t""" + """ + axisSize(UnitConverterSimple self, size_t i_axis) -> size_t + + size_t UnitConverterSimple::axisSize(size_t i_axis) const override + + """ return _libBornAgainCore.UnitConverterSimple_axisSize(self, i_axis) @@ -26932,6 +27046,9 @@ class UnitConverterSimple(IUnitConverter): """ axisName(UnitConverterSimple self, size_t i_axis, AxesUnits units_type) -> std::string axisName(UnitConverterSimple self, size_t i_axis) -> std::string + + std::string UnitConverterSimple::axisName(size_t i_axis, AxesUnits units_type=AxesUnits::DEFAULT) const override + """ return _libBornAgainCore.UnitConverterSimple_axisName(self, *args) @@ -26939,7 +27056,14 @@ UnitConverterSimple_swigregister = _libBornAgainCore.UnitConverterSimple_swigreg UnitConverterSimple_swigregister(UnitConverterSimple) class SphericalConverter(UnitConverterSimple): - """Proxy of C++ SphericalConverter class.""" + """ + + + IUnitConverter class that handles the unit translations for spherical detectors Its default units are radians for both axes + + C++ includes: UnitConverters.h + + """ __swig_setmethods__ = {} for _s in [UnitConverterSimple]: @@ -26952,7 +27076,12 @@ class SphericalConverter(UnitConverterSimple): __repr__ = _swig_repr def __init__(self, detector, beam): - """__init__(SphericalConverter self, SphericalDetector detector, Beam beam) -> SphericalConverter""" + """ + __init__(SphericalConverter self, SphericalDetector detector, Beam beam) -> SphericalConverter + + SphericalConverter::SphericalConverter(const SphericalDetector &detector, const Beam &beam) + + """ this = _libBornAgainCore.new_SphericalConverter(detector, beam) try: self.this.append(this) @@ -26965,7 +27094,7 @@ class SphericalConverter(UnitConverterSimple): """ clone(SphericalConverter self) -> SphericalConverter - virtual ICloneable* ICloneable::clone() const =0 + SphericalConverter * SphericalConverter::clone() const override """ return _libBornAgainCore.SphericalConverter_clone(self) @@ -26974,7 +27103,14 @@ SphericalConverter_swigregister = _libBornAgainCore.SphericalConverter_swigregis SphericalConverter_swigregister(SphericalConverter) class RectangularConverter(UnitConverterSimple): - """Proxy of C++ RectangularConverter class.""" + """ + + + IUnitConverter class that handles the unit translations for rectangular detectors Its default units are mm for both axes + + C++ includes: UnitConverters.h + + """ __swig_setmethods__ = {} for _s in [UnitConverterSimple]: @@ -26987,7 +27123,12 @@ class RectangularConverter(UnitConverterSimple): __repr__ = _swig_repr def __init__(self, detector, beam): - """__init__(RectangularConverter self, RectangularDetector detector, Beam beam) -> RectangularConverter""" + """ + __init__(RectangularConverter self, RectangularDetector detector, Beam beam) -> RectangularConverter + + RectangularConverter::RectangularConverter(const RectangularDetector &detector, const Beam &beam) + + """ this = _libBornAgainCore.new_RectangularConverter(detector, beam) try: self.this.append(this) @@ -27000,7 +27141,7 @@ class RectangularConverter(UnitConverterSimple): """ clone(RectangularConverter self) -> RectangularConverter - virtual ICloneable* ICloneable::clone() const =0 + RectangularConverter * RectangularConverter::clone() const override """ return _libBornAgainCore.RectangularConverter_clone(self) @@ -27009,7 +27150,14 @@ RectangularConverter_swigregister = _libBornAgainCore.RectangularConverter_swigr RectangularConverter_swigregister(RectangularConverter) class OffSpecularConverter(UnitConverterSimple): - """Proxy of C++ OffSpecularConverter class.""" + """ + + + IUnitConverter class that handles the unit translations for off-specular simulations with a spherical detector Its default units are radians for both axes + + C++ includes: UnitConverters.h + + """ __swig_setmethods__ = {} for _s in [UnitConverterSimple]: @@ -27022,7 +27170,12 @@ class OffSpecularConverter(UnitConverterSimple): __repr__ = _swig_repr def __init__(self, detector, beam, alpha_axis): - """__init__(OffSpecularConverter self, IDetector2D detector, Beam beam, IAxis alpha_axis) -> OffSpecularConverter""" + """ + __init__(OffSpecularConverter self, IDetector2D detector, Beam beam, IAxis alpha_axis) -> OffSpecularConverter + + OffSpecularConverter::OffSpecularConverter(const IDetector2D &detector, const Beam &beam, const IAxis &alpha_axis) + + """ this = _libBornAgainCore.new_OffSpecularConverter(detector, beam, alpha_axis) try: self.this.append(this) @@ -27035,7 +27188,7 @@ class OffSpecularConverter(UnitConverterSimple): """ clone(OffSpecularConverter self) -> OffSpecularConverter - virtual ICloneable* ICloneable::clone() const =0 + OffSpecularConverter * OffSpecularConverter::clone() const override """ return _libBornAgainCore.OffSpecularConverter_clone(self) diff --git a/auto/Wrap/libBornAgainCore_wrap.cpp b/auto/Wrap/libBornAgainCore_wrap.cpp index a4f255d7b1c..926b8a0f3e8 100644 --- a/auto/Wrap/libBornAgainCore_wrap.cpp +++ b/auto/Wrap/libBornAgainCore_wrap.cpp @@ -42485,28 +42485,6 @@ fail: } -SWIGINTERN PyObject *_wrap_FitObject_getDefaultAxisUnits(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - FitObject *arg1 = (FitObject *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - std::string result; - - if (!PyArg_ParseTuple(args,(char *)"O:FitObject_getDefaultAxisUnits",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_FitObject, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FitObject_getDefaultAxisUnits" "', argument " "1"" of type '" "FitObject const *""'"); - } - arg1 = reinterpret_cast< FitObject * >(argp1); - result = ((FitObject const *)arg1)->getDefaultAxisUnits(); - resultobj = SWIG_From_std_string(static_cast< std::string >(result)); - return resultobj; -fail: - return NULL; -} - - SWIGINTERN PyObject *FitObject_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; @@ -46453,105 +46431,6 @@ fail: } -SWIGINTERN PyObject *_wrap_FitSuiteObjects_getDefaultAxesUnits__SWIG_0(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - FitSuiteObjects *arg1 = (FitSuiteObjects *) 0 ; - size_t arg2 ; - void *argp1 = 0 ; - int res1 = 0 ; - size_t val2 ; - int ecode2 = 0 ; - PyObject * obj0 = 0 ; - PyObject * obj1 = 0 ; - std::string result; - - if (!PyArg_ParseTuple(args,(char *)"OO:FitSuiteObjects_getDefaultAxesUnits",&obj0,&obj1)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_FitSuiteObjects, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FitSuiteObjects_getDefaultAxesUnits" "', argument " "1"" of type '" "FitSuiteObjects const *""'"); - } - arg1 = reinterpret_cast< FitSuiteObjects * >(argp1); - ecode2 = SWIG_AsVal_size_t(obj1, &val2); - if (!SWIG_IsOK(ecode2)) { - SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "FitSuiteObjects_getDefaultAxesUnits" "', argument " "2"" of type '" "size_t""'"); - } - arg2 = static_cast< size_t >(val2); - result = ((FitSuiteObjects const *)arg1)->getDefaultAxesUnits(arg2); - resultobj = SWIG_From_std_string(static_cast< std::string >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FitSuiteObjects_getDefaultAxesUnits__SWIG_1(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { - PyObject *resultobj = 0; - FitSuiteObjects *arg1 = (FitSuiteObjects *) 0 ; - void *argp1 = 0 ; - int res1 = 0 ; - PyObject * obj0 = 0 ; - std::string result; - - if (!PyArg_ParseTuple(args,(char *)"O:FitSuiteObjects_getDefaultAxesUnits",&obj0)) SWIG_fail; - res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_FitSuiteObjects, 0 | 0 ); - if (!SWIG_IsOK(res1)) { - SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "FitSuiteObjects_getDefaultAxesUnits" "', argument " "1"" of type '" "FitSuiteObjects const *""'"); - } - arg1 = reinterpret_cast< FitSuiteObjects * >(argp1); - result = ((FitSuiteObjects const *)arg1)->getDefaultAxesUnits(); - resultobj = SWIG_From_std_string(static_cast< std::string >(result)); - return resultobj; -fail: - return NULL; -} - - -SWIGINTERN PyObject *_wrap_FitSuiteObjects_getDefaultAxesUnits(PyObject *self, PyObject *args) { - Py_ssize_t argc; - PyObject *argv[3] = { - 0 - }; - Py_ssize_t ii; - - if (!PyTuple_Check(args)) SWIG_fail; - argc = args ? PyObject_Length(args) : 0; - for (ii = 0; (ii < 2) && (ii < argc); ii++) { - argv[ii] = PyTuple_GET_ITEM(args,ii); - } - if (argc == 1) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FitSuiteObjects, 0); - _v = SWIG_CheckState(res); - if (_v) { - return _wrap_FitSuiteObjects_getDefaultAxesUnits__SWIG_1(self, args); - } - } - if (argc == 2) { - int _v; - void *vptr = 0; - int res = SWIG_ConvertPtr(argv[0], &vptr, SWIGTYPE_p_FitSuiteObjects, 0); - _v = SWIG_CheckState(res); - if (_v) { - { - int res = SWIG_AsVal_size_t(argv[1], NULL); - _v = SWIG_CheckState(res); - } - if (_v) { - return _wrap_FitSuiteObjects_getDefaultAxesUnits__SWIG_0(self, args); - } - } - } - -fail: - SWIG_SetErrorMsg(PyExc_NotImplementedError,"Wrong number or type of arguments for overloaded function 'FitSuiteObjects_getDefaultAxesUnits'.\n" - " Possible C/C++ prototypes are:\n" - " FitSuiteObjects::getDefaultAxesUnits(size_t) const\n" - " FitSuiteObjects::getDefaultAxesUnits() const\n"); - return 0; -} - - SWIGINTERN PyObject *FitSuiteObjects_swigregister(PyObject *SWIGUNUSEDPARM(self), PyObject *args) { PyObject *obj; if (!PyArg_ParseTuple(args,(char*)"O:swigregister", &obj)) return NULL; @@ -113587,7 +113466,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"vecOfLambdaAlphaPhi", _wrap_vecOfLambdaAlphaPhi, METH_VARARGS, (char *)"\n" "vecOfLambdaAlphaPhi(double _lambda, double _alpha, double _phi) -> kvector_t\n" "\n" - "BA_CORE_API_ BasicVector3D<double> vecOfLambdaAlphaPhi(const double _lambda, const double _alpha, const double _phi)\n" + "BA_CORE_API_ BasicVector3D<double> vecOfLambdaAlphaPhi(double _lambda, double _alpha, double _phi)\n" "\n" "Creates a vector<double> as a wavevector with given wavelength and angles. Specifically needed for grazing-incidence scattering. \n" "\n" @@ -113629,7 +113508,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"INamed_getName", _wrap_INamed_getName, METH_VARARGS, (char *)"\n" "INamed_getName(INamed self) -> std::string\n" "\n" - "std::string INamed::getName() const\n" + "std::string INamed::getName() const \n" "\n" ""}, { (char *)"disown_INamed", _wrap_disown_INamed, METH_VARARGS, NULL}, @@ -114412,31 +114291,31 @@ static PyMethodDef SwigMethods[] = { { (char *)"WavevectorInfo_transformed", _wrap_WavevectorInfo_transformed, METH_VARARGS, (char *)"\n" "WavevectorInfo_transformed(WavevectorInfo self, Transform3D const & transform) -> WavevectorInfo\n" "\n" - "WavevectorInfo WavevectorInfo::transformed(const Transform3D &transform) const\n" + "WavevectorInfo WavevectorInfo::transformed(const Transform3D &transform) const \n" "\n" ""}, { (char *)"WavevectorInfo_getKi", _wrap_WavevectorInfo_getKi, METH_VARARGS, (char *)"\n" "WavevectorInfo_getKi(WavevectorInfo self) -> cvector_t\n" "\n" - "cvector_t WavevectorInfo::getKi() const\n" + "cvector_t WavevectorInfo::getKi() const \n" "\n" ""}, { (char *)"WavevectorInfo_getKf", _wrap_WavevectorInfo_getKf, METH_VARARGS, (char *)"\n" "WavevectorInfo_getKf(WavevectorInfo self) -> cvector_t\n" "\n" - "cvector_t WavevectorInfo::getKf() const\n" + "cvector_t WavevectorInfo::getKf() const \n" "\n" ""}, { (char *)"WavevectorInfo_getQ", _wrap_WavevectorInfo_getQ, METH_VARARGS, (char *)"\n" "WavevectorInfo_getQ(WavevectorInfo self) -> cvector_t\n" "\n" - "cvector_t WavevectorInfo::getQ() const\n" + "cvector_t WavevectorInfo::getQ() const \n" "\n" ""}, { (char *)"WavevectorInfo_getWavelength", _wrap_WavevectorInfo_getWavelength, METH_VARARGS, (char *)"\n" "WavevectorInfo_getWavelength(WavevectorInfo self) -> double\n" "\n" - "double WavevectorInfo::getWavelength() const\n" + "double WavevectorInfo::getWavelength() const \n" "\n" ""}, { (char *)"delete_WavevectorInfo", _wrap_delete_WavevectorInfo, METH_VARARGS, (char *)"delete_WavevectorInfo(WavevectorInfo self)"}, @@ -114521,25 +114400,25 @@ static PyMethodDef SwigMethods[] = { { (char *)"Beam_getBlochVector", _wrap_Beam_getBlochVector, METH_VARARGS, (char *)"\n" "Beam_getBlochVector(Beam self) -> kvector_t\n" "\n" - "kvector_t Beam::getBlochVector() const\n" + "kvector_t Beam::getBlochVector() const \n" "\n" ""}, { (char *)"Beam_getWavelength", _wrap_Beam_getWavelength, METH_VARARGS, (char *)"\n" "Beam_getWavelength(Beam self) -> double\n" "\n" - "double Beam::getWavelength() const\n" + "double Beam::getWavelength() const \n" "\n" ""}, { (char *)"Beam_getAlpha", _wrap_Beam_getAlpha, METH_VARARGS, (char *)"\n" "Beam_getAlpha(Beam self) -> double\n" "\n" - "double Beam::getAlpha() const\n" + "double Beam::getAlpha() const \n" "\n" ""}, { (char *)"Beam_getPhi", _wrap_Beam_getPhi, METH_VARARGS, (char *)"\n" "Beam_getPhi(Beam self) -> double\n" "\n" - "double Beam::getPhi() const\n" + "double Beam::getPhi() const \n" "\n" ""}, { (char *)"Beam_accept", _wrap_Beam_accept, METH_VARARGS, (char *)"\n" @@ -114565,13 +114444,13 @@ static PyMethodDef SwigMethods[] = { { (char *)"Bin1D_getMidPoint", _wrap_Bin1D_getMidPoint, METH_VARARGS, (char *)"\n" "Bin1D_getMidPoint(Bin1D self) -> double\n" "\n" - "double Bin1D::getMidPoint() const\n" + "double Bin1D::getMidPoint() const \n" "\n" ""}, { (char *)"Bin1D_getBinSize", _wrap_Bin1D_getBinSize, METH_VARARGS, (char *)"\n" "Bin1D_getBinSize(Bin1D self) -> double\n" "\n" - "double Bin1D::getBinSize() const\n" + "double Bin1D::getBinSize() const \n" "\n" ""}, { (char *)"delete_Bin1D", _wrap_delete_Bin1D, METH_VARARGS, (char *)"delete_Bin1D(Bin1D self)"}, @@ -114597,13 +114476,13 @@ static PyMethodDef SwigMethods[] = { { (char *)"Bin1DKVector_getMidPoint", _wrap_Bin1DKVector_getMidPoint, METH_VARARGS, (char *)"\n" "Bin1DKVector_getMidPoint(Bin1DKVector self) -> kvector_t\n" "\n" - "kvector_t Bin1DKVector::getMidPoint() const\n" + "kvector_t Bin1DKVector::getMidPoint() const \n" "\n" ""}, { (char *)"Bin1DKVector_getDelta", _wrap_Bin1DKVector_getDelta, METH_VARARGS, (char *)"\n" "Bin1DKVector_getDelta(Bin1DKVector self) -> kvector_t\n" "\n" - "kvector_t Bin1DKVector::getDelta() const\n" + "kvector_t Bin1DKVector::getDelta() const \n" "\n" ""}, { (char *)"Bin1DKVector_m_q_lower_set", _wrap_Bin1DKVector_m_q_lower_set, METH_VARARGS, (char *)"Bin1DKVector_m_q_lower_set(Bin1DKVector self, kvector_t m_q_lower)"}, @@ -114625,13 +114504,13 @@ static PyMethodDef SwigMethods[] = { { (char *)"Bin1DCVector_getMidPoint", _wrap_Bin1DCVector_getMidPoint, METH_VARARGS, (char *)"\n" "Bin1DCVector_getMidPoint(Bin1DCVector self) -> cvector_t\n" "\n" - "cvector_t Bin1DCVector::getMidPoint() const\n" + "cvector_t Bin1DCVector::getMidPoint() const \n" "\n" ""}, { (char *)"Bin1DCVector_getDelta", _wrap_Bin1DCVector_getDelta, METH_VARARGS, (char *)"\n" "Bin1DCVector_getDelta(Bin1DCVector self) -> cvector_t\n" "\n" - "cvector_t Bin1DCVector::getDelta() const\n" + "cvector_t Bin1DCVector::getDelta() const \n" "\n" ""}, { (char *)"Bin1DCVector_m_q_lower_set", _wrap_Bin1DCVector_m_q_lower_set, METH_VARARGS, (char *)"Bin1DCVector_m_q_lower_set(Bin1DCVector self, cvector_t m_q_lower)"}, @@ -114739,13 +114618,13 @@ static PyMethodDef SwigMethods[] = { { (char *)"IAxis_getBinCenters", _wrap_IAxis_getBinCenters, METH_VARARGS, (char *)"\n" "IAxis_getBinCenters(IAxis self) -> vdouble1d_t\n" "\n" - "std::vector< double > IAxis::getBinCenters() const\n" + "std::vector< double > IAxis::getBinCenters() const \n" "\n" ""}, { (char *)"IAxis_getBinBoundaries", _wrap_IAxis_getBinBoundaries, METH_VARARGS, (char *)"\n" "IAxis_getBinBoundaries(IAxis self) -> vdouble1d_t\n" "\n" - "std::vector< double > IAxis::getBinBoundaries() const\n" + "std::vector< double > IAxis::getBinBoundaries() const \n" "\n" ""}, { (char *)"IAxis_createClippedAxis", _wrap_IAxis_createClippedAxis, METH_VARARGS, (char *)"\n" @@ -114842,7 +114721,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"VariableBinAxis_getBinCenter", _wrap_VariableBinAxis_getBinCenter, METH_VARARGS, (char *)"\n" "VariableBinAxis_getBinCenter(VariableBinAxis self, size_t index) -> double\n" "\n" - "double VariableBinAxis::getBinCenter(size_t index) const\n" + "double VariableBinAxis::getBinCenter(size_t index) const \n" "\n" ""}, { (char *)"VariableBinAxis_findClosestIndex", _wrap_VariableBinAxis_findClosestIndex, METH_VARARGS, (char *)"\n" @@ -114856,13 +114735,13 @@ static PyMethodDef SwigMethods[] = { { (char *)"VariableBinAxis_getBinCenters", _wrap_VariableBinAxis_getBinCenters, METH_VARARGS, (char *)"\n" "VariableBinAxis_getBinCenters(VariableBinAxis self) -> vdouble1d_t\n" "\n" - "std::vector< double > VariableBinAxis::getBinCenters() const\n" + "std::vector< double > VariableBinAxis::getBinCenters() const \n" "\n" ""}, { (char *)"VariableBinAxis_getBinBoundaries", _wrap_VariableBinAxis_getBinBoundaries, METH_VARARGS, (char *)"\n" "VariableBinAxis_getBinBoundaries(VariableBinAxis self) -> vdouble1d_t\n" "\n" - "std::vector<double> VariableBinAxis::getBinBoundaries() const\n" + "std::vector<double> VariableBinAxis::getBinBoundaries() const \n" "\n" ""}, { (char *)"VariableBinAxis_createClippedAxis", _wrap_VariableBinAxis_createClippedAxis, METH_VARARGS, (char *)"\n" @@ -114969,7 +114848,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"CustomBinAxis_getBinCenters", _wrap_CustomBinAxis_getBinCenters, METH_VARARGS, (char *)"\n" "CustomBinAxis_getBinCenters(CustomBinAxis self) -> vdouble1d_t\n" "\n" - "std::vector< double > CustomBinAxis::getBinCenters() const\n" + "std::vector< double > CustomBinAxis::getBinCenters() const \n" "\n" ""}, { (char *)"CustomBinAxis_createClippedAxis", _wrap_CustomBinAxis_createClippedAxis, METH_VARARGS, (char *)"\n" @@ -115212,7 +115091,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FitStrategyDefault_clone", _wrap_FitStrategyDefault_clone, METH_VARARGS, (char *)"\n" "FitStrategyDefault_clone(FitStrategyDefault self) -> FitStrategyDefault\n" "\n" - "FitStrategyDefault * FitStrategyDefault::clone() const\n" + "FitStrategyDefault * FitStrategyDefault::clone() const \n" "\n" ""}, { (char *)"FitStrategyDefault_execute", _wrap_FitStrategyDefault_execute, METH_VARARGS, (char *)"\n" @@ -115251,13 +115130,13 @@ static PyMethodDef SwigMethods[] = { { (char *)"IntensityFunctionLog_clone", _wrap_IntensityFunctionLog_clone, METH_VARARGS, (char *)"\n" "IntensityFunctionLog_clone(IntensityFunctionLog self) -> IntensityFunctionLog\n" "\n" - "virtual IntensityFunctionLog* IntensityFunctionLog::clone() const\n" + "virtual IntensityFunctionLog* IntensityFunctionLog::clone() const \n" "\n" ""}, { (char *)"IntensityFunctionLog_evaluate", _wrap_IntensityFunctionLog_evaluate, METH_VARARGS, (char *)"\n" "IntensityFunctionLog_evaluate(IntensityFunctionLog self, double value) -> double\n" "\n" - "double IntensityFunctionLog::evaluate(double value) const\n" + "double IntensityFunctionLog::evaluate(double value) const \n" "\n" ""}, { (char *)"new_IntensityFunctionLog", _wrap_new_IntensityFunctionLog, METH_VARARGS, (char *)"\n" @@ -115280,13 +115159,13 @@ static PyMethodDef SwigMethods[] = { { (char *)"IntensityFunctionSqrt_clone", _wrap_IntensityFunctionSqrt_clone, METH_VARARGS, (char *)"\n" "IntensityFunctionSqrt_clone(IntensityFunctionSqrt self) -> IntensityFunctionSqrt\n" "\n" - "virtual IntensityFunctionSqrt* IntensityFunctionSqrt::clone() const\n" + "virtual IntensityFunctionSqrt* IntensityFunctionSqrt::clone() const \n" "\n" ""}, { (char *)"IntensityFunctionSqrt_evaluate", _wrap_IntensityFunctionSqrt_evaluate, METH_VARARGS, (char *)"\n" "IntensityFunctionSqrt_evaluate(IntensityFunctionSqrt self, double value) -> double\n" "\n" - "double IntensityFunctionSqrt::evaluate(double value) const\n" + "double IntensityFunctionSqrt::evaluate(double value) const \n" "\n" ""}, { (char *)"new_IntensityFunctionSqrt", _wrap_new_IntensityFunctionSqrt, METH_VARARGS, (char *)"\n" @@ -115348,7 +115227,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"IntensityNormalizer_clone", _wrap_IntensityNormalizer_clone, METH_VARARGS, (char *)"\n" "IntensityNormalizer_clone(IntensityNormalizer self) -> IntensityNormalizer\n" "\n" - "IntensityNormalizer * IntensityNormalizer::clone() const\n" + "IntensityNormalizer * IntensityNormalizer::clone() const \n" "\n" ""}, { (char *)"IntensityNormalizer_accept", _wrap_IntensityNormalizer_accept, METH_VARARGS, (char *)"\n" @@ -115362,7 +115241,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"IntensityNormalizer_createNormalizedData", _wrap_IntensityNormalizer_createNormalizedData, METH_VARARGS, (char *)"\n" "IntensityNormalizer_createNormalizedData(IntensityNormalizer self, IntensityData data) -> IntensityData\n" "\n" - "OutputData< double > * IntensityNormalizer::createNormalizedData(const OutputData< double > &data) const\n" + "OutputData< double > * IntensityNormalizer::createNormalizedData(const OutputData< double > &data) const \n" "\n" ""}, { (char *)"IntensityNormalizer_apply", _wrap_IntensityNormalizer_apply, METH_VARARGS, (char *)"\n" @@ -115702,12 +115581,6 @@ static PyMethodDef SwigMethods[] = { "Returns a vector of children (const). \n" "\n" ""}, - { (char *)"FitObject_getDefaultAxisUnits", _wrap_FitObject_getDefaultAxisUnits, METH_VARARGS, (char *)"\n" - "FitObject_getDefaultAxisUnits(FitObject self) -> std::string\n" - "\n" - "std::string FitObject::getDefaultAxisUnits() const\n" - "\n" - ""}, { (char *)"FitObject_swigregister", FitObject_swigregister, METH_VARARGS, NULL}, { (char *)"new_FitOptions", _wrap_new_FitOptions, METH_VARARGS, (char *)"new_FitOptions() -> FitOptions"}, { (char *)"delete_FitOptions", _wrap_delete_FitOptions, METH_VARARGS, (char *)"delete_FitOptions(FitOptions self)"}, @@ -115737,7 +115610,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FitParameter_clone", _wrap_FitParameter_clone, METH_VARARGS, (char *)"\n" "FitParameter_clone(FitParameter self) -> FitParameter\n" "\n" - "FitParameter * FitParameter::clone() const\n" + "FitParameter * FitParameter::clone() const \n" "\n" ""}, { (char *)"FitParameter_setValue", _wrap_FitParameter_setValue, METH_VARARGS, (char *)"\n" @@ -115775,7 +115648,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FitParameter_patterns", _wrap_FitParameter_patterns, METH_VARARGS, (char *)"\n" "FitParameter_patterns(FitParameter self) -> vector_string_t\n" "\n" - "std::vector< std::string > FitParameter::patterns() const\n" + "std::vector< std::string > FitParameter::patterns() const \n" "\n" ""}, { (char *)"FitParameter_matchedParameterNames", _wrap_FitParameter_matchedParameterNames, METH_VARARGS, (char *)"\n" @@ -116051,21 +115924,21 @@ static PyMethodDef SwigMethods[] = { "getRealOutputData(size_t i_item=0) -> IntensityData\n" "FitSuite_getRealOutputData(FitSuite self) -> IntensityData\n" "\n" - "const OutputData< double > * FitSuite::getRealOutputData(size_t i_item=0) const\n" + "const OutputData< double > * FitSuite::getRealOutputData(size_t i_item=0) const \n" "\n" ""}, { (char *)"FitSuite_getSimulationOutputData", _wrap_FitSuite_getSimulationOutputData, METH_VARARGS, (char *)"\n" "getSimulationOutputData(size_t i_item=0) -> IntensityData\n" "FitSuite_getSimulationOutputData(FitSuite self) -> IntensityData\n" "\n" - "const OutputData< double > * FitSuite::getSimulationOutputData(size_t i_item=0) const\n" + "const OutputData< double > * FitSuite::getSimulationOutputData(size_t i_item=0) const \n" "\n" ""}, { (char *)"FitSuite_getChiSquaredOutputData", _wrap_FitSuite_getChiSquaredOutputData, METH_VARARGS, (char *)"\n" "getChiSquaredOutputData(size_t i_item=0) -> IntensityData\n" "FitSuite_getChiSquaredOutputData(FitSuite self) -> IntensityData\n" "\n" - "const OutputData< double > * FitSuite::getChiSquaredOutputData(size_t i_item=0) const\n" + "const OutputData< double > * FitSuite::getChiSquaredOutputData(size_t i_item=0) const \n" "\n" ""}, { (char *)"FitSuite_parametersToString", _wrap_FitSuite_parametersToString, METH_VARARGS, (char *)"\n" @@ -116234,7 +116107,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FitSuiteObjects_size", _wrap_FitSuiteObjects_size, METH_VARARGS, (char *)"\n" "FitSuiteObjects_size(FitSuiteObjects self) -> size_t\n" "\n" - "size_t FitSuiteObjects::size() const\n" + "size_t FitSuiteObjects::size() const \n" "\n" ""}, { (char *)"FitSuiteObjects_begin", _wrap_FitSuiteObjects_begin, METH_VARARGS, (char *)"\n" @@ -116257,13 +116130,6 @@ static PyMethodDef SwigMethods[] = { "Returns a vector of children (const). \n" "\n" ""}, - { (char *)"FitSuiteObjects_getDefaultAxesUnits", _wrap_FitSuiteObjects_getDefaultAxesUnits, METH_VARARGS, (char *)"\n" - "getDefaultAxesUnits(size_t i_item=0) -> std::string\n" - "FitSuiteObjects_getDefaultAxesUnits(FitSuiteObjects self) -> std::string\n" - "\n" - "std::string FitSuiteObjects::getDefaultAxesUnits(size_t i_item=0) const\n" - "\n" - ""}, { (char *)"FitSuiteObjects_swigregister", FitSuiteObjects_swigregister, METH_VARARGS, NULL}, { (char *)"StandardNormal", _wrap_StandardNormal, METH_VARARGS, (char *)"\n" "StandardNormal(double x) -> double\n" @@ -116412,7 +116278,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"AdjustMinimizerStrategy_clone", _wrap_AdjustMinimizerStrategy_clone, METH_VARARGS, (char *)"\n" "AdjustMinimizerStrategy_clone(AdjustMinimizerStrategy self) -> AdjustMinimizerStrategy\n" "\n" - "AdjustMinimizerStrategy * AdjustMinimizerStrategy::clone() const\n" + "AdjustMinimizerStrategy * AdjustMinimizerStrategy::clone() const \n" "\n" ""}, { (char *)"AdjustMinimizerStrategy_setMinimizer", _wrap_AdjustMinimizerStrategy_setMinimizer, METH_VARARGS, (char *)"\n" @@ -116679,7 +116545,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"Crystal_clone", _wrap_Crystal_clone, METH_VARARGS, (char *)"\n" "Crystal_clone(Crystal self) -> Crystal\n" "\n" - "Crystal * Crystal::clone() const override final\n" + "Crystal * Crystal::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -116687,7 +116553,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"Crystal_accept", _wrap_Crystal_accept, METH_VARARGS, (char *)"\n" "Crystal_accept(Crystal self, INodeVisitor visitor)\n" "\n" - "void Crystal::accept(INodeVisitor *visitor) const override final\n" + "void Crystal::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -116695,7 +116561,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"Crystal_createTotalFormFactor", _wrap_Crystal_createTotalFormFactor, METH_VARARGS, (char *)"\n" "Crystal_createTotalFormFactor(Crystal self, IFormFactor meso_crystal_form_factor, IRotation p_rotation, kvector_t translation) -> IFormFactor\n" "\n" - "IFormFactor * Crystal::createTotalFormFactor(const IFormFactor &meso_crystal_form_factor, const IRotation *p_rotation, const kvector_t &translation) const override final\n" + "IFormFactor * Crystal::createTotalFormFactor(const IFormFactor &meso_crystal_form_factor, const IRotation *p_rotation, const kvector_t &translation) const overridefinal\n" "\n" "Creates a total form factor for the mesocrystal with a specific shape and content The bulk content of the mesocrystal is encapsulated by the IClusteredParticles object itself \n" "\n" @@ -116703,7 +116569,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"Crystal_homogeneousRegions", _wrap_Crystal_homogeneousRegions, METH_VARARGS, (char *)"\n" "Crystal_homogeneousRegions(Crystal self) -> std::vector< HomogeneousRegion,std::allocator< HomogeneousRegion > >\n" "\n" - "std::vector< HomogeneousRegion > Crystal::homogeneousRegions() const override final\n" + "std::vector< HomogeneousRegion > Crystal::homogeneousRegions() const overridefinal\n" "\n" "Creates region information with volumetric densities instead of absolute volume These densities need to be multiplied by the total mesocrystal volume \n" "\n" @@ -116712,7 +116578,7 @@ static PyMethodDef SwigMethods[] = { "transformedLattice(IRotation p_rotation=None) -> Lattice\n" "Crystal_transformedLattice(Crystal self) -> Lattice\n" "\n" - "Lattice Crystal::transformedLattice(const IRotation *p_rotation=nullptr) const\n" + "Lattice Crystal::transformedLattice(const IRotation *p_rotation=nullptr) const \n" "\n" ""}, { (char *)"Crystal_setDWFactor", _wrap_Crystal_setDWFactor, METH_VARARGS, (char *)"\n" @@ -116724,7 +116590,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"Crystal_getChildren", _wrap_Crystal_getChildren, METH_VARARGS, (char *)"\n" "Crystal_getChildren(Crystal self) -> swig_dummy_type_const_inode_vector\n" "\n" - "std::vector< const INode * > Crystal::getChildren() const override final\n" + "std::vector< const INode * > Crystal::getChildren() const overridefinal\n" "\n" "Returns a vector of children (const). \n" "\n" @@ -116848,13 +116714,13 @@ static PyMethodDef SwigMethods[] = { { (char *)"DistributionGate_getMin", _wrap_DistributionGate_getMin, METH_VARARGS, (char *)"\n" "DistributionGate_getMin(DistributionGate self) -> double\n" "\n" - "double DistributionGate::getMin() const\n" + "double DistributionGate::getMin() const \n" "\n" ""}, { (char *)"DistributionGate_getMax", _wrap_DistributionGate_getMax, METH_VARARGS, (char *)"\n" "DistributionGate_getMax(DistributionGate self) -> double\n" "\n" - "double DistributionGate::getMax() const\n" + "double DistributionGate::getMax() const \n" "\n" ""}, { (char *)"DistributionGate_equidistantPoints", _wrap_DistributionGate_equidistantPoints, METH_VARARGS, (char *)"\n" @@ -116921,7 +116787,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"DistributionLorentz_getHWHM", _wrap_DistributionLorentz_getHWHM, METH_VARARGS, (char *)"\n" "DistributionLorentz_getHWHM(DistributionLorentz self) -> double\n" "\n" - "double DistributionLorentz::getHWHM() const\n" + "double DistributionLorentz::getHWHM() const \n" "\n" ""}, { (char *)"DistributionLorentz_equidistantPoints", _wrap_DistributionLorentz_equidistantPoints, METH_VARARGS, (char *)"\n" @@ -116988,7 +116854,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"DistributionGaussian_getStdDev", _wrap_DistributionGaussian_getStdDev, METH_VARARGS, (char *)"\n" "DistributionGaussian_getStdDev(DistributionGaussian self) -> double\n" "\n" - "double DistributionGaussian::getStdDev() const\n" + "double DistributionGaussian::getStdDev() const \n" "\n" ""}, { (char *)"DistributionGaussian_equidistantPoints", _wrap_DistributionGaussian_equidistantPoints, METH_VARARGS, (char *)"\n" @@ -117055,13 +116921,13 @@ static PyMethodDef SwigMethods[] = { { (char *)"DistributionLogNormal_getMedian", _wrap_DistributionLogNormal_getMedian, METH_VARARGS, (char *)"\n" "DistributionLogNormal_getMedian(DistributionLogNormal self) -> double\n" "\n" - "double DistributionLogNormal::getMedian() const\n" + "double DistributionLogNormal::getMedian() const \n" "\n" ""}, { (char *)"DistributionLogNormal_getScalePar", _wrap_DistributionLogNormal_getScalePar, METH_VARARGS, (char *)"\n" "DistributionLogNormal_getScalePar(DistributionLogNormal self) -> double\n" "\n" - "double DistributionLogNormal::getScalePar() const\n" + "double DistributionLogNormal::getScalePar() const \n" "\n" ""}, { (char *)"DistributionLogNormal_equidistantPoints", _wrap_DistributionLogNormal_equidistantPoints, METH_VARARGS, (char *)"\n" @@ -117136,7 +117002,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"DistributionCosine_getSigma", _wrap_DistributionCosine_getSigma, METH_VARARGS, (char *)"\n" "DistributionCosine_getSigma(DistributionCosine self) -> double\n" "\n" - "double DistributionCosine::getSigma() const\n" + "double DistributionCosine::getSigma() const \n" "\n" ""}, { (char *)"DistributionCosine_equidistantPoints", _wrap_DistributionCosine_equidistantPoints, METH_VARARGS, (char *)"\n" @@ -117203,19 +117069,19 @@ static PyMethodDef SwigMethods[] = { { (char *)"DistributionTrapezoid_getLeftWidth", _wrap_DistributionTrapezoid_getLeftWidth, METH_VARARGS, (char *)"\n" "DistributionTrapezoid_getLeftWidth(DistributionTrapezoid self) -> double\n" "\n" - "double DistributionTrapezoid::getLeftWidth() const\n" + "double DistributionTrapezoid::getLeftWidth() const \n" "\n" ""}, { (char *)"DistributionTrapezoid_getMiddleWidth", _wrap_DistributionTrapezoid_getMiddleWidth, METH_VARARGS, (char *)"\n" "DistributionTrapezoid_getMiddleWidth(DistributionTrapezoid self) -> double\n" "\n" - "double DistributionTrapezoid::getMiddleWidth() const\n" + "double DistributionTrapezoid::getMiddleWidth() const \n" "\n" ""}, { (char *)"DistributionTrapezoid_getRightWidth", _wrap_DistributionTrapezoid_getRightWidth, METH_VARARGS, (char *)"\n" "DistributionTrapezoid_getRightWidth(DistributionTrapezoid self) -> double\n" "\n" - "double DistributionTrapezoid::getRightWidth() const\n" + "double DistributionTrapezoid::getRightWidth() const \n" "\n" ""}, { (char *)"DistributionTrapezoid_equidistantPoints", _wrap_DistributionTrapezoid_equidistantPoints, METH_VARARGS, (char *)"\n" @@ -117278,19 +117144,19 @@ static PyMethodDef SwigMethods[] = { { (char *)"DetectorMask_isMasked", _wrap_DetectorMask_isMasked, METH_VARARGS, (char *)"\n" "DetectorMask_isMasked(DetectorMask self, size_t index) -> bool\n" "\n" - "bool DetectorMask::isMasked(size_t index) const\n" + "bool DetectorMask::isMasked(size_t index) const \n" "\n" ""}, { (char *)"DetectorMask_getMaskData", _wrap_DetectorMask_getMaskData, METH_VARARGS, (char *)"\n" "DetectorMask_getMaskData(DetectorMask self) -> OutputData< bool > const *\n" "\n" - "const OutputData<bool>* DetectorMask::getMaskData() const\n" + "const OutputData<bool>* DetectorMask::getMaskData() const \n" "\n" ""}, { (char *)"DetectorMask_createHistogram", _wrap_DetectorMask_createHistogram, METH_VARARGS, (char *)"\n" "DetectorMask_createHistogram(DetectorMask self) -> Histogram2D\n" "\n" - "Histogram2D * DetectorMask::createHistogram() const\n" + "Histogram2D * DetectorMask::createHistogram() const \n" "\n" ""}, { (char *)"DetectorMask_removeMasks", _wrap_DetectorMask_removeMasks, METH_VARARGS, (char *)"\n" @@ -117312,19 +117178,19 @@ static PyMethodDef SwigMethods[] = { { (char *)"DetectorMask_numberOfMaskedChannels", _wrap_DetectorMask_numberOfMaskedChannels, METH_VARARGS, (char *)"\n" "DetectorMask_numberOfMaskedChannels(DetectorMask self) -> int\n" "\n" - "int DetectorMask::numberOfMaskedChannels() const\n" + "int DetectorMask::numberOfMaskedChannels() const \n" "\n" ""}, { (char *)"DetectorMask_numberOfMasks", _wrap_DetectorMask_numberOfMasks, METH_VARARGS, (char *)"\n" "DetectorMask_numberOfMasks(DetectorMask self) -> size_t\n" "\n" - "size_t DetectorMask::numberOfMasks() const\n" + "size_t DetectorMask::numberOfMasks() const \n" "\n" ""}, { (char *)"DetectorMask_getMaskShape", _wrap_DetectorMask_getMaskShape, METH_VARARGS, (char *)"\n" "DetectorMask_getMaskShape(DetectorMask self, size_t mask_index, bool & mask_value) -> IShape2D\n" "\n" - "const IShape2D * DetectorMask::getMaskShape(size_t mask_index, bool &mask_value) const\n" + "const IShape2D * DetectorMask::getMaskShape(size_t mask_index, bool &mask_value) const \n" "\n" ""}, { (char *)"delete_DetectorMask", _wrap_delete_DetectorMask, METH_VARARGS, (char *)"delete_DetectorMask(DetectorMask self)"}, @@ -117357,7 +117223,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"Ellipse_clone", _wrap_Ellipse_clone, METH_VARARGS, (char *)"\n" "Ellipse_clone(Ellipse self) -> Ellipse\n" "\n" - "Ellipse* Ellipse::clone() const\n" + "Ellipse* Ellipse::clone() const \n" "\n" ""}, { (char *)"Ellipse_contains", _wrap_Ellipse_contains, METH_VARARGS, (char *)"\n" @@ -117372,31 +117238,31 @@ static PyMethodDef SwigMethods[] = { { (char *)"Ellipse_getCenterX", _wrap_Ellipse_getCenterX, METH_VARARGS, (char *)"\n" "Ellipse_getCenterX(Ellipse self) -> double\n" "\n" - "double Ellipse::getCenterX() const\n" + "double Ellipse::getCenterX() const \n" "\n" ""}, { (char *)"Ellipse_getCenterY", _wrap_Ellipse_getCenterY, METH_VARARGS, (char *)"\n" "Ellipse_getCenterY(Ellipse self) -> double\n" "\n" - "double Ellipse::getCenterY() const\n" + "double Ellipse::getCenterY() const \n" "\n" ""}, { (char *)"Ellipse_getRadiusX", _wrap_Ellipse_getRadiusX, METH_VARARGS, (char *)"\n" "Ellipse_getRadiusX(Ellipse self) -> double\n" "\n" - "double Ellipse::getRadiusX() const\n" + "double Ellipse::getRadiusX() const \n" "\n" ""}, { (char *)"Ellipse_getRadiusY", _wrap_Ellipse_getRadiusY, METH_VARARGS, (char *)"\n" "Ellipse_getRadiusY(Ellipse self) -> double\n" "\n" - "double Ellipse::getRadiusY() const\n" + "double Ellipse::getRadiusY() const \n" "\n" ""}, { (char *)"Ellipse_getTheta", _wrap_Ellipse_getTheta, METH_VARARGS, (char *)"\n" "Ellipse_getTheta(Ellipse self) -> double\n" "\n" - "double Ellipse::getTheta() const\n" + "double Ellipse::getTheta() const \n" "\n" ""}, { (char *)"delete_Ellipse", _wrap_delete_Ellipse, METH_VARARGS, (char *)"delete_Ellipse(Ellipse self)"}, @@ -117416,7 +117282,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"IFTDecayFunction1D_decayLength", _wrap_IFTDecayFunction1D_decayLength, METH_VARARGS, (char *)"\n" "IFTDecayFunction1D_decayLength(IFTDecayFunction1D self) -> double\n" "\n" - "double IFTDecayFunction1D::decayLength() const\n" + "double IFTDecayFunction1D::decayLength() const \n" "\n" ""}, { (char *)"delete_IFTDecayFunction1D", _wrap_delete_IFTDecayFunction1D, METH_VARARGS, (char *)"delete_IFTDecayFunction1D(IFTDecayFunction1D self)"}, @@ -117430,7 +117296,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FTDecayFunction1DCauchy_clone", _wrap_FTDecayFunction1DCauchy_clone, METH_VARARGS, (char *)"\n" "FTDecayFunction1DCauchy_clone(FTDecayFunction1DCauchy self) -> FTDecayFunction1DCauchy\n" "\n" - "FTDecayFunction1DCauchy * FTDecayFunction1DCauchy::clone() const\n" + "FTDecayFunction1DCauchy * FTDecayFunction1DCauchy::clone() const \n" "\n" ""}, { (char *)"FTDecayFunction1DCauchy_accept", _wrap_FTDecayFunction1DCauchy_accept, METH_VARARGS, (char *)"\n" @@ -117458,7 +117324,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FTDecayFunction1DGauss_clone", _wrap_FTDecayFunction1DGauss_clone, METH_VARARGS, (char *)"\n" "FTDecayFunction1DGauss_clone(FTDecayFunction1DGauss self) -> FTDecayFunction1DGauss\n" "\n" - "FTDecayFunction1DGauss * FTDecayFunction1DGauss::clone() const\n" + "FTDecayFunction1DGauss * FTDecayFunction1DGauss::clone() const \n" "\n" ""}, { (char *)"FTDecayFunction1DGauss_accept", _wrap_FTDecayFunction1DGauss_accept, METH_VARARGS, (char *)"\n" @@ -117486,7 +117352,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FTDecayFunction1DTriangle_clone", _wrap_FTDecayFunction1DTriangle_clone, METH_VARARGS, (char *)"\n" "FTDecayFunction1DTriangle_clone(FTDecayFunction1DTriangle self) -> FTDecayFunction1DTriangle\n" "\n" - "FTDecayFunction1DTriangle * FTDecayFunction1DTriangle::clone() const\n" + "FTDecayFunction1DTriangle * FTDecayFunction1DTriangle::clone() const \n" "\n" ""}, { (char *)"FTDecayFunction1DTriangle_accept", _wrap_FTDecayFunction1DTriangle_accept, METH_VARARGS, (char *)"\n" @@ -117525,7 +117391,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FTDecayFunction1DVoigt_clone", _wrap_FTDecayFunction1DVoigt_clone, METH_VARARGS, (char *)"\n" "FTDecayFunction1DVoigt_clone(FTDecayFunction1DVoigt self) -> FTDecayFunction1DVoigt\n" "\n" - "FTDecayFunction1DVoigt * FTDecayFunction1DVoigt::clone() const\n" + "FTDecayFunction1DVoigt * FTDecayFunction1DVoigt::clone() const \n" "\n" ""}, { (char *)"FTDecayFunction1DVoigt_accept", _wrap_FTDecayFunction1DVoigt_accept, METH_VARARGS, (char *)"\n" @@ -117545,7 +117411,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FTDecayFunction1DVoigt_eEta", _wrap_FTDecayFunction1DVoigt_eEta, METH_VARARGS, (char *)"\n" "FTDecayFunction1DVoigt_eEta(FTDecayFunction1DVoigt self) -> double\n" "\n" - "double FTDecayFunction1DVoigt::eEta() const\n" + "double FTDecayFunction1DVoigt::eEta() const \n" "\n" ""}, { (char *)"delete_FTDecayFunction1DVoigt", _wrap_delete_FTDecayFunction1DVoigt, METH_VARARGS, (char *)"delete_FTDecayFunction1DVoigt(FTDecayFunction1DVoigt self)"}, @@ -117624,7 +117490,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FTDecayFunction2DCauchy_clone", _wrap_FTDecayFunction2DCauchy_clone, METH_VARARGS, (char *)"\n" "FTDecayFunction2DCauchy_clone(FTDecayFunction2DCauchy self) -> FTDecayFunction2DCauchy\n" "\n" - "FTDecayFunction2DCauchy * FTDecayFunction2DCauchy::clone() const\n" + "FTDecayFunction2DCauchy * FTDecayFunction2DCauchy::clone() const \n" "\n" ""}, { (char *)"FTDecayFunction2DCauchy_accept", _wrap_FTDecayFunction2DCauchy_accept, METH_VARARGS, (char *)"\n" @@ -117655,7 +117521,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FTDecayFunction2DGauss_clone", _wrap_FTDecayFunction2DGauss_clone, METH_VARARGS, (char *)"\n" "FTDecayFunction2DGauss_clone(FTDecayFunction2DGauss self) -> FTDecayFunction2DGauss\n" "\n" - "FTDecayFunction2DGauss * FTDecayFunction2DGauss::clone() const\n" + "FTDecayFunction2DGauss * FTDecayFunction2DGauss::clone() const \n" "\n" ""}, { (char *)"FTDecayFunction2DGauss_accept", _wrap_FTDecayFunction2DGauss_accept, METH_VARARGS, (char *)"\n" @@ -117703,7 +117569,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FTDecayFunction2DVoigt_clone", _wrap_FTDecayFunction2DVoigt_clone, METH_VARARGS, (char *)"\n" "FTDecayFunction2DVoigt_clone(FTDecayFunction2DVoigt self) -> FTDecayFunction2DVoigt\n" "\n" - "FTDecayFunction2DVoigt * FTDecayFunction2DVoigt::clone() const\n" + "FTDecayFunction2DVoigt * FTDecayFunction2DVoigt::clone() const \n" "\n" ""}, { (char *)"FTDecayFunction2DVoigt_accept", _wrap_FTDecayFunction2DVoigt_accept, METH_VARARGS, (char *)"\n" @@ -117725,7 +117591,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FTDecayFunction2DVoigt_eta", _wrap_FTDecayFunction2DVoigt_eta, METH_VARARGS, (char *)"\n" "FTDecayFunction2DVoigt_eta(FTDecayFunction2DVoigt self) -> double\n" "\n" - "double FTDecayFunction2DVoigt::eta() const\n" + "double FTDecayFunction2DVoigt::eta() const \n" "\n" ""}, { (char *)"delete_FTDecayFunction2DVoigt", _wrap_delete_FTDecayFunction2DVoigt, METH_VARARGS, (char *)"delete_FTDecayFunction2DVoigt(FTDecayFunction2DVoigt self)"}, @@ -117753,7 +117619,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"IFTDistribution1D_omega", _wrap_IFTDistribution1D_omega, METH_VARARGS, (char *)"\n" "IFTDistribution1D_omega(IFTDistribution1D self) -> double\n" "\n" - "double IFTDistribution1D::omega() const\n" + "double IFTDistribution1D::omega() const \n" "\n" ""}, { (char *)"delete_IFTDistribution1D", _wrap_delete_IFTDistribution1D, METH_VARARGS, (char *)"delete_IFTDistribution1D(IFTDistribution1D self)"}, @@ -117950,7 +117816,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FTDistribution1DVoigt_eta", _wrap_FTDistribution1DVoigt_eta, METH_VARARGS, (char *)"\n" "FTDistribution1DVoigt_eta(FTDistribution1DVoigt self) -> double\n" "\n" - "double FTDistribution1DVoigt::eta() const\n" + "double FTDistribution1DVoigt::eta() const \n" "\n" ""}, { (char *)"delete_FTDistribution1DVoigt", _wrap_delete_FTDistribution1DVoigt, METH_VARARGS, (char *)"delete_FTDistribution1DVoigt(FTDistribution1DVoigt self)"}, @@ -117970,25 +117836,25 @@ static PyMethodDef SwigMethods[] = { { (char *)"IFTDistribution2D_gamma", _wrap_IFTDistribution2D_gamma, METH_VARARGS, (char *)"\n" "IFTDistribution2D_gamma(IFTDistribution2D self) -> double\n" "\n" - "double IFTDistribution2D::gamma() const\n" + "double IFTDistribution2D::gamma() const \n" "\n" ""}, { (char *)"IFTDistribution2D_delta", _wrap_IFTDistribution2D_delta, METH_VARARGS, (char *)"\n" "IFTDistribution2D_delta(IFTDistribution2D self) -> double\n" "\n" - "double IFTDistribution2D::delta() const\n" + "double IFTDistribution2D::delta() const \n" "\n" ""}, { (char *)"IFTDistribution2D_omegaX", _wrap_IFTDistribution2D_omegaX, METH_VARARGS, (char *)"\n" "IFTDistribution2D_omegaX(IFTDistribution2D self) -> double\n" "\n" - "double IFTDistribution2D::omegaX() const\n" + "double IFTDistribution2D::omegaX() const \n" "\n" ""}, { (char *)"IFTDistribution2D_omegaY", _wrap_IFTDistribution2D_omegaY, METH_VARARGS, (char *)"\n" "IFTDistribution2D_omegaY(IFTDistribution2D self) -> double\n" "\n" - "double IFTDistribution2D::omegaY() const\n" + "double IFTDistribution2D::omegaY() const \n" "\n" ""}, { (char *)"IFTDistribution2D_evaluate", _wrap_IFTDistribution2D_evaluate, METH_VARARGS, (char *)"\n" @@ -118174,7 +118040,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FTDistribution2DVoigt_eta", _wrap_FTDistribution2DVoigt_eta, METH_VARARGS, (char *)"\n" "FTDistribution2DVoigt_eta(FTDistribution2DVoigt self) -> double\n" "\n" - "double FTDistribution2DVoigt::eta() const\n" + "double FTDistribution2DVoigt::eta() const \n" "\n" ""}, { (char *)"delete_FTDistribution2DVoigt", _wrap_delete_FTDistribution2DVoigt, METH_VARARGS, (char *)"delete_FTDistribution2DVoigt(FTDistribution2DVoigt self)"}, @@ -118251,7 +118117,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FixedBinAxis_getBinCenter", _wrap_FixedBinAxis_getBinCenter, METH_VARARGS, (char *)"\n" "FixedBinAxis_getBinCenter(FixedBinAxis self, size_t index) -> double\n" "\n" - "double FixedBinAxis::getBinCenter(size_t index) const\n" + "double FixedBinAxis::getBinCenter(size_t index) const \n" "\n" ""}, { (char *)"FixedBinAxis_findClosestIndex", _wrap_FixedBinAxis_findClosestIndex, METH_VARARGS, (char *)"\n" @@ -118265,13 +118131,13 @@ static PyMethodDef SwigMethods[] = { { (char *)"FixedBinAxis_getBinCenters", _wrap_FixedBinAxis_getBinCenters, METH_VARARGS, (char *)"\n" "FixedBinAxis_getBinCenters(FixedBinAxis self) -> vdouble1d_t\n" "\n" - "std::vector< double > FixedBinAxis::getBinCenters() const\n" + "std::vector< double > FixedBinAxis::getBinCenters() const \n" "\n" ""}, { (char *)"FixedBinAxis_getBinBoundaries", _wrap_FixedBinAxis_getBinBoundaries, METH_VARARGS, (char *)"\n" "FixedBinAxis_getBinBoundaries(FixedBinAxis self) -> vdouble1d_t\n" "\n" - "std::vector< double > FixedBinAxis::getBinBoundaries() const\n" + "std::vector< double > FixedBinAxis::getBinBoundaries() const \n" "\n" ""}, { (char *)"FixedBinAxis_createClippedAxis", _wrap_FixedBinAxis_createClippedAxis, METH_VARARGS, (char *)"\n" @@ -118632,25 +118498,25 @@ static PyMethodDef SwigMethods[] = { { (char *)"PolyhedralEdge_E", _wrap_PolyhedralEdge_E, METH_VARARGS, (char *)"\n" "PolyhedralEdge_E(PolyhedralEdge self) -> kvector_t\n" "\n" - "kvector_t PolyhedralEdge::E() const\n" + "kvector_t PolyhedralEdge::E() const \n" "\n" ""}, { (char *)"PolyhedralEdge_R", _wrap_PolyhedralEdge_R, METH_VARARGS, (char *)"\n" "PolyhedralEdge_R(PolyhedralEdge self) -> kvector_t\n" "\n" - "kvector_t PolyhedralEdge::R() const\n" + "kvector_t PolyhedralEdge::R() const \n" "\n" ""}, { (char *)"PolyhedralEdge_qE", _wrap_PolyhedralEdge_qE, METH_VARARGS, (char *)"\n" "PolyhedralEdge_qE(PolyhedralEdge self, cvector_t q) -> complex_t\n" "\n" - "complex_t PolyhedralEdge::qE(cvector_t q) const\n" + "complex_t PolyhedralEdge::qE(cvector_t q) const \n" "\n" ""}, { (char *)"PolyhedralEdge_qR", _wrap_PolyhedralEdge_qR, METH_VARARGS, (char *)"\n" "PolyhedralEdge_qR(PolyhedralEdge self, cvector_t q) -> complex_t\n" "\n" - "complex_t PolyhedralEdge::qR(cvector_t q) const\n" + "complex_t PolyhedralEdge::qR(cvector_t q) const \n" "\n" ""}, { (char *)"PolyhedralEdge_contrib", _wrap_PolyhedralEdge_contrib, METH_VARARGS, (char *)"\n" @@ -118686,25 +118552,25 @@ static PyMethodDef SwigMethods[] = { { (char *)"PolyhedralFace_area", _wrap_PolyhedralFace_area, METH_VARARGS, (char *)"\n" "PolyhedralFace_area(PolyhedralFace self) -> double\n" "\n" - "double PolyhedralFace::area() const\n" + "double PolyhedralFace::area() const \n" "\n" ""}, { (char *)"PolyhedralFace_center", _wrap_PolyhedralFace_center, METH_VARARGS, (char *)"\n" "PolyhedralFace_center(PolyhedralFace self) -> kvector_t\n" "\n" - "kvector_t PolyhedralFace::center() const\n" + "kvector_t PolyhedralFace::center() const \n" "\n" ""}, { (char *)"PolyhedralFace_pyramidalVolume", _wrap_PolyhedralFace_pyramidalVolume, METH_VARARGS, (char *)"\n" "PolyhedralFace_pyramidalVolume(PolyhedralFace self) -> double\n" "\n" - "double PolyhedralFace::pyramidalVolume() const\n" + "double PolyhedralFace::pyramidalVolume() const \n" "\n" ""}, { (char *)"PolyhedralFace_radius3d", _wrap_PolyhedralFace_radius3d, METH_VARARGS, (char *)"\n" "PolyhedralFace_radius3d(PolyhedralFace self) -> double\n" "\n" - "double PolyhedralFace::radius3d() const\n" + "double PolyhedralFace::radius3d() const \n" "\n" ""}, { (char *)"PolyhedralFace_normalProjectionConj", _wrap_PolyhedralFace_normalProjectionConj, METH_VARARGS, (char *)"\n" @@ -118752,7 +118618,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorPolyhedron_evaluate_for_q", _wrap_FormFactorPolyhedron_evaluate_for_q, METH_VARARGS, (char *)"\n" "FormFactorPolyhedron_evaluate_for_q(FormFactorPolyhedron self, cvector_t q) -> complex_t\n" "\n" - "complex_t FormFactorPolyhedron::evaluate_for_q(cvector_t q) const override final\n" + "complex_t FormFactorPolyhedron::evaluate_for_q(cvector_t q) const overridefinal\n" "\n" "Returns the form factor F(q) of this polyhedron, respecting the offset z_origin. \n" "\n" @@ -118768,7 +118634,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorPolyhedron_volume", _wrap_FormFactorPolyhedron_volume, METH_VARARGS, (char *)"\n" "FormFactorPolyhedron_volume(FormFactorPolyhedron self) -> double\n" "\n" - "double FormFactorPolyhedron::volume() const override final\n" + "double FormFactorPolyhedron::volume() const overridefinal\n" "\n" "Returns the total volume of the particle of this form factor's shape. \n" "\n" @@ -118776,7 +118642,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorPolyhedron_radialExtension", _wrap_FormFactorPolyhedron_radialExtension, METH_VARARGS, (char *)"\n" "FormFactorPolyhedron_radialExtension(FormFactorPolyhedron self) -> double\n" "\n" - "double FormFactorPolyhedron::radialExtension() const override final\n" + "double FormFactorPolyhedron::radialExtension() const overridefinal\n" "\n" "Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations \n" "\n" @@ -118794,7 +118660,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorPolygonalPrism_evaluate_for_q", _wrap_FormFactorPolygonalPrism_evaluate_for_q, METH_VARARGS, (char *)"\n" "FormFactorPolygonalPrism_evaluate_for_q(FormFactorPolygonalPrism self, cvector_t q) -> complex_t\n" "\n" - "complex_t FormFactorPolygonalPrism::evaluate_for_q(cvector_t q) const override final\n" + "complex_t FormFactorPolygonalPrism::evaluate_for_q(cvector_t q) const overridefinal\n" "\n" "Returns the form factor F(q) of this polyhedron, respecting the offset height/2. \n" "\n" @@ -118802,7 +118668,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorPolygonalPrism_volume", _wrap_FormFactorPolygonalPrism_volume, METH_VARARGS, (char *)"\n" "FormFactorPolygonalPrism_volume(FormFactorPolygonalPrism self) -> double\n" "\n" - "double FormFactorPolygonalPrism::volume() const override final\n" + "double FormFactorPolygonalPrism::volume() const overridefinal\n" "\n" "Returns the volume of this prism. \n" "\n" @@ -118810,13 +118676,13 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorPolygonalPrism_getHeight", _wrap_FormFactorPolygonalPrism_getHeight, METH_VARARGS, (char *)"\n" "FormFactorPolygonalPrism_getHeight(FormFactorPolygonalPrism self) -> double\n" "\n" - "double FormFactorPolygonalPrism::getHeight() const\n" + "double FormFactorPolygonalPrism::getHeight() const \n" "\n" ""}, { (char *)"FormFactorPolygonalPrism_radialExtension", _wrap_FormFactorPolygonalPrism_radialExtension, METH_VARARGS, (char *)"\n" "FormFactorPolygonalPrism_radialExtension(FormFactorPolygonalPrism self) -> double\n" "\n" - "double FormFactorPolygonalPrism::radialExtension() const override final\n" + "double FormFactorPolygonalPrism::radialExtension() const overridefinal\n" "\n" "Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations \n" "\n" @@ -118826,7 +118692,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorPolygonalSurface_evaluate_for_q", _wrap_FormFactorPolygonalSurface_evaluate_for_q, METH_VARARGS, (char *)"\n" "FormFactorPolygonalSurface_evaluate_for_q(FormFactorPolygonalSurface self, cvector_t q) -> complex_t\n" "\n" - "complex_t FormFactorPolygonalSurface::evaluate_for_q(cvector_t q) const override final\n" + "complex_t FormFactorPolygonalSurface::evaluate_for_q(cvector_t q) const overridefinal\n" "\n" "Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. \n" "\n" @@ -118842,7 +118708,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorPolygonalSurface_radialExtension", _wrap_FormFactorPolygonalSurface_radialExtension, METH_VARARGS, (char *)"\n" "FormFactorPolygonalSurface_radialExtension(FormFactorPolygonalSurface self) -> double\n" "\n" - "double FormFactorPolygonalSurface::radialExtension() const override final\n" + "double FormFactorPolygonalSurface::radialExtension() const overridefinal\n" "\n" "Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations \n" "\n" @@ -118875,7 +118741,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorAnisoPyramid_clone", _wrap_FormFactorAnisoPyramid_clone, METH_VARARGS, (char *)"\n" "FormFactorAnisoPyramid_clone(FormFactorAnisoPyramid self) -> FormFactorAnisoPyramid\n" "\n" - "FormFactorAnisoPyramid* FormFactorAnisoPyramid::clone() const override final\n" + "FormFactorAnisoPyramid* FormFactorAnisoPyramid::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -118883,7 +118749,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorAnisoPyramid_accept", _wrap_FormFactorAnisoPyramid_accept, METH_VARARGS, (char *)"\n" "FormFactorAnisoPyramid_accept(FormFactorAnisoPyramid self, INodeVisitor visitor)\n" "\n" - "void FormFactorAnisoPyramid::accept(INodeVisitor *visitor) const override final\n" + "void FormFactorAnisoPyramid::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -118891,25 +118757,25 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorAnisoPyramid_getLength", _wrap_FormFactorAnisoPyramid_getLength, METH_VARARGS, (char *)"\n" "FormFactorAnisoPyramid_getLength(FormFactorAnisoPyramid self) -> double\n" "\n" - "double FormFactorAnisoPyramid::getLength() const\n" + "double FormFactorAnisoPyramid::getLength() const \n" "\n" ""}, { (char *)"FormFactorAnisoPyramid_getWidth", _wrap_FormFactorAnisoPyramid_getWidth, METH_VARARGS, (char *)"\n" "FormFactorAnisoPyramid_getWidth(FormFactorAnisoPyramid self) -> double\n" "\n" - "double FormFactorAnisoPyramid::getWidth() const\n" + "double FormFactorAnisoPyramid::getWidth() const \n" "\n" ""}, { (char *)"FormFactorAnisoPyramid_getHeight", _wrap_FormFactorAnisoPyramid_getHeight, METH_VARARGS, (char *)"\n" "FormFactorAnisoPyramid_getHeight(FormFactorAnisoPyramid self) -> double\n" "\n" - "double FormFactorAnisoPyramid::getHeight() const\n" + "double FormFactorAnisoPyramid::getHeight() const \n" "\n" ""}, { (char *)"FormFactorAnisoPyramid_getAlpha", _wrap_FormFactorAnisoPyramid_getAlpha, METH_VARARGS, (char *)"\n" "FormFactorAnisoPyramid_getAlpha(FormFactorAnisoPyramid self) -> double\n" "\n" - "double FormFactorAnisoPyramid::getAlpha() const\n" + "double FormFactorAnisoPyramid::getAlpha() const \n" "\n" ""}, { (char *)"delete_FormFactorAnisoPyramid", _wrap_delete_FormFactorAnisoPyramid, METH_VARARGS, (char *)"delete_FormFactorAnisoPyramid(FormFactorAnisoPyramid self)"}, @@ -118937,7 +118803,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorBox_clone", _wrap_FormFactorBox_clone, METH_VARARGS, (char *)"\n" "FormFactorBox_clone(FormFactorBox self) -> FormFactorBox\n" "\n" - "FormFactorBox* FormFactorBox::clone() const override final\n" + "FormFactorBox* FormFactorBox::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -118945,7 +118811,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorBox_accept", _wrap_FormFactorBox_accept, METH_VARARGS, (char *)"\n" "FormFactorBox_accept(FormFactorBox self, INodeVisitor visitor)\n" "\n" - "void FormFactorBox::accept(INodeVisitor *visitor) const override final\n" + "void FormFactorBox::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -118953,25 +118819,25 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorBox_getLength", _wrap_FormFactorBox_getLength, METH_VARARGS, (char *)"\n" "FormFactorBox_getLength(FormFactorBox self) -> double\n" "\n" - "double FormFactorBox::getLength() const\n" + "double FormFactorBox::getLength() const \n" "\n" ""}, { (char *)"FormFactorBox_getHeight", _wrap_FormFactorBox_getHeight, METH_VARARGS, (char *)"\n" "FormFactorBox_getHeight(FormFactorBox self) -> double\n" "\n" - "double FormFactorBox::getHeight() const\n" + "double FormFactorBox::getHeight() const \n" "\n" ""}, { (char *)"FormFactorBox_getWidth", _wrap_FormFactorBox_getWidth, METH_VARARGS, (char *)"\n" "FormFactorBox_getWidth(FormFactorBox self) -> double\n" "\n" - "double FormFactorBox::getWidth() const\n" + "double FormFactorBox::getWidth() const \n" "\n" ""}, { (char *)"FormFactorBox_radialExtension", _wrap_FormFactorBox_radialExtension, METH_VARARGS, (char *)"\n" "FormFactorBox_radialExtension(FormFactorBox self) -> double\n" "\n" - "double FormFactorBox::radialExtension() const override final\n" + "double FormFactorBox::radialExtension() const overridefinal\n" "\n" "Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations \n" "\n" @@ -118979,7 +118845,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorBox_evaluate_for_q", _wrap_FormFactorBox_evaluate_for_q, METH_VARARGS, (char *)"\n" "FormFactorBox_evaluate_for_q(FormFactorBox self, cvector_t q) -> complex_t\n" "\n" - "complex_t FormFactorBox::evaluate_for_q(cvector_t q) const override final\n" + "complex_t FormFactorBox::evaluate_for_q(cvector_t q) const overridefinal\n" "\n" "Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. \n" "\n" @@ -119009,7 +118875,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorCone_clone", _wrap_FormFactorCone_clone, METH_VARARGS, (char *)"\n" "FormFactorCone_clone(FormFactorCone self) -> FormFactorCone\n" "\n" - "FormFactorCone* FormFactorCone::clone() const override final\n" + "FormFactorCone* FormFactorCone::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -119017,7 +118883,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorCone_accept", _wrap_FormFactorCone_accept, METH_VARARGS, (char *)"\n" "FormFactorCone_accept(FormFactorCone self, INodeVisitor visitor)\n" "\n" - "void FormFactorCone::accept(INodeVisitor *visitor) const override final\n" + "void FormFactorCone::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -119025,25 +118891,25 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorCone_getHeight", _wrap_FormFactorCone_getHeight, METH_VARARGS, (char *)"\n" "FormFactorCone_getHeight(FormFactorCone self) -> double\n" "\n" - "double FormFactorCone::getHeight() const\n" + "double FormFactorCone::getHeight() const \n" "\n" ""}, { (char *)"FormFactorCone_getAlpha", _wrap_FormFactorCone_getAlpha, METH_VARARGS, (char *)"\n" "FormFactorCone_getAlpha(FormFactorCone self) -> double\n" "\n" - "double FormFactorCone::getAlpha() const\n" + "double FormFactorCone::getAlpha() const \n" "\n" ""}, { (char *)"FormFactorCone_getRadius", _wrap_FormFactorCone_getRadius, METH_VARARGS, (char *)"\n" "FormFactorCone_getRadius(FormFactorCone self) -> double\n" "\n" - "double FormFactorCone::getRadius() const\n" + "double FormFactorCone::getRadius() const \n" "\n" ""}, { (char *)"FormFactorCone_radialExtension", _wrap_FormFactorCone_radialExtension, METH_VARARGS, (char *)"\n" "FormFactorCone_radialExtension(FormFactorCone self) -> double\n" "\n" - "double FormFactorCone::radialExtension() const override final\n" + "double FormFactorCone::radialExtension() const overridefinal\n" "\n" "Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations \n" "\n" @@ -119051,7 +118917,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorCone_evaluate_for_q", _wrap_FormFactorCone_evaluate_for_q, METH_VARARGS, (char *)"\n" "FormFactorCone_evaluate_for_q(FormFactorCone self, cvector_t q) -> complex_t\n" "\n" - "complex_t FormFactorCone::evaluate_for_q(cvector_t q) const override final\n" + "complex_t FormFactorCone::evaluate_for_q(cvector_t q) const overridefinal\n" "\n" "Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. \n" "\n" @@ -119081,7 +118947,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorCone6_clone", _wrap_FormFactorCone6_clone, METH_VARARGS, (char *)"\n" "FormFactorCone6_clone(FormFactorCone6 self) -> FormFactorCone6\n" "\n" - "FormFactorCone6* FormFactorCone6::clone() const override final\n" + "FormFactorCone6* FormFactorCone6::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -119089,7 +118955,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorCone6_accept", _wrap_FormFactorCone6_accept, METH_VARARGS, (char *)"\n" "FormFactorCone6_accept(FormFactorCone6 self, INodeVisitor visitor)\n" "\n" - "void FormFactorCone6::accept(INodeVisitor *visitor) const override final\n" + "void FormFactorCone6::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -119097,19 +118963,19 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorCone6_getBaseEdge", _wrap_FormFactorCone6_getBaseEdge, METH_VARARGS, (char *)"\n" "FormFactorCone6_getBaseEdge(FormFactorCone6 self) -> double\n" "\n" - "double FormFactorCone6::getBaseEdge() const\n" + "double FormFactorCone6::getBaseEdge() const \n" "\n" ""}, { (char *)"FormFactorCone6_getHeight", _wrap_FormFactorCone6_getHeight, METH_VARARGS, (char *)"\n" "FormFactorCone6_getHeight(FormFactorCone6 self) -> double\n" "\n" - "double FormFactorCone6::getHeight() const\n" + "double FormFactorCone6::getHeight() const \n" "\n" ""}, { (char *)"FormFactorCone6_getAlpha", _wrap_FormFactorCone6_getAlpha, METH_VARARGS, (char *)"\n" "FormFactorCone6_getAlpha(FormFactorCone6 self) -> double\n" "\n" - "double FormFactorCone6::getAlpha() const\n" + "double FormFactorCone6::getAlpha() const \n" "\n" ""}, { (char *)"delete_FormFactorCone6", _wrap_delete_FormFactorCone6, METH_VARARGS, (char *)"delete_FormFactorCone6(FormFactorCone6 self)"}, @@ -119123,13 +118989,13 @@ static PyMethodDef SwigMethods[] = { { (char *)"delete_FormFactorCrystal", _wrap_delete_FormFactorCrystal, METH_VARARGS, (char *)"\n" "delete_FormFactorCrystal(FormFactorCrystal self)\n" "\n" - "FormFactorCrystal::~FormFactorCrystal() override final\n" + "FormFactorCrystal::~FormFactorCrystal() overridefinal\n" "\n" ""}, { (char *)"FormFactorCrystal_clone", _wrap_FormFactorCrystal_clone, METH_VARARGS, (char *)"\n" "FormFactorCrystal_clone(FormFactorCrystal self) -> FormFactorCrystal\n" "\n" - "FormFactorCrystal* FormFactorCrystal::clone() const override final\n" + "FormFactorCrystal* FormFactorCrystal::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -119137,7 +119003,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorCrystal_accept", _wrap_FormFactorCrystal_accept, METH_VARARGS, (char *)"\n" "FormFactorCrystal_accept(FormFactorCrystal self, INodeVisitor visitor)\n" "\n" - "void FormFactorCrystal::accept(INodeVisitor *visitor) const override final\n" + "void FormFactorCrystal::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -119153,7 +119019,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorCrystal_volume", _wrap_FormFactorCrystal_volume, METH_VARARGS, (char *)"\n" "FormFactorCrystal_volume(FormFactorCrystal self) -> double\n" "\n" - "double FormFactorCrystal::volume() const override final\n" + "double FormFactorCrystal::volume() const overridefinal\n" "\n" "Returns the total volume of the particle of this form factor's shape. \n" "\n" @@ -119161,7 +119027,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorCrystal_radialExtension", _wrap_FormFactorCrystal_radialExtension, METH_VARARGS, (char *)"\n" "FormFactorCrystal_radialExtension(FormFactorCrystal self) -> double\n" "\n" - "double FormFactorCrystal::radialExtension() const override final\n" + "double FormFactorCrystal::radialExtension() const overridefinal\n" "\n" "Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations \n" "\n" @@ -119177,7 +119043,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorCrystal_topZ", _wrap_FormFactorCrystal_topZ, METH_VARARGS, (char *)"\n" "FormFactorCrystal_topZ(FormFactorCrystal self, IRotation rotation) -> double\n" "\n" - "double FormFactorCrystal::topZ(const IRotation &rotation) const override final\n" + "double FormFactorCrystal::topZ(const IRotation &rotation) const overridefinal\n" "\n" "Returns the z-coordinate of the lowest point in this shape after a given rotation. \n" "\n" @@ -119185,7 +119051,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorCrystal_evaluate", _wrap_FormFactorCrystal_evaluate, METH_VARARGS, (char *)"\n" "FormFactorCrystal_evaluate(FormFactorCrystal self, WavevectorInfo wavevectors) -> complex_t\n" "\n" - "complex_t FormFactorCrystal::evaluate(const WavevectorInfo &wavevectors) const override final\n" + "complex_t FormFactorCrystal::evaluate(const WavevectorInfo &wavevectors) const overridefinal\n" "\n" "Returns scattering amplitude for complex wavevectors ki, kf. \n" "\n" @@ -119217,7 +119083,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorCuboctahedron_clone", _wrap_FormFactorCuboctahedron_clone, METH_VARARGS, (char *)"\n" "FormFactorCuboctahedron_clone(FormFactorCuboctahedron self) -> FormFactorCuboctahedron\n" "\n" - "FormFactorCuboctahedron* FormFactorCuboctahedron::clone() const override final\n" + "FormFactorCuboctahedron* FormFactorCuboctahedron::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -119225,7 +119091,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorCuboctahedron_accept", _wrap_FormFactorCuboctahedron_accept, METH_VARARGS, (char *)"\n" "FormFactorCuboctahedron_accept(FormFactorCuboctahedron self, INodeVisitor visitor)\n" "\n" - "void FormFactorCuboctahedron::accept(INodeVisitor *visitor) const override final\n" + "void FormFactorCuboctahedron::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -119233,25 +119099,25 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorCuboctahedron_getLength", _wrap_FormFactorCuboctahedron_getLength, METH_VARARGS, (char *)"\n" "FormFactorCuboctahedron_getLength(FormFactorCuboctahedron self) -> double\n" "\n" - "double FormFactorCuboctahedron::getLength() const\n" + "double FormFactorCuboctahedron::getLength() const \n" "\n" ""}, { (char *)"FormFactorCuboctahedron_getHeight", _wrap_FormFactorCuboctahedron_getHeight, METH_VARARGS, (char *)"\n" "FormFactorCuboctahedron_getHeight(FormFactorCuboctahedron self) -> double\n" "\n" - "double FormFactorCuboctahedron::getHeight() const\n" + "double FormFactorCuboctahedron::getHeight() const \n" "\n" ""}, { (char *)"FormFactorCuboctahedron_getHeightRatio", _wrap_FormFactorCuboctahedron_getHeightRatio, METH_VARARGS, (char *)"\n" "FormFactorCuboctahedron_getHeightRatio(FormFactorCuboctahedron self) -> double\n" "\n" - "double FormFactorCuboctahedron::getHeightRatio() const\n" + "double FormFactorCuboctahedron::getHeightRatio() const \n" "\n" ""}, { (char *)"FormFactorCuboctahedron_getAlpha", _wrap_FormFactorCuboctahedron_getAlpha, METH_VARARGS, (char *)"\n" "FormFactorCuboctahedron_getAlpha(FormFactorCuboctahedron self) -> double\n" "\n" - "double FormFactorCuboctahedron::getAlpha() const\n" + "double FormFactorCuboctahedron::getAlpha() const \n" "\n" ""}, { (char *)"delete_FormFactorCuboctahedron", _wrap_delete_FormFactorCuboctahedron, METH_VARARGS, (char *)"delete_FormFactorCuboctahedron(FormFactorCuboctahedron self)"}, @@ -119276,7 +119142,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorCylinder_clone", _wrap_FormFactorCylinder_clone, METH_VARARGS, (char *)"\n" "FormFactorCylinder_clone(FormFactorCylinder self) -> FormFactorCylinder\n" "\n" - "FormFactorCylinder* FormFactorCylinder::clone() const override final\n" + "FormFactorCylinder* FormFactorCylinder::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -119284,7 +119150,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorCylinder_accept", _wrap_FormFactorCylinder_accept, METH_VARARGS, (char *)"\n" "FormFactorCylinder_accept(FormFactorCylinder self, INodeVisitor visitor)\n" "\n" - "void FormFactorCylinder::accept(INodeVisitor *visitor) const override final\n" + "void FormFactorCylinder::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -119292,19 +119158,19 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorCylinder_getHeight", _wrap_FormFactorCylinder_getHeight, METH_VARARGS, (char *)"\n" "FormFactorCylinder_getHeight(FormFactorCylinder self) -> double\n" "\n" - "double FormFactorCylinder::getHeight() const\n" + "double FormFactorCylinder::getHeight() const \n" "\n" ""}, { (char *)"FormFactorCylinder_getRadius", _wrap_FormFactorCylinder_getRadius, METH_VARARGS, (char *)"\n" "FormFactorCylinder_getRadius(FormFactorCylinder self) -> double\n" "\n" - "double FormFactorCylinder::getRadius() const\n" + "double FormFactorCylinder::getRadius() const \n" "\n" ""}, { (char *)"FormFactorCylinder_radialExtension", _wrap_FormFactorCylinder_radialExtension, METH_VARARGS, (char *)"\n" "FormFactorCylinder_radialExtension(FormFactorCylinder self) -> double\n" "\n" - "double FormFactorCylinder::radialExtension() const override final\n" + "double FormFactorCylinder::radialExtension() const overridefinal\n" "\n" "Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations \n" "\n" @@ -119312,7 +119178,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorCylinder_evaluate_for_q", _wrap_FormFactorCylinder_evaluate_for_q, METH_VARARGS, (char *)"\n" "FormFactorCylinder_evaluate_for_q(FormFactorCylinder self, cvector_t q) -> complex_t\n" "\n" - "complex_t FormFactorCylinder::evaluate_for_q(cvector_t q) const override final\n" + "complex_t FormFactorCylinder::evaluate_for_q(cvector_t q) const overridefinal\n" "\n" "Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. \n" "\n" @@ -119331,7 +119197,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorDecoratorDebyeWaller_clone", _wrap_FormFactorDecoratorDebyeWaller_clone, METH_VARARGS, (char *)"\n" "FormFactorDecoratorDebyeWaller_clone(FormFactorDecoratorDebyeWaller self) -> FormFactorDecoratorDebyeWaller\n" "\n" - "FormFactorDecoratorDebyeWaller* FormFactorDecoratorDebyeWaller::clone() const override final\n" + "FormFactorDecoratorDebyeWaller* FormFactorDecoratorDebyeWaller::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -119339,7 +119205,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorDecoratorDebyeWaller_accept", _wrap_FormFactorDecoratorDebyeWaller_accept, METH_VARARGS, (char *)"\n" "FormFactorDecoratorDebyeWaller_accept(FormFactorDecoratorDebyeWaller self, INodeVisitor visitor)\n" "\n" - "void FormFactorDecoratorDebyeWaller::accept(INodeVisitor *visitor) const override final\n" + "void FormFactorDecoratorDebyeWaller::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -119347,7 +119213,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorDecoratorDebyeWaller_evaluate", _wrap_FormFactorDecoratorDebyeWaller_evaluate, METH_VARARGS, (char *)"\n" "FormFactorDecoratorDebyeWaller_evaluate(FormFactorDecoratorDebyeWaller self, WavevectorInfo wavevectors) -> complex_t\n" "\n" - "complex_t FormFactorDecoratorDebyeWaller::evaluate(const WavevectorInfo &wavevectors) const override final\n" + "complex_t FormFactorDecoratorDebyeWaller::evaluate(const WavevectorInfo &wavevectors) const overridefinal\n" "\n" "Returns scattering amplitude for complex wavevectors ki, kf. \n" "\n" @@ -119379,7 +119245,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorDodecahedron_clone", _wrap_FormFactorDodecahedron_clone, METH_VARARGS, (char *)"\n" "FormFactorDodecahedron_clone(FormFactorDodecahedron self) -> FormFactorDodecahedron\n" "\n" - "FormFactorDodecahedron* FormFactorDodecahedron::clone() const override final\n" + "FormFactorDodecahedron* FormFactorDodecahedron::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -119387,7 +119253,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorDodecahedron_accept", _wrap_FormFactorDodecahedron_accept, METH_VARARGS, (char *)"\n" "FormFactorDodecahedron_accept(FormFactorDodecahedron self, INodeVisitor visitor)\n" "\n" - "void FormFactorDodecahedron::accept(INodeVisitor *visitor) const override final\n" + "void FormFactorDodecahedron::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -119395,7 +119261,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorDodecahedron_getEdge", _wrap_FormFactorDodecahedron_getEdge, METH_VARARGS, (char *)"\n" "FormFactorDodecahedron_getEdge(FormFactorDodecahedron self) -> double\n" "\n" - "double FormFactorDodecahedron::getEdge() const\n" + "double FormFactorDodecahedron::getEdge() const \n" "\n" ""}, { (char *)"delete_FormFactorDodecahedron", _wrap_delete_FormFactorDodecahedron, METH_VARARGS, (char *)"delete_FormFactorDodecahedron(FormFactorDodecahedron self)"}, @@ -119409,7 +119275,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorDot_clone", _wrap_FormFactorDot_clone, METH_VARARGS, (char *)"\n" "FormFactorDot_clone(FormFactorDot self) -> FormFactorDot\n" "\n" - "FormFactorDot* FormFactorDot::clone() const override final\n" + "FormFactorDot* FormFactorDot::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -119417,7 +119283,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorDot_accept", _wrap_FormFactorDot_accept, METH_VARARGS, (char *)"\n" "FormFactorDot_accept(FormFactorDot self, INodeVisitor visitor)\n" "\n" - "void FormFactorDot::accept(INodeVisitor *visitor) const override final\n" + "void FormFactorDot::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -119425,7 +119291,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorDot_radialExtension", _wrap_FormFactorDot_radialExtension, METH_VARARGS, (char *)"\n" "FormFactorDot_radialExtension(FormFactorDot self) -> double\n" "\n" - "double FormFactorDot::radialExtension() const override final\n" + "double FormFactorDot::radialExtension() const overridefinal\n" "\n" "Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations \n" "\n" @@ -119433,7 +119299,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorDot_evaluate_for_q", _wrap_FormFactorDot_evaluate_for_q, METH_VARARGS, (char *)"\n" "FormFactorDot_evaluate_for_q(FormFactorDot self, cvector_t arg3) -> complex_t\n" "\n" - "complex_t FormFactorDot::evaluate_for_q(cvector_t) const override final\n" + "complex_t FormFactorDot::evaluate_for_q(cvector_t) const overridefinal\n" "\n" "Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. \n" "\n" @@ -119463,7 +119329,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorEllipsoidalCylinder_clone", _wrap_FormFactorEllipsoidalCylinder_clone, METH_VARARGS, (char *)"\n" "FormFactorEllipsoidalCylinder_clone(FormFactorEllipsoidalCylinder self) -> FormFactorEllipsoidalCylinder\n" "\n" - "FormFactorEllipsoidalCylinder* FormFactorEllipsoidalCylinder::clone() const override final\n" + "FormFactorEllipsoidalCylinder* FormFactorEllipsoidalCylinder::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -119471,7 +119337,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorEllipsoidalCylinder_accept", _wrap_FormFactorEllipsoidalCylinder_accept, METH_VARARGS, (char *)"\n" "FormFactorEllipsoidalCylinder_accept(FormFactorEllipsoidalCylinder self, INodeVisitor visitor)\n" "\n" - "void FormFactorEllipsoidalCylinder::accept(INodeVisitor *visitor) const override final\n" + "void FormFactorEllipsoidalCylinder::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -119479,25 +119345,25 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorEllipsoidalCylinder_getRadiusX", _wrap_FormFactorEllipsoidalCylinder_getRadiusX, METH_VARARGS, (char *)"\n" "FormFactorEllipsoidalCylinder_getRadiusX(FormFactorEllipsoidalCylinder self) -> double\n" "\n" - "double FormFactorEllipsoidalCylinder::getRadiusX() const\n" + "double FormFactorEllipsoidalCylinder::getRadiusX() const \n" "\n" ""}, { (char *)"FormFactorEllipsoidalCylinder_getRadiusY", _wrap_FormFactorEllipsoidalCylinder_getRadiusY, METH_VARARGS, (char *)"\n" "FormFactorEllipsoidalCylinder_getRadiusY(FormFactorEllipsoidalCylinder self) -> double\n" "\n" - "double FormFactorEllipsoidalCylinder::getRadiusY() const\n" + "double FormFactorEllipsoidalCylinder::getRadiusY() const \n" "\n" ""}, { (char *)"FormFactorEllipsoidalCylinder_getHeight", _wrap_FormFactorEllipsoidalCylinder_getHeight, METH_VARARGS, (char *)"\n" "FormFactorEllipsoidalCylinder_getHeight(FormFactorEllipsoidalCylinder self) -> double\n" "\n" - "double FormFactorEllipsoidalCylinder::getHeight() const\n" + "double FormFactorEllipsoidalCylinder::getHeight() const \n" "\n" ""}, { (char *)"FormFactorEllipsoidalCylinder_radialExtension", _wrap_FormFactorEllipsoidalCylinder_radialExtension, METH_VARARGS, (char *)"\n" "FormFactorEllipsoidalCylinder_radialExtension(FormFactorEllipsoidalCylinder self) -> double\n" "\n" - "double FormFactorEllipsoidalCylinder::radialExtension() const override final\n" + "double FormFactorEllipsoidalCylinder::radialExtension() const overridefinal\n" "\n" "Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations \n" "\n" @@ -119505,7 +119371,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorEllipsoidalCylinder_evaluate_for_q", _wrap_FormFactorEllipsoidalCylinder_evaluate_for_q, METH_VARARGS, (char *)"\n" "FormFactorEllipsoidalCylinder_evaluate_for_q(FormFactorEllipsoidalCylinder self, cvector_t q) -> complex_t\n" "\n" - "complex_t FormFactorEllipsoidalCylinder::evaluate_for_q(cvector_t q) const override final\n" + "complex_t FormFactorEllipsoidalCylinder::evaluate_for_q(cvector_t q) const overridefinal\n" "\n" "Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. \n" "\n" @@ -119529,7 +119395,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorFullSphere_clone", _wrap_FormFactorFullSphere_clone, METH_VARARGS, (char *)"\n" "FormFactorFullSphere_clone(FormFactorFullSphere self) -> FormFactorFullSphere\n" "\n" - "FormFactorFullSphere* FormFactorFullSphere::clone() const override final\n" + "FormFactorFullSphere* FormFactorFullSphere::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -119537,7 +119403,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorFullSphere_accept", _wrap_FormFactorFullSphere_accept, METH_VARARGS, (char *)"\n" "FormFactorFullSphere_accept(FormFactorFullSphere self, INodeVisitor visitor)\n" "\n" - "void FormFactorFullSphere::accept(INodeVisitor *visitor) const override final\n" + "void FormFactorFullSphere::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -119545,13 +119411,13 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorFullSphere_getRadius", _wrap_FormFactorFullSphere_getRadius, METH_VARARGS, (char *)"\n" "FormFactorFullSphere_getRadius(FormFactorFullSphere self) -> double\n" "\n" - "double FormFactorFullSphere::getRadius() const\n" + "double FormFactorFullSphere::getRadius() const \n" "\n" ""}, { (char *)"FormFactorFullSphere_radialExtension", _wrap_FormFactorFullSphere_radialExtension, METH_VARARGS, (char *)"\n" "FormFactorFullSphere_radialExtension(FormFactorFullSphere self) -> double\n" "\n" - "double FormFactorFullSphere::radialExtension() const override final\n" + "double FormFactorFullSphere::radialExtension() const overridefinal\n" "\n" "Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations \n" "\n" @@ -119559,7 +119425,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorFullSphere_bottomZ", _wrap_FormFactorFullSphere_bottomZ, METH_VARARGS, (char *)"\n" "FormFactorFullSphere_bottomZ(FormFactorFullSphere self, IRotation rotation) -> double\n" "\n" - "double FormFactorFullSphere::bottomZ(const IRotation &rotation) const override final\n" + "double FormFactorFullSphere::bottomZ(const IRotation &rotation) const overridefinal\n" "\n" "Returns the z-coordinate of the lowest point in this shape after a given rotation. \n" "\n" @@ -119567,7 +119433,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorFullSphere_topZ", _wrap_FormFactorFullSphere_topZ, METH_VARARGS, (char *)"\n" "FormFactorFullSphere_topZ(FormFactorFullSphere self, IRotation rotation) -> double\n" "\n" - "double FormFactorFullSphere::topZ(const IRotation &rotation) const override final\n" + "double FormFactorFullSphere::topZ(const IRotation &rotation) const overridefinal\n" "\n" "Returns the z-coordinate of the lowest point in this shape after a given rotation. \n" "\n" @@ -119575,7 +119441,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorFullSphere_evaluate_for_q", _wrap_FormFactorFullSphere_evaluate_for_q, METH_VARARGS, (char *)"\n" "FormFactorFullSphere_evaluate_for_q(FormFactorFullSphere self, cvector_t q) -> complex_t\n" "\n" - "complex_t FormFactorFullSphere::evaluate_for_q(cvector_t q) const override final\n" + "complex_t FormFactorFullSphere::evaluate_for_q(cvector_t q) const overridefinal\n" "\n" "Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. \n" "\n" @@ -119602,7 +119468,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorFullSpheroid_clone", _wrap_FormFactorFullSpheroid_clone, METH_VARARGS, (char *)"\n" "FormFactorFullSpheroid_clone(FormFactorFullSpheroid self) -> FormFactorFullSpheroid\n" "\n" - "FormFactorFullSpheroid* FormFactorFullSpheroid::clone() const override final\n" + "FormFactorFullSpheroid* FormFactorFullSpheroid::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -119610,7 +119476,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorFullSpheroid_accept", _wrap_FormFactorFullSpheroid_accept, METH_VARARGS, (char *)"\n" "FormFactorFullSpheroid_accept(FormFactorFullSpheroid self, INodeVisitor visitor)\n" "\n" - "void FormFactorFullSpheroid::accept(INodeVisitor *visitor) const override final\n" + "void FormFactorFullSpheroid::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -119618,19 +119484,19 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorFullSpheroid_getHeight", _wrap_FormFactorFullSpheroid_getHeight, METH_VARARGS, (char *)"\n" "FormFactorFullSpheroid_getHeight(FormFactorFullSpheroid self) -> double\n" "\n" - "double FormFactorFullSpheroid::getHeight() const\n" + "double FormFactorFullSpheroid::getHeight() const \n" "\n" ""}, { (char *)"FormFactorFullSpheroid_getRadius", _wrap_FormFactorFullSpheroid_getRadius, METH_VARARGS, (char *)"\n" "FormFactorFullSpheroid_getRadius(FormFactorFullSpheroid self) -> double\n" "\n" - "double FormFactorFullSpheroid::getRadius() const\n" + "double FormFactorFullSpheroid::getRadius() const \n" "\n" ""}, { (char *)"FormFactorFullSpheroid_radialExtension", _wrap_FormFactorFullSpheroid_radialExtension, METH_VARARGS, (char *)"\n" "FormFactorFullSpheroid_radialExtension(FormFactorFullSpheroid self) -> double\n" "\n" - "double FormFactorFullSpheroid::radialExtension() const override final\n" + "double FormFactorFullSpheroid::radialExtension() const overridefinal\n" "\n" "Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations \n" "\n" @@ -119638,7 +119504,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorFullSpheroid_evaluate_for_q", _wrap_FormFactorFullSpheroid_evaluate_for_q, METH_VARARGS, (char *)"\n" "FormFactorFullSpheroid_evaluate_for_q(FormFactorFullSpheroid self, cvector_t q) -> complex_t\n" "\n" - "complex_t FormFactorFullSpheroid::evaluate_for_q(cvector_t q) const override final\n" + "complex_t FormFactorFullSpheroid::evaluate_for_q(cvector_t q) const overridefinal\n" "\n" "Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. \n" "\n" @@ -119655,7 +119521,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorGauss_clone", _wrap_FormFactorGauss_clone, METH_VARARGS, (char *)"\n" "FormFactorGauss_clone(FormFactorGauss self) -> FormFactorGauss\n" "\n" - "FormFactorGauss* FormFactorGauss::clone() const override final\n" + "FormFactorGauss* FormFactorGauss::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -119663,7 +119529,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorGauss_accept", _wrap_FormFactorGauss_accept, METH_VARARGS, (char *)"\n" "FormFactorGauss_accept(FormFactorGauss self, INodeVisitor visitor)\n" "\n" - "void FormFactorGauss::accept(INodeVisitor *visitor) const override final\n" + "void FormFactorGauss::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -119671,19 +119537,19 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorGauss_getWidth", _wrap_FormFactorGauss_getWidth, METH_VARARGS, (char *)"\n" "FormFactorGauss_getWidth(FormFactorGauss self) -> double\n" "\n" - "double FormFactorGauss::getWidth() const\n" + "double FormFactorGauss::getWidth() const \n" "\n" ""}, { (char *)"FormFactorGauss_getHeight", _wrap_FormFactorGauss_getHeight, METH_VARARGS, (char *)"\n" "FormFactorGauss_getHeight(FormFactorGauss self) -> double\n" "\n" - "double FormFactorGauss::getHeight() const\n" + "double FormFactorGauss::getHeight() const \n" "\n" ""}, { (char *)"FormFactorGauss_radialExtension", _wrap_FormFactorGauss_radialExtension, METH_VARARGS, (char *)"\n" "FormFactorGauss_radialExtension(FormFactorGauss self) -> double\n" "\n" - "double FormFactorGauss::radialExtension() const override final\n" + "double FormFactorGauss::radialExtension() const overridefinal\n" "\n" "Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations \n" "\n" @@ -119691,7 +119557,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorGauss_evaluate_for_q", _wrap_FormFactorGauss_evaluate_for_q, METH_VARARGS, (char *)"\n" "FormFactorGauss_evaluate_for_q(FormFactorGauss self, cvector_t q) -> complex_t\n" "\n" - "complex_t FormFactorGauss::evaluate_for_q(cvector_t q) const override final\n" + "complex_t FormFactorGauss::evaluate_for_q(cvector_t q) const overridefinal\n" "\n" "Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. \n" "\n" @@ -119727,7 +119593,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorHemiEllipsoid_clone", _wrap_FormFactorHemiEllipsoid_clone, METH_VARARGS, (char *)"\n" "FormFactorHemiEllipsoid_clone(FormFactorHemiEllipsoid self) -> FormFactorHemiEllipsoid\n" "\n" - "FormFactorHemiEllipsoid* FormFactorHemiEllipsoid::clone() const override final\n" + "FormFactorHemiEllipsoid* FormFactorHemiEllipsoid::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -119735,7 +119601,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorHemiEllipsoid_accept", _wrap_FormFactorHemiEllipsoid_accept, METH_VARARGS, (char *)"\n" "FormFactorHemiEllipsoid_accept(FormFactorHemiEllipsoid self, INodeVisitor visitor)\n" "\n" - "void FormFactorHemiEllipsoid::accept(INodeVisitor *visitor) const override final\n" + "void FormFactorHemiEllipsoid::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -119743,25 +119609,25 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorHemiEllipsoid_getHeight", _wrap_FormFactorHemiEllipsoid_getHeight, METH_VARARGS, (char *)"\n" "FormFactorHemiEllipsoid_getHeight(FormFactorHemiEllipsoid self) -> double\n" "\n" - "double FormFactorHemiEllipsoid::getHeight() const\n" + "double FormFactorHemiEllipsoid::getHeight() const \n" "\n" ""}, { (char *)"FormFactorHemiEllipsoid_getRadiusX", _wrap_FormFactorHemiEllipsoid_getRadiusX, METH_VARARGS, (char *)"\n" "FormFactorHemiEllipsoid_getRadiusX(FormFactorHemiEllipsoid self) -> double\n" "\n" - "double FormFactorHemiEllipsoid::getRadiusX() const\n" + "double FormFactorHemiEllipsoid::getRadiusX() const \n" "\n" ""}, { (char *)"FormFactorHemiEllipsoid_getRadiusY", _wrap_FormFactorHemiEllipsoid_getRadiusY, METH_VARARGS, (char *)"\n" "FormFactorHemiEllipsoid_getRadiusY(FormFactorHemiEllipsoid self) -> double\n" "\n" - "double FormFactorHemiEllipsoid::getRadiusY() const\n" + "double FormFactorHemiEllipsoid::getRadiusY() const \n" "\n" ""}, { (char *)"FormFactorHemiEllipsoid_radialExtension", _wrap_FormFactorHemiEllipsoid_radialExtension, METH_VARARGS, (char *)"\n" "FormFactorHemiEllipsoid_radialExtension(FormFactorHemiEllipsoid self) -> double\n" "\n" - "double FormFactorHemiEllipsoid::radialExtension() const override final\n" + "double FormFactorHemiEllipsoid::radialExtension() const overridefinal\n" "\n" "Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations \n" "\n" @@ -119769,7 +119635,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorHemiEllipsoid_evaluate_for_q", _wrap_FormFactorHemiEllipsoid_evaluate_for_q, METH_VARARGS, (char *)"\n" "FormFactorHemiEllipsoid_evaluate_for_q(FormFactorHemiEllipsoid self, cvector_t q) -> complex_t\n" "\n" - "complex_t FormFactorHemiEllipsoid::evaluate_for_q(cvector_t q) const override final\n" + "complex_t FormFactorHemiEllipsoid::evaluate_for_q(cvector_t q) const overridefinal\n" "\n" "Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. \n" "\n" @@ -119792,7 +119658,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorIcosahedron_clone", _wrap_FormFactorIcosahedron_clone, METH_VARARGS, (char *)"\n" "FormFactorIcosahedron_clone(FormFactorIcosahedron self) -> FormFactorIcosahedron\n" "\n" - "FormFactorIcosahedron* FormFactorIcosahedron::clone() const override final\n" + "FormFactorIcosahedron* FormFactorIcosahedron::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -119800,7 +119666,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorIcosahedron_accept", _wrap_FormFactorIcosahedron_accept, METH_VARARGS, (char *)"\n" "FormFactorIcosahedron_accept(FormFactorIcosahedron self, INodeVisitor visitor)\n" "\n" - "void FormFactorIcosahedron::accept(INodeVisitor *visitor) const override final\n" + "void FormFactorIcosahedron::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -119808,7 +119674,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorIcosahedron_getEdge", _wrap_FormFactorIcosahedron_getEdge, METH_VARARGS, (char *)"\n" "FormFactorIcosahedron_getEdge(FormFactorIcosahedron self) -> double\n" "\n" - "double FormFactorIcosahedron::getEdge() const\n" + "double FormFactorIcosahedron::getEdge() const \n" "\n" ""}, { (char *)"delete_FormFactorIcosahedron", _wrap_delete_FormFactorIcosahedron, METH_VARARGS, (char *)"delete_FormFactorIcosahedron(FormFactorIcosahedron self)"}, @@ -119836,7 +119702,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorLongBoxGauss_clone", _wrap_FormFactorLongBoxGauss_clone, METH_VARARGS, (char *)"\n" "FormFactorLongBoxGauss_clone(FormFactorLongBoxGauss self) -> FormFactorLongBoxGauss\n" "\n" - "FormFactorLongBoxGauss* FormFactorLongBoxGauss::clone() const override final\n" + "FormFactorLongBoxGauss* FormFactorLongBoxGauss::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -119844,7 +119710,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorLongBoxGauss_accept", _wrap_FormFactorLongBoxGauss_accept, METH_VARARGS, (char *)"\n" "FormFactorLongBoxGauss_accept(FormFactorLongBoxGauss self, INodeVisitor visitor)\n" "\n" - "void FormFactorLongBoxGauss::accept(INodeVisitor *visitor) const override final\n" + "void FormFactorLongBoxGauss::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -119852,25 +119718,25 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorLongBoxGauss_getLength", _wrap_FormFactorLongBoxGauss_getLength, METH_VARARGS, (char *)"\n" "FormFactorLongBoxGauss_getLength(FormFactorLongBoxGauss self) -> double\n" "\n" - "double FormFactorLongBoxGauss::getLength() const\n" + "double FormFactorLongBoxGauss::getLength() const \n" "\n" ""}, { (char *)"FormFactorLongBoxGauss_getHeight", _wrap_FormFactorLongBoxGauss_getHeight, METH_VARARGS, (char *)"\n" "FormFactorLongBoxGauss_getHeight(FormFactorLongBoxGauss self) -> double\n" "\n" - "double FormFactorLongBoxGauss::getHeight() const\n" + "double FormFactorLongBoxGauss::getHeight() const \n" "\n" ""}, { (char *)"FormFactorLongBoxGauss_getWidth", _wrap_FormFactorLongBoxGauss_getWidth, METH_VARARGS, (char *)"\n" "FormFactorLongBoxGauss_getWidth(FormFactorLongBoxGauss self) -> double\n" "\n" - "double FormFactorLongBoxGauss::getWidth() const\n" + "double FormFactorLongBoxGauss::getWidth() const \n" "\n" ""}, { (char *)"FormFactorLongBoxGauss_radialExtension", _wrap_FormFactorLongBoxGauss_radialExtension, METH_VARARGS, (char *)"\n" "FormFactorLongBoxGauss_radialExtension(FormFactorLongBoxGauss self) -> double\n" "\n" - "double FormFactorLongBoxGauss::radialExtension() const override final\n" + "double FormFactorLongBoxGauss::radialExtension() const overridefinal\n" "\n" "Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations \n" "\n" @@ -119878,7 +119744,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorLongBoxGauss_evaluate_for_q", _wrap_FormFactorLongBoxGauss_evaluate_for_q, METH_VARARGS, (char *)"\n" "FormFactorLongBoxGauss_evaluate_for_q(FormFactorLongBoxGauss self, cvector_t q) -> complex_t\n" "\n" - "complex_t FormFactorLongBoxGauss::evaluate_for_q(cvector_t q) const override final\n" + "complex_t FormFactorLongBoxGauss::evaluate_for_q(cvector_t q) const overridefinal\n" "\n" "Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. \n" "\n" @@ -119908,7 +119774,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorLongBoxLorentz_clone", _wrap_FormFactorLongBoxLorentz_clone, METH_VARARGS, (char *)"\n" "FormFactorLongBoxLorentz_clone(FormFactorLongBoxLorentz self) -> FormFactorLongBoxLorentz\n" "\n" - "FormFactorLongBoxLorentz* FormFactorLongBoxLorentz::clone() const override final\n" + "FormFactorLongBoxLorentz* FormFactorLongBoxLorentz::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -119916,7 +119782,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorLongBoxLorentz_accept", _wrap_FormFactorLongBoxLorentz_accept, METH_VARARGS, (char *)"\n" "FormFactorLongBoxLorentz_accept(FormFactorLongBoxLorentz self, INodeVisitor visitor)\n" "\n" - "void FormFactorLongBoxLorentz::accept(INodeVisitor *visitor) const override final\n" + "void FormFactorLongBoxLorentz::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -119924,25 +119790,25 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorLongBoxLorentz_getLength", _wrap_FormFactorLongBoxLorentz_getLength, METH_VARARGS, (char *)"\n" "FormFactorLongBoxLorentz_getLength(FormFactorLongBoxLorentz self) -> double\n" "\n" - "double FormFactorLongBoxLorentz::getLength() const\n" + "double FormFactorLongBoxLorentz::getLength() const \n" "\n" ""}, { (char *)"FormFactorLongBoxLorentz_getHeight", _wrap_FormFactorLongBoxLorentz_getHeight, METH_VARARGS, (char *)"\n" "FormFactorLongBoxLorentz_getHeight(FormFactorLongBoxLorentz self) -> double\n" "\n" - "double FormFactorLongBoxLorentz::getHeight() const\n" + "double FormFactorLongBoxLorentz::getHeight() const \n" "\n" ""}, { (char *)"FormFactorLongBoxLorentz_getWidth", _wrap_FormFactorLongBoxLorentz_getWidth, METH_VARARGS, (char *)"\n" "FormFactorLongBoxLorentz_getWidth(FormFactorLongBoxLorentz self) -> double\n" "\n" - "double FormFactorLongBoxLorentz::getWidth() const\n" + "double FormFactorLongBoxLorentz::getWidth() const \n" "\n" ""}, { (char *)"FormFactorLongBoxLorentz_radialExtension", _wrap_FormFactorLongBoxLorentz_radialExtension, METH_VARARGS, (char *)"\n" "FormFactorLongBoxLorentz_radialExtension(FormFactorLongBoxLorentz self) -> double\n" "\n" - "double FormFactorLongBoxLorentz::radialExtension() const override final\n" + "double FormFactorLongBoxLorentz::radialExtension() const overridefinal\n" "\n" "Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations \n" "\n" @@ -119950,7 +119816,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorLongBoxLorentz_evaluate_for_q", _wrap_FormFactorLongBoxLorentz_evaluate_for_q, METH_VARARGS, (char *)"\n" "FormFactorLongBoxLorentz_evaluate_for_q(FormFactorLongBoxLorentz self, cvector_t q) -> complex_t\n" "\n" - "complex_t FormFactorLongBoxLorentz::evaluate_for_q(cvector_t q) const override final\n" + "complex_t FormFactorLongBoxLorentz::evaluate_for_q(cvector_t q) const overridefinal\n" "\n" "Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. \n" "\n" @@ -119980,7 +119846,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorLongRipple1Gauss_clone", _wrap_FormFactorLongRipple1Gauss_clone, METH_VARARGS, (char *)"\n" "FormFactorLongRipple1Gauss_clone(FormFactorLongRipple1Gauss self) -> FormFactorLongRipple1Gauss\n" "\n" - "FormFactorLongRipple1Gauss* FormFactorLongRipple1Gauss::clone() const override final\n" + "FormFactorLongRipple1Gauss* FormFactorLongRipple1Gauss::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -119988,7 +119854,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorLongRipple1Gauss_accept", _wrap_FormFactorLongRipple1Gauss_accept, METH_VARARGS, (char *)"\n" "FormFactorLongRipple1Gauss_accept(FormFactorLongRipple1Gauss self, INodeVisitor visitor)\n" "\n" - "void FormFactorLongRipple1Gauss::accept(INodeVisitor *visitor) const override final\n" + "void FormFactorLongRipple1Gauss::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -119996,25 +119862,25 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorLongRipple1Gauss_getHeight", _wrap_FormFactorLongRipple1Gauss_getHeight, METH_VARARGS, (char *)"\n" "FormFactorLongRipple1Gauss_getHeight(FormFactorLongRipple1Gauss self) -> double\n" "\n" - "double FormFactorLongRipple1Gauss::getHeight() const\n" + "double FormFactorLongRipple1Gauss::getHeight() const \n" "\n" ""}, { (char *)"FormFactorLongRipple1Gauss_getWidth", _wrap_FormFactorLongRipple1Gauss_getWidth, METH_VARARGS, (char *)"\n" "FormFactorLongRipple1Gauss_getWidth(FormFactorLongRipple1Gauss self) -> double\n" "\n" - "double FormFactorLongRipple1Gauss::getWidth() const\n" + "double FormFactorLongRipple1Gauss::getWidth() const \n" "\n" ""}, { (char *)"FormFactorLongRipple1Gauss_getLength", _wrap_FormFactorLongRipple1Gauss_getLength, METH_VARARGS, (char *)"\n" "FormFactorLongRipple1Gauss_getLength(FormFactorLongRipple1Gauss self) -> double\n" "\n" - "double FormFactorLongRipple1Gauss::getLength() const\n" + "double FormFactorLongRipple1Gauss::getLength() const \n" "\n" ""}, { (char *)"FormFactorLongRipple1Gauss_radialExtension", _wrap_FormFactorLongRipple1Gauss_radialExtension, METH_VARARGS, (char *)"\n" "FormFactorLongRipple1Gauss_radialExtension(FormFactorLongRipple1Gauss self) -> double\n" "\n" - "double FormFactorLongRipple1Gauss::radialExtension() const override final\n" + "double FormFactorLongRipple1Gauss::radialExtension() const overridefinal\n" "\n" "Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations \n" "\n" @@ -120022,7 +119888,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorLongRipple1Gauss_evaluate_for_q", _wrap_FormFactorLongRipple1Gauss_evaluate_for_q, METH_VARARGS, (char *)"\n" "FormFactorLongRipple1Gauss_evaluate_for_q(FormFactorLongRipple1Gauss self, cvector_t q) -> complex_t\n" "\n" - "complex_t FormFactorLongRipple1Gauss::evaluate_for_q(cvector_t q) const override final\n" + "complex_t FormFactorLongRipple1Gauss::evaluate_for_q(cvector_t q) const overridefinal\n" "\n" "Complex formfactor. \n" "\n" @@ -120052,7 +119918,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorLongRipple1Lorentz_clone", _wrap_FormFactorLongRipple1Lorentz_clone, METH_VARARGS, (char *)"\n" "FormFactorLongRipple1Lorentz_clone(FormFactorLongRipple1Lorentz self) -> FormFactorLongRipple1Lorentz\n" "\n" - "FormFactorLongRipple1Lorentz* FormFactorLongRipple1Lorentz::clone() const override final\n" + "FormFactorLongRipple1Lorentz* FormFactorLongRipple1Lorentz::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -120060,7 +119926,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorLongRipple1Lorentz_accept", _wrap_FormFactorLongRipple1Lorentz_accept, METH_VARARGS, (char *)"\n" "FormFactorLongRipple1Lorentz_accept(FormFactorLongRipple1Lorentz self, INodeVisitor visitor)\n" "\n" - "void FormFactorLongRipple1Lorentz::accept(INodeVisitor *visitor) const override final\n" + "void FormFactorLongRipple1Lorentz::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -120068,7 +119934,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorLongRipple1Lorentz_radialExtension", _wrap_FormFactorLongRipple1Lorentz_radialExtension, METH_VARARGS, (char *)"\n" "FormFactorLongRipple1Lorentz_radialExtension(FormFactorLongRipple1Lorentz self) -> double\n" "\n" - "double FormFactorLongRipple1Lorentz::radialExtension() const override final\n" + "double FormFactorLongRipple1Lorentz::radialExtension() const overridefinal\n" "\n" "Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations \n" "\n" @@ -120076,25 +119942,25 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorLongRipple1Lorentz_getHeight", _wrap_FormFactorLongRipple1Lorentz_getHeight, METH_VARARGS, (char *)"\n" "FormFactorLongRipple1Lorentz_getHeight(FormFactorLongRipple1Lorentz self) -> double\n" "\n" - "double FormFactorLongRipple1Lorentz::getHeight() const\n" + "double FormFactorLongRipple1Lorentz::getHeight() const \n" "\n" ""}, { (char *)"FormFactorLongRipple1Lorentz_getWidth", _wrap_FormFactorLongRipple1Lorentz_getWidth, METH_VARARGS, (char *)"\n" "FormFactorLongRipple1Lorentz_getWidth(FormFactorLongRipple1Lorentz self) -> double\n" "\n" - "double FormFactorLongRipple1Lorentz::getWidth() const\n" + "double FormFactorLongRipple1Lorentz::getWidth() const \n" "\n" ""}, { (char *)"FormFactorLongRipple1Lorentz_getLength", _wrap_FormFactorLongRipple1Lorentz_getLength, METH_VARARGS, (char *)"\n" "FormFactorLongRipple1Lorentz_getLength(FormFactorLongRipple1Lorentz self) -> double\n" "\n" - "double FormFactorLongRipple1Lorentz::getLength() const\n" + "double FormFactorLongRipple1Lorentz::getLength() const \n" "\n" ""}, { (char *)"FormFactorLongRipple1Lorentz_evaluate_for_q", _wrap_FormFactorLongRipple1Lorentz_evaluate_for_q, METH_VARARGS, (char *)"\n" "FormFactorLongRipple1Lorentz_evaluate_for_q(FormFactorLongRipple1Lorentz self, cvector_t q) -> complex_t\n" "\n" - "complex_t FormFactorLongRipple1Lorentz::evaluate_for_q(cvector_t q) const override final\n" + "complex_t FormFactorLongRipple1Lorentz::evaluate_for_q(cvector_t q) const overridefinal\n" "\n" "Complex formfactor. \n" "\n" @@ -120127,7 +119993,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorLongRipple2Gauss_clone", _wrap_FormFactorLongRipple2Gauss_clone, METH_VARARGS, (char *)"\n" "FormFactorLongRipple2Gauss_clone(FormFactorLongRipple2Gauss self) -> FormFactorLongRipple2Gauss\n" "\n" - "FormFactorLongRipple2Gauss* FormFactorLongRipple2Gauss::clone() const override final\n" + "FormFactorLongRipple2Gauss* FormFactorLongRipple2Gauss::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -120135,7 +120001,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorLongRipple2Gauss_accept", _wrap_FormFactorLongRipple2Gauss_accept, METH_VARARGS, (char *)"\n" "FormFactorLongRipple2Gauss_accept(FormFactorLongRipple2Gauss self, INodeVisitor visitor)\n" "\n" - "void FormFactorLongRipple2Gauss::accept(INodeVisitor *visitor) const override final\n" + "void FormFactorLongRipple2Gauss::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -120143,31 +120009,31 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorLongRipple2Gauss_getHeight", _wrap_FormFactorLongRipple2Gauss_getHeight, METH_VARARGS, (char *)"\n" "FormFactorLongRipple2Gauss_getHeight(FormFactorLongRipple2Gauss self) -> double\n" "\n" - "double FormFactorLongRipple2Gauss::getHeight() const\n" + "double FormFactorLongRipple2Gauss::getHeight() const \n" "\n" ""}, { (char *)"FormFactorLongRipple2Gauss_getWidth", _wrap_FormFactorLongRipple2Gauss_getWidth, METH_VARARGS, (char *)"\n" "FormFactorLongRipple2Gauss_getWidth(FormFactorLongRipple2Gauss self) -> double\n" "\n" - "double FormFactorLongRipple2Gauss::getWidth() const\n" + "double FormFactorLongRipple2Gauss::getWidth() const \n" "\n" ""}, { (char *)"FormFactorLongRipple2Gauss_getLength", _wrap_FormFactorLongRipple2Gauss_getLength, METH_VARARGS, (char *)"\n" "FormFactorLongRipple2Gauss_getLength(FormFactorLongRipple2Gauss self) -> double\n" "\n" - "double FormFactorLongRipple2Gauss::getLength() const\n" + "double FormFactorLongRipple2Gauss::getLength() const \n" "\n" ""}, { (char *)"FormFactorLongRipple2Gauss_getAsymmetry", _wrap_FormFactorLongRipple2Gauss_getAsymmetry, METH_VARARGS, (char *)"\n" "FormFactorLongRipple2Gauss_getAsymmetry(FormFactorLongRipple2Gauss self) -> double\n" "\n" - "double FormFactorLongRipple2Gauss::getAsymmetry() const\n" + "double FormFactorLongRipple2Gauss::getAsymmetry() const \n" "\n" ""}, { (char *)"FormFactorLongRipple2Gauss_radialExtension", _wrap_FormFactorLongRipple2Gauss_radialExtension, METH_VARARGS, (char *)"\n" "FormFactorLongRipple2Gauss_radialExtension(FormFactorLongRipple2Gauss self) -> double\n" "\n" - "double FormFactorLongRipple2Gauss::radialExtension() const override final\n" + "double FormFactorLongRipple2Gauss::radialExtension() const overridefinal\n" "\n" "Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations \n" "\n" @@ -120175,7 +120041,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorLongRipple2Gauss_evaluate_for_q", _wrap_FormFactorLongRipple2Gauss_evaluate_for_q, METH_VARARGS, (char *)"\n" "FormFactorLongRipple2Gauss_evaluate_for_q(FormFactorLongRipple2Gauss self, cvector_t q) -> complex_t\n" "\n" - "complex_t FormFactorLongRipple2Gauss::evaluate_for_q(cvector_t q) const override final\n" + "complex_t FormFactorLongRipple2Gauss::evaluate_for_q(cvector_t q) const overridefinal\n" "\n" "Complex formfactor. \n" "\n" @@ -120206,7 +120072,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorLongRipple2Lorentz_clone", _wrap_FormFactorLongRipple2Lorentz_clone, METH_VARARGS, (char *)"\n" "FormFactorLongRipple2Lorentz_clone(FormFactorLongRipple2Lorentz self) -> FormFactorLongRipple2Lorentz\n" "\n" - "FormFactorLongRipple2Lorentz* FormFactorLongRipple2Lorentz::clone() const override final\n" + "FormFactorLongRipple2Lorentz* FormFactorLongRipple2Lorentz::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -120214,7 +120080,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorLongRipple2Lorentz_accept", _wrap_FormFactorLongRipple2Lorentz_accept, METH_VARARGS, (char *)"\n" "FormFactorLongRipple2Lorentz_accept(FormFactorLongRipple2Lorentz self, INodeVisitor visitor)\n" "\n" - "void FormFactorLongRipple2Lorentz::accept(INodeVisitor *visitor) const override final\n" + "void FormFactorLongRipple2Lorentz::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -120222,31 +120088,31 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorLongRipple2Lorentz_getHeight", _wrap_FormFactorLongRipple2Lorentz_getHeight, METH_VARARGS, (char *)"\n" "FormFactorLongRipple2Lorentz_getHeight(FormFactorLongRipple2Lorentz self) -> double\n" "\n" - "double FormFactorLongRipple2Lorentz::getHeight() const\n" + "double FormFactorLongRipple2Lorentz::getHeight() const \n" "\n" ""}, { (char *)"FormFactorLongRipple2Lorentz_getWidth", _wrap_FormFactorLongRipple2Lorentz_getWidth, METH_VARARGS, (char *)"\n" "FormFactorLongRipple2Lorentz_getWidth(FormFactorLongRipple2Lorentz self) -> double\n" "\n" - "double FormFactorLongRipple2Lorentz::getWidth() const\n" + "double FormFactorLongRipple2Lorentz::getWidth() const \n" "\n" ""}, { (char *)"FormFactorLongRipple2Lorentz_getLength", _wrap_FormFactorLongRipple2Lorentz_getLength, METH_VARARGS, (char *)"\n" "FormFactorLongRipple2Lorentz_getLength(FormFactorLongRipple2Lorentz self) -> double\n" "\n" - "double FormFactorLongRipple2Lorentz::getLength() const\n" + "double FormFactorLongRipple2Lorentz::getLength() const \n" "\n" ""}, { (char *)"FormFactorLongRipple2Lorentz_getAsymmetry", _wrap_FormFactorLongRipple2Lorentz_getAsymmetry, METH_VARARGS, (char *)"\n" "FormFactorLongRipple2Lorentz_getAsymmetry(FormFactorLongRipple2Lorentz self) -> double\n" "\n" - "double FormFactorLongRipple2Lorentz::getAsymmetry() const\n" + "double FormFactorLongRipple2Lorentz::getAsymmetry() const \n" "\n" ""}, { (char *)"FormFactorLongRipple2Lorentz_radialExtension", _wrap_FormFactorLongRipple2Lorentz_radialExtension, METH_VARARGS, (char *)"\n" "FormFactorLongRipple2Lorentz_radialExtension(FormFactorLongRipple2Lorentz self) -> double\n" "\n" - "double FormFactorLongRipple2Lorentz::radialExtension() const override final\n" + "double FormFactorLongRipple2Lorentz::radialExtension() const overridefinal\n" "\n" "Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations \n" "\n" @@ -120254,7 +120120,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorLongRipple2Lorentz_evaluate_for_q", _wrap_FormFactorLongRipple2Lorentz_evaluate_for_q, METH_VARARGS, (char *)"\n" "FormFactorLongRipple2Lorentz_evaluate_for_q(FormFactorLongRipple2Lorentz self, cvector_t q) -> complex_t\n" "\n" - "complex_t FormFactorLongRipple2Lorentz::evaluate_for_q(cvector_t q) const override final\n" + "complex_t FormFactorLongRipple2Lorentz::evaluate_for_q(cvector_t q) const overridefinal\n" "\n" "Complex formfactor. \n" "\n" @@ -120271,7 +120137,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorLorentz_clone", _wrap_FormFactorLorentz_clone, METH_VARARGS, (char *)"\n" "FormFactorLorentz_clone(FormFactorLorentz self) -> FormFactorLorentz\n" "\n" - "FormFactorLorentz* FormFactorLorentz::clone() const override final\n" + "FormFactorLorentz* FormFactorLorentz::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -120279,7 +120145,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorLorentz_accept", _wrap_FormFactorLorentz_accept, METH_VARARGS, (char *)"\n" "FormFactorLorentz_accept(FormFactorLorentz self, INodeVisitor visitor)\n" "\n" - "void FormFactorLorentz::accept(INodeVisitor *visitor) const override final\n" + "void FormFactorLorentz::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -120287,19 +120153,19 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorLorentz_getWidth", _wrap_FormFactorLorentz_getWidth, METH_VARARGS, (char *)"\n" "FormFactorLorentz_getWidth(FormFactorLorentz self) -> double\n" "\n" - "double FormFactorLorentz::getWidth() const\n" + "double FormFactorLorentz::getWidth() const \n" "\n" ""}, { (char *)"FormFactorLorentz_getHeight", _wrap_FormFactorLorentz_getHeight, METH_VARARGS, (char *)"\n" "FormFactorLorentz_getHeight(FormFactorLorentz self) -> double\n" "\n" - "double FormFactorLorentz::getHeight() const\n" + "double FormFactorLorentz::getHeight() const \n" "\n" ""}, { (char *)"FormFactorLorentz_radialExtension", _wrap_FormFactorLorentz_radialExtension, METH_VARARGS, (char *)"\n" "FormFactorLorentz_radialExtension(FormFactorLorentz self) -> double\n" "\n" - "double FormFactorLorentz::radialExtension() const override final\n" + "double FormFactorLorentz::radialExtension() const overridefinal\n" "\n" "Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations \n" "\n" @@ -120307,7 +120173,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorLorentz_evaluate_for_q", _wrap_FormFactorLorentz_evaluate_for_q, METH_VARARGS, (char *)"\n" "FormFactorLorentz_evaluate_for_q(FormFactorLorentz self, cvector_t q) -> complex_t\n" "\n" - "complex_t FormFactorLorentz::evaluate_for_q(cvector_t q) const override final\n" + "complex_t FormFactorLorentz::evaluate_for_q(cvector_t q) const overridefinal\n" "\n" "Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. \n" "\n" @@ -120334,7 +120200,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorPrism3_clone", _wrap_FormFactorPrism3_clone, METH_VARARGS, (char *)"\n" "FormFactorPrism3_clone(FormFactorPrism3 self) -> FormFactorPrism3\n" "\n" - "FormFactorPrism3* FormFactorPrism3::clone() const override final\n" + "FormFactorPrism3* FormFactorPrism3::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -120342,7 +120208,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorPrism3_accept", _wrap_FormFactorPrism3_accept, METH_VARARGS, (char *)"\n" "FormFactorPrism3_accept(FormFactorPrism3 self, INodeVisitor visitor)\n" "\n" - "void FormFactorPrism3::accept(INodeVisitor *visitor) const override final\n" + "void FormFactorPrism3::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -120350,7 +120216,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorPrism3_getBaseEdge", _wrap_FormFactorPrism3_getBaseEdge, METH_VARARGS, (char *)"\n" "FormFactorPrism3_getBaseEdge(FormFactorPrism3 self) -> double\n" "\n" - "double FormFactorPrism3::getBaseEdge() const\n" + "double FormFactorPrism3::getBaseEdge() const \n" "\n" ""}, { (char *)"delete_FormFactorPrism3", _wrap_delete_FormFactorPrism3, METH_VARARGS, (char *)"delete_FormFactorPrism3(FormFactorPrism3 self)"}, @@ -120375,7 +120241,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorPrism6_clone", _wrap_FormFactorPrism6_clone, METH_VARARGS, (char *)"\n" "FormFactorPrism6_clone(FormFactorPrism6 self) -> FormFactorPrism6\n" "\n" - "FormFactorPrism6* FormFactorPrism6::clone() const override final\n" + "FormFactorPrism6* FormFactorPrism6::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -120383,7 +120249,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorPrism6_accept", _wrap_FormFactorPrism6_accept, METH_VARARGS, (char *)"\n" "FormFactorPrism6_accept(FormFactorPrism6 self, INodeVisitor visitor)\n" "\n" - "void FormFactorPrism6::accept(INodeVisitor *visitor) const override final\n" + "void FormFactorPrism6::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -120391,7 +120257,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorPrism6_getBaseEdge", _wrap_FormFactorPrism6_getBaseEdge, METH_VARARGS, (char *)"\n" "FormFactorPrism6_getBaseEdge(FormFactorPrism6 self) -> double\n" "\n" - "double FormFactorPrism6::getBaseEdge() const\n" + "double FormFactorPrism6::getBaseEdge() const \n" "\n" ""}, { (char *)"delete_FormFactorPrism6", _wrap_delete_FormFactorPrism6, METH_VARARGS, (char *)"delete_FormFactorPrism6(FormFactorPrism6 self)"}, @@ -120419,7 +120285,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorPyramid_clone", _wrap_FormFactorPyramid_clone, METH_VARARGS, (char *)"\n" "FormFactorPyramid_clone(FormFactorPyramid self) -> FormFactorPyramid\n" "\n" - "FormFactorPyramid* FormFactorPyramid::clone() const override final\n" + "FormFactorPyramid* FormFactorPyramid::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -120427,7 +120293,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorPyramid_accept", _wrap_FormFactorPyramid_accept, METH_VARARGS, (char *)"\n" "FormFactorPyramid_accept(FormFactorPyramid self, INodeVisitor visitor)\n" "\n" - "void FormFactorPyramid::accept(INodeVisitor *visitor) const override final\n" + "void FormFactorPyramid::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -120435,19 +120301,19 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorPyramid_getHeight", _wrap_FormFactorPyramid_getHeight, METH_VARARGS, (char *)"\n" "FormFactorPyramid_getHeight(FormFactorPyramid self) -> double\n" "\n" - "double FormFactorPyramid::getHeight() const\n" + "double FormFactorPyramid::getHeight() const \n" "\n" ""}, { (char *)"FormFactorPyramid_getBaseEdge", _wrap_FormFactorPyramid_getBaseEdge, METH_VARARGS, (char *)"\n" "FormFactorPyramid_getBaseEdge(FormFactorPyramid self) -> double\n" "\n" - "double FormFactorPyramid::getBaseEdge() const\n" + "double FormFactorPyramid::getBaseEdge() const \n" "\n" ""}, { (char *)"FormFactorPyramid_getAlpha", _wrap_FormFactorPyramid_getAlpha, METH_VARARGS, (char *)"\n" "FormFactorPyramid_getAlpha(FormFactorPyramid self) -> double\n" "\n" - "double FormFactorPyramid::getAlpha() const\n" + "double FormFactorPyramid::getAlpha() const \n" "\n" ""}, { (char *)"delete_FormFactorPyramid", _wrap_delete_FormFactorPyramid, METH_VARARGS, (char *)"delete_FormFactorPyramid(FormFactorPyramid self)"}, @@ -120475,7 +120341,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorRipple1_clone", _wrap_FormFactorRipple1_clone, METH_VARARGS, (char *)"\n" "FormFactorRipple1_clone(FormFactorRipple1 self) -> FormFactorRipple1\n" "\n" - "FormFactorRipple1* FormFactorRipple1::clone() const override final\n" + "FormFactorRipple1* FormFactorRipple1::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -120483,7 +120349,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorRipple1_accept", _wrap_FormFactorRipple1_accept, METH_VARARGS, (char *)"\n" "FormFactorRipple1_accept(FormFactorRipple1 self, INodeVisitor visitor)\n" "\n" - "void FormFactorRipple1::accept(INodeVisitor *visitor) const override final\n" + "void FormFactorRipple1::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -120491,25 +120357,25 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorRipple1_getLength", _wrap_FormFactorRipple1_getLength, METH_VARARGS, (char *)"\n" "FormFactorRipple1_getLength(FormFactorRipple1 self) -> double\n" "\n" - "double FormFactorRipple1::getLength() const\n" + "double FormFactorRipple1::getLength() const \n" "\n" ""}, { (char *)"FormFactorRipple1_getHeight", _wrap_FormFactorRipple1_getHeight, METH_VARARGS, (char *)"\n" "FormFactorRipple1_getHeight(FormFactorRipple1 self) -> double\n" "\n" - "double FormFactorRipple1::getHeight() const\n" + "double FormFactorRipple1::getHeight() const \n" "\n" ""}, { (char *)"FormFactorRipple1_getWidth", _wrap_FormFactorRipple1_getWidth, METH_VARARGS, (char *)"\n" "FormFactorRipple1_getWidth(FormFactorRipple1 self) -> double\n" "\n" - "double FormFactorRipple1::getWidth() const\n" + "double FormFactorRipple1::getWidth() const \n" "\n" ""}, { (char *)"FormFactorRipple1_radialExtension", _wrap_FormFactorRipple1_radialExtension, METH_VARARGS, (char *)"\n" "FormFactorRipple1_radialExtension(FormFactorRipple1 self) -> double\n" "\n" - "double FormFactorRipple1::radialExtension() const override final\n" + "double FormFactorRipple1::radialExtension() const overridefinal\n" "\n" "Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations \n" "\n" @@ -120517,7 +120383,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorRipple1_evaluate_for_q", _wrap_FormFactorRipple1_evaluate_for_q, METH_VARARGS, (char *)"\n" "FormFactorRipple1_evaluate_for_q(FormFactorRipple1 self, cvector_t q) -> complex_t\n" "\n" - "complex_t FormFactorRipple1::evaluate_for_q(cvector_t q) const override final\n" + "complex_t FormFactorRipple1::evaluate_for_q(cvector_t q) const overridefinal\n" "\n" "Complex formfactor. \n" "\n" @@ -120550,7 +120416,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorRipple2_clone", _wrap_FormFactorRipple2_clone, METH_VARARGS, (char *)"\n" "FormFactorRipple2_clone(FormFactorRipple2 self) -> FormFactorRipple2\n" "\n" - "FormFactorRipple2* FormFactorRipple2::clone() const override final\n" + "FormFactorRipple2* FormFactorRipple2::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -120558,7 +120424,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorRipple2_accept", _wrap_FormFactorRipple2_accept, METH_VARARGS, (char *)"\n" "FormFactorRipple2_accept(FormFactorRipple2 self, INodeVisitor visitor)\n" "\n" - "void FormFactorRipple2::accept(INodeVisitor *visitor) const override final\n" + "void FormFactorRipple2::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -120566,31 +120432,31 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorRipple2_getHeight", _wrap_FormFactorRipple2_getHeight, METH_VARARGS, (char *)"\n" "FormFactorRipple2_getHeight(FormFactorRipple2 self) -> double\n" "\n" - "double FormFactorRipple2::getHeight() const\n" + "double FormFactorRipple2::getHeight() const \n" "\n" ""}, { (char *)"FormFactorRipple2_getWidth", _wrap_FormFactorRipple2_getWidth, METH_VARARGS, (char *)"\n" "FormFactorRipple2_getWidth(FormFactorRipple2 self) -> double\n" "\n" - "double FormFactorRipple2::getWidth() const\n" + "double FormFactorRipple2::getWidth() const \n" "\n" ""}, { (char *)"FormFactorRipple2_getLength", _wrap_FormFactorRipple2_getLength, METH_VARARGS, (char *)"\n" "FormFactorRipple2_getLength(FormFactorRipple2 self) -> double\n" "\n" - "double FormFactorRipple2::getLength() const\n" + "double FormFactorRipple2::getLength() const \n" "\n" ""}, { (char *)"FormFactorRipple2_getAsymmetry", _wrap_FormFactorRipple2_getAsymmetry, METH_VARARGS, (char *)"\n" "FormFactorRipple2_getAsymmetry(FormFactorRipple2 self) -> double\n" "\n" - "double FormFactorRipple2::getAsymmetry() const\n" + "double FormFactorRipple2::getAsymmetry() const \n" "\n" ""}, { (char *)"FormFactorRipple2_radialExtension", _wrap_FormFactorRipple2_radialExtension, METH_VARARGS, (char *)"\n" "FormFactorRipple2_radialExtension(FormFactorRipple2 self) -> double\n" "\n" - "double FormFactorRipple2::radialExtension() const override final\n" + "double FormFactorRipple2::radialExtension() const overridefinal\n" "\n" "Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations \n" "\n" @@ -120598,7 +120464,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorRipple2_evaluate_for_q", _wrap_FormFactorRipple2_evaluate_for_q, METH_VARARGS, (char *)"\n" "FormFactorRipple2_evaluate_for_q(FormFactorRipple2 self, cvector_t q) -> complex_t\n" "\n" - "complex_t FormFactorRipple2::evaluate_for_q(cvector_t q) const override final\n" + "complex_t FormFactorRipple2::evaluate_for_q(cvector_t q) const overridefinal\n" "\n" "Complex formfactor. \n" "\n" @@ -120614,7 +120480,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorSphereGaussianRadius_clone", _wrap_FormFactorSphereGaussianRadius_clone, METH_VARARGS, (char *)"\n" "FormFactorSphereGaussianRadius_clone(FormFactorSphereGaussianRadius self) -> FormFactorSphereGaussianRadius\n" "\n" - "FormFactorSphereGaussianRadius* FormFactorSphereGaussianRadius::clone() const override final\n" + "FormFactorSphereGaussianRadius* FormFactorSphereGaussianRadius::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -120622,7 +120488,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorSphereGaussianRadius_accept", _wrap_FormFactorSphereGaussianRadius_accept, METH_VARARGS, (char *)"\n" "FormFactorSphereGaussianRadius_accept(FormFactorSphereGaussianRadius self, INodeVisitor visitor)\n" "\n" - "void FormFactorSphereGaussianRadius::accept(INodeVisitor *visitor) const override final\n" + "void FormFactorSphereGaussianRadius::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -120630,7 +120496,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorSphereGaussianRadius_radialExtension", _wrap_FormFactorSphereGaussianRadius_radialExtension, METH_VARARGS, (char *)"\n" "FormFactorSphereGaussianRadius_radialExtension(FormFactorSphereGaussianRadius self) -> double\n" "\n" - "double FormFactorSphereGaussianRadius::radialExtension() const override final\n" + "double FormFactorSphereGaussianRadius::radialExtension() const overridefinal\n" "\n" "Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations \n" "\n" @@ -120638,7 +120504,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorSphereGaussianRadius_evaluate_for_q", _wrap_FormFactorSphereGaussianRadius_evaluate_for_q, METH_VARARGS, (char *)"\n" "FormFactorSphereGaussianRadius_evaluate_for_q(FormFactorSphereGaussianRadius self, cvector_t q) -> complex_t\n" "\n" - "complex_t FormFactorSphereGaussianRadius::evaluate_for_q(cvector_t q) const override final\n" + "complex_t FormFactorSphereGaussianRadius::evaluate_for_q(cvector_t q) const overridefinal\n" "\n" "Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. \n" "\n" @@ -120654,7 +120520,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorSphereLogNormalRadius_clone", _wrap_FormFactorSphereLogNormalRadius_clone, METH_VARARGS, (char *)"\n" "FormFactorSphereLogNormalRadius_clone(FormFactorSphereLogNormalRadius self) -> FormFactorSphereLogNormalRadius\n" "\n" - "FormFactorSphereLogNormalRadius* FormFactorSphereLogNormalRadius::clone() const override final\n" + "FormFactorSphereLogNormalRadius* FormFactorSphereLogNormalRadius::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -120662,7 +120528,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorSphereLogNormalRadius_accept", _wrap_FormFactorSphereLogNormalRadius_accept, METH_VARARGS, (char *)"\n" "FormFactorSphereLogNormalRadius_accept(FormFactorSphereLogNormalRadius self, INodeVisitor visitor)\n" "\n" - "void FormFactorSphereLogNormalRadius::accept(INodeVisitor *visitor) const override final\n" + "void FormFactorSphereLogNormalRadius::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -120670,7 +120536,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorSphereLogNormalRadius_radialExtension", _wrap_FormFactorSphereLogNormalRadius_radialExtension, METH_VARARGS, (char *)"\n" "FormFactorSphereLogNormalRadius_radialExtension(FormFactorSphereLogNormalRadius self) -> double\n" "\n" - "double FormFactorSphereLogNormalRadius::radialExtension() const override final\n" + "double FormFactorSphereLogNormalRadius::radialExtension() const overridefinal\n" "\n" "Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations \n" "\n" @@ -120678,7 +120544,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorSphereLogNormalRadius_evaluate_for_q", _wrap_FormFactorSphereLogNormalRadius_evaluate_for_q, METH_VARARGS, (char *)"\n" "FormFactorSphereLogNormalRadius_evaluate_for_q(FormFactorSphereLogNormalRadius self, cvector_t q) -> complex_t\n" "\n" - "complex_t FormFactorSphereLogNormalRadius::evaluate_for_q(cvector_t q) const override final\n" + "complex_t FormFactorSphereLogNormalRadius::evaluate_for_q(cvector_t q) const overridefinal\n" "\n" "Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. \n" "\n" @@ -120694,7 +120560,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorSphereUniformRadius_clone", _wrap_FormFactorSphereUniformRadius_clone, METH_VARARGS, (char *)"\n" "FormFactorSphereUniformRadius_clone(FormFactorSphereUniformRadius self) -> FormFactorSphereUniformRadius\n" "\n" - "FormFactorSphereUniformRadius* FormFactorSphereUniformRadius::clone() const override final\n" + "FormFactorSphereUniformRadius* FormFactorSphereUniformRadius::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -120702,7 +120568,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorSphereUniformRadius_accept", _wrap_FormFactorSphereUniformRadius_accept, METH_VARARGS, (char *)"\n" "FormFactorSphereUniformRadius_accept(FormFactorSphereUniformRadius self, INodeVisitor visitor)\n" "\n" - "void FormFactorSphereUniformRadius::accept(INodeVisitor *visitor) const override final\n" + "void FormFactorSphereUniformRadius::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -120710,7 +120576,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorSphereUniformRadius_radialExtension", _wrap_FormFactorSphereUniformRadius_radialExtension, METH_VARARGS, (char *)"\n" "FormFactorSphereUniformRadius_radialExtension(FormFactorSphereUniformRadius self) -> double\n" "\n" - "double FormFactorSphereUniformRadius::radialExtension() const override final\n" + "double FormFactorSphereUniformRadius::radialExtension() const overridefinal\n" "\n" "Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations \n" "\n" @@ -120718,7 +120584,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorSphereUniformRadius_evaluate_for_q", _wrap_FormFactorSphereUniformRadius_evaluate_for_q, METH_VARARGS, (char *)"\n" "FormFactorSphereUniformRadius_evaluate_for_q(FormFactorSphereUniformRadius self, cvector_t q) -> complex_t\n" "\n" - "complex_t FormFactorSphereUniformRadius::evaluate_for_q(cvector_t q) const override final\n" + "complex_t FormFactorSphereUniformRadius::evaluate_for_q(cvector_t q) const overridefinal\n" "\n" "Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. \n" "\n" @@ -120748,7 +120614,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorTetrahedron_clone", _wrap_FormFactorTetrahedron_clone, METH_VARARGS, (char *)"\n" "FormFactorTetrahedron_clone(FormFactorTetrahedron self) -> FormFactorTetrahedron\n" "\n" - "FormFactorTetrahedron* FormFactorTetrahedron::clone() const override final\n" + "FormFactorTetrahedron* FormFactorTetrahedron::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -120756,7 +120622,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorTetrahedron_accept", _wrap_FormFactorTetrahedron_accept, METH_VARARGS, (char *)"\n" "FormFactorTetrahedron_accept(FormFactorTetrahedron self, INodeVisitor visitor)\n" "\n" - "void FormFactorTetrahedron::accept(INodeVisitor *visitor) const override final\n" + "void FormFactorTetrahedron::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -120764,19 +120630,19 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorTetrahedron_getBaseEdge", _wrap_FormFactorTetrahedron_getBaseEdge, METH_VARARGS, (char *)"\n" "FormFactorTetrahedron_getBaseEdge(FormFactorTetrahedron self) -> double\n" "\n" - "double FormFactorTetrahedron::getBaseEdge() const\n" + "double FormFactorTetrahedron::getBaseEdge() const \n" "\n" ""}, { (char *)"FormFactorTetrahedron_getHeight", _wrap_FormFactorTetrahedron_getHeight, METH_VARARGS, (char *)"\n" "FormFactorTetrahedron_getHeight(FormFactorTetrahedron self) -> double\n" "\n" - "double FormFactorTetrahedron::getHeight() const\n" + "double FormFactorTetrahedron::getHeight() const \n" "\n" ""}, { (char *)"FormFactorTetrahedron_getAlpha", _wrap_FormFactorTetrahedron_getAlpha, METH_VARARGS, (char *)"\n" "FormFactorTetrahedron_getAlpha(FormFactorTetrahedron self) -> double\n" "\n" - "double FormFactorTetrahedron::getAlpha() const\n" + "double FormFactorTetrahedron::getAlpha() const \n" "\n" ""}, { (char *)"delete_FormFactorTetrahedron", _wrap_delete_FormFactorTetrahedron, METH_VARARGS, (char *)"delete_FormFactorTetrahedron(FormFactorTetrahedron self)"}, @@ -120801,7 +120667,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorTruncatedCube_clone", _wrap_FormFactorTruncatedCube_clone, METH_VARARGS, (char *)"\n" "FormFactorTruncatedCube_clone(FormFactorTruncatedCube self) -> FormFactorTruncatedCube\n" "\n" - "FormFactorTruncatedCube* FormFactorTruncatedCube::clone() const override final\n" + "FormFactorTruncatedCube* FormFactorTruncatedCube::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -120809,7 +120675,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorTruncatedCube_accept", _wrap_FormFactorTruncatedCube_accept, METH_VARARGS, (char *)"\n" "FormFactorTruncatedCube_accept(FormFactorTruncatedCube self, INodeVisitor visitor)\n" "\n" - "void FormFactorTruncatedCube::accept(INodeVisitor *visitor) const override final\n" + "void FormFactorTruncatedCube::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -120817,13 +120683,13 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorTruncatedCube_getLength", _wrap_FormFactorTruncatedCube_getLength, METH_VARARGS, (char *)"\n" "FormFactorTruncatedCube_getLength(FormFactorTruncatedCube self) -> double\n" "\n" - "double FormFactorTruncatedCube::getLength() const\n" + "double FormFactorTruncatedCube::getLength() const \n" "\n" ""}, { (char *)"FormFactorTruncatedCube_getRemovedLength", _wrap_FormFactorTruncatedCube_getRemovedLength, METH_VARARGS, (char *)"\n" "FormFactorTruncatedCube_getRemovedLength(FormFactorTruncatedCube self) -> double\n" "\n" - "double FormFactorTruncatedCube::getRemovedLength() const\n" + "double FormFactorTruncatedCube::getRemovedLength() const \n" "\n" ""}, { (char *)"delete_FormFactorTruncatedCube", _wrap_delete_FormFactorTruncatedCube, METH_VARARGS, (char *)"delete_FormFactorTruncatedCube(FormFactorTruncatedCube self)"}, @@ -120852,7 +120718,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorTruncatedSphere_clone", _wrap_FormFactorTruncatedSphere_clone, METH_VARARGS, (char *)"\n" "FormFactorTruncatedSphere_clone(FormFactorTruncatedSphere self) -> FormFactorTruncatedSphere\n" "\n" - "FormFactorTruncatedSphere* FormFactorTruncatedSphere::clone() const override final\n" + "FormFactorTruncatedSphere* FormFactorTruncatedSphere::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -120860,7 +120726,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorTruncatedSphere_accept", _wrap_FormFactorTruncatedSphere_accept, METH_VARARGS, (char *)"\n" "FormFactorTruncatedSphere_accept(FormFactorTruncatedSphere self, INodeVisitor visitor)\n" "\n" - "void FormFactorTruncatedSphere::accept(INodeVisitor *visitor) const override final\n" + "void FormFactorTruncatedSphere::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -120868,25 +120734,25 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorTruncatedSphere_getHeight", _wrap_FormFactorTruncatedSphere_getHeight, METH_VARARGS, (char *)"\n" "FormFactorTruncatedSphere_getHeight(FormFactorTruncatedSphere self) -> double\n" "\n" - "double FormFactorTruncatedSphere::getHeight() const\n" + "double FormFactorTruncatedSphere::getHeight() const \n" "\n" ""}, { (char *)"FormFactorTruncatedSphere_getRadius", _wrap_FormFactorTruncatedSphere_getRadius, METH_VARARGS, (char *)"\n" "FormFactorTruncatedSphere_getRadius(FormFactorTruncatedSphere self) -> double\n" "\n" - "double FormFactorTruncatedSphere::getRadius() const\n" + "double FormFactorTruncatedSphere::getRadius() const \n" "\n" ""}, { (char *)"FormFactorTruncatedSphere_getRemovedTop", _wrap_FormFactorTruncatedSphere_getRemovedTop, METH_VARARGS, (char *)"\n" "FormFactorTruncatedSphere_getRemovedTop(FormFactorTruncatedSphere self) -> double\n" "\n" - "double FormFactorTruncatedSphere::getRemovedTop() const\n" + "double FormFactorTruncatedSphere::getRemovedTop() const \n" "\n" ""}, { (char *)"FormFactorTruncatedSphere_radialExtension", _wrap_FormFactorTruncatedSphere_radialExtension, METH_VARARGS, (char *)"\n" "FormFactorTruncatedSphere_radialExtension(FormFactorTruncatedSphere self) -> double\n" "\n" - "double FormFactorTruncatedSphere::radialExtension() const override final\n" + "double FormFactorTruncatedSphere::radialExtension() const overridefinal\n" "\n" "Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations \n" "\n" @@ -120894,7 +120760,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorTruncatedSphere_evaluate_for_q", _wrap_FormFactorTruncatedSphere_evaluate_for_q, METH_VARARGS, (char *)"\n" "FormFactorTruncatedSphere_evaluate_for_q(FormFactorTruncatedSphere self, cvector_t q) -> complex_t\n" "\n" - "complex_t FormFactorTruncatedSphere::evaluate_for_q(cvector_t q) const override final\n" + "complex_t FormFactorTruncatedSphere::evaluate_for_q(cvector_t q) const overridefinal\n" "\n" "Complex formfactor. \n" "\n" @@ -120928,7 +120794,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorTruncatedSpheroid_clone", _wrap_FormFactorTruncatedSpheroid_clone, METH_VARARGS, (char *)"\n" "FormFactorTruncatedSpheroid_clone(FormFactorTruncatedSpheroid self) -> FormFactorTruncatedSpheroid\n" "\n" - "FormFactorTruncatedSpheroid* FormFactorTruncatedSpheroid::clone() const override final\n" + "FormFactorTruncatedSpheroid* FormFactorTruncatedSpheroid::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -120936,7 +120802,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorTruncatedSpheroid_accept", _wrap_FormFactorTruncatedSpheroid_accept, METH_VARARGS, (char *)"\n" "FormFactorTruncatedSpheroid_accept(FormFactorTruncatedSpheroid self, INodeVisitor visitor)\n" "\n" - "void FormFactorTruncatedSpheroid::accept(INodeVisitor *visitor) const override final\n" + "void FormFactorTruncatedSpheroid::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -120944,31 +120810,31 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorTruncatedSpheroid_getRadius", _wrap_FormFactorTruncatedSpheroid_getRadius, METH_VARARGS, (char *)"\n" "FormFactorTruncatedSpheroid_getRadius(FormFactorTruncatedSpheroid self) -> double\n" "\n" - "double FormFactorTruncatedSpheroid::getRadius() const\n" + "double FormFactorTruncatedSpheroid::getRadius() const \n" "\n" ""}, { (char *)"FormFactorTruncatedSpheroid_getHeight", _wrap_FormFactorTruncatedSpheroid_getHeight, METH_VARARGS, (char *)"\n" "FormFactorTruncatedSpheroid_getHeight(FormFactorTruncatedSpheroid self) -> double\n" "\n" - "double FormFactorTruncatedSpheroid::getHeight() const\n" + "double FormFactorTruncatedSpheroid::getHeight() const \n" "\n" ""}, { (char *)"FormFactorTruncatedSpheroid_getHeightFlattening", _wrap_FormFactorTruncatedSpheroid_getHeightFlattening, METH_VARARGS, (char *)"\n" "FormFactorTruncatedSpheroid_getHeightFlattening(FormFactorTruncatedSpheroid self) -> double\n" "\n" - "double FormFactorTruncatedSpheroid::getHeightFlattening() const\n" + "double FormFactorTruncatedSpheroid::getHeightFlattening() const \n" "\n" ""}, { (char *)"FormFactorTruncatedSpheroid_getRemovedTop", _wrap_FormFactorTruncatedSpheroid_getRemovedTop, METH_VARARGS, (char *)"\n" "FormFactorTruncatedSpheroid_getRemovedTop(FormFactorTruncatedSpheroid self) -> double\n" "\n" - "double FormFactorTruncatedSpheroid::getRemovedTop() const\n" + "double FormFactorTruncatedSpheroid::getRemovedTop() const \n" "\n" ""}, { (char *)"FormFactorTruncatedSpheroid_radialExtension", _wrap_FormFactorTruncatedSpheroid_radialExtension, METH_VARARGS, (char *)"\n" "FormFactorTruncatedSpheroid_radialExtension(FormFactorTruncatedSpheroid self) -> double\n" "\n" - "double FormFactorTruncatedSpheroid::radialExtension() const override final\n" + "double FormFactorTruncatedSpheroid::radialExtension() const overridefinal\n" "\n" "Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations \n" "\n" @@ -120976,7 +120842,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorTruncatedSpheroid_evaluate_for_q", _wrap_FormFactorTruncatedSpheroid_evaluate_for_q, METH_VARARGS, (char *)"\n" "FormFactorTruncatedSpheroid_evaluate_for_q(FormFactorTruncatedSpheroid self, cvector_t q) -> complex_t\n" "\n" - "complex_t FormFactorTruncatedSpheroid::evaluate_for_q(cvector_t q) const override final\n" + "complex_t FormFactorTruncatedSpheroid::evaluate_for_q(cvector_t q) const overridefinal\n" "\n" "Returns scattering amplitude for complex scattering wavevector q=k_i-k_f. This method is public only for convenience of plotting form factors in Python. \n" "\n" @@ -120992,13 +120858,13 @@ static PyMethodDef SwigMethods[] = { { (char *)"delete_FormFactorWeighted", _wrap_delete_FormFactorWeighted, METH_VARARGS, (char *)"\n" "delete_FormFactorWeighted(FormFactorWeighted self)\n" "\n" - "FormFactorWeighted::~FormFactorWeighted() override final\n" + "FormFactorWeighted::~FormFactorWeighted() overridefinal\n" "\n" ""}, { (char *)"FormFactorWeighted_clone", _wrap_FormFactorWeighted_clone, METH_VARARGS, (char *)"\n" "FormFactorWeighted_clone(FormFactorWeighted self) -> FormFactorWeighted\n" "\n" - "FormFactorWeighted * FormFactorWeighted::clone() const override final\n" + "FormFactorWeighted * FormFactorWeighted::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -121006,7 +120872,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorWeighted_accept", _wrap_FormFactorWeighted_accept, METH_VARARGS, (char *)"\n" "FormFactorWeighted_accept(FormFactorWeighted self, INodeVisitor visitor)\n" "\n" - "void FormFactorWeighted::accept(INodeVisitor *visitor) const override final\n" + "void FormFactorWeighted::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -121014,7 +120880,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorWeighted_radialExtension", _wrap_FormFactorWeighted_radialExtension, METH_VARARGS, (char *)"\n" "FormFactorWeighted_radialExtension(FormFactorWeighted self) -> double\n" "\n" - "double FormFactorWeighted::radialExtension() const override final\n" + "double FormFactorWeighted::radialExtension() const overridefinal\n" "\n" "Returns the (approximate in some cases) radial size of the particle of this form factor's shape. This is used for SSCA calculations \n" "\n" @@ -121022,7 +120888,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorWeighted_bottomZ", _wrap_FormFactorWeighted_bottomZ, METH_VARARGS, (char *)"\n" "FormFactorWeighted_bottomZ(FormFactorWeighted self, IRotation rotation) -> double\n" "\n" - "double FormFactorWeighted::bottomZ(const IRotation &rotation) const override final\n" + "double FormFactorWeighted::bottomZ(const IRotation &rotation) const overridefinal\n" "\n" "Returns the z-coordinate of the lowest point in this shape after a given rotation. \n" "\n" @@ -121030,7 +120896,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorWeighted_topZ", _wrap_FormFactorWeighted_topZ, METH_VARARGS, (char *)"\n" "FormFactorWeighted_topZ(FormFactorWeighted self, IRotation rotation) -> double\n" "\n" - "double FormFactorWeighted::topZ(const IRotation &rotation) const override final\n" + "double FormFactorWeighted::topZ(const IRotation &rotation) const overridefinal\n" "\n" "Returns the z-coordinate of the lowest point in this shape after a given rotation. \n" "\n" @@ -121045,7 +120911,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorWeighted_setAmbientMaterial", _wrap_FormFactorWeighted_setAmbientMaterial, METH_VARARGS, (char *)"\n" "FormFactorWeighted_setAmbientMaterial(FormFactorWeighted self, Material material)\n" "\n" - "void FormFactorWeighted::setAmbientMaterial(Material material) override final\n" + "void FormFactorWeighted::setAmbientMaterial(Material material) overridefinal\n" "\n" "Passes the material in which this particle is embedded. \n" "\n" @@ -121053,7 +120919,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FormFactorWeighted_evaluate", _wrap_FormFactorWeighted_evaluate, METH_VARARGS, (char *)"\n" "FormFactorWeighted_evaluate(FormFactorWeighted self, WavevectorInfo wavevectors) -> complex_t\n" "\n" - "complex_t FormFactorWeighted::evaluate(const WavevectorInfo &wavevectors) const override final\n" + "complex_t FormFactorWeighted::evaluate(const WavevectorInfo &wavevectors) const overridefinal\n" "\n" "Returns scattering amplitude for complex wavevectors ki, kf. \n" "\n" @@ -121111,7 +120977,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"Simulation_getBeamIntensity", _wrap_Simulation_getBeamIntensity, METH_VARARGS, (char *)"\n" "Simulation_getBeamIntensity(Simulation self) -> double\n" "\n" - "double Simulation::getBeamIntensity() const\n" + "double Simulation::getBeamIntensity() const \n" "\n" ""}, { (char *)"Simulation_setBeamPolarization", _wrap_Simulation_setBeamPolarization, METH_VARARGS, (char *)"\n" @@ -121153,7 +121019,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"Simulation_sample", _wrap_Simulation_sample, METH_VARARGS, (char *)"\n" "Simulation_sample(Simulation self) -> MultiLayer\n" "\n" - "const MultiLayer * Simulation::sample() const\n" + "const MultiLayer * Simulation::sample() const \n" "\n" ""}, { (char *)"Simulation_setSampleBuilderCpp", _wrap_Simulation_setSampleBuilderCpp, METH_VARARGS, (char *)"\n" @@ -121171,7 +121037,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"Simulation_background", _wrap_Simulation_background, METH_VARARGS, (char *)"\n" "Simulation_background(Simulation self) -> IBackground\n" "\n" - "const IBackground* Simulation::background() const\n" + "const IBackground* Simulation::background() const \n" "\n" ""}, { (char *)"Simulation_numberOfSimulationElements", _wrap_Simulation_numberOfSimulationElements, METH_VARARGS, (char *)"\n" @@ -121201,7 +121067,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"Simulation_getDistributionHandler", _wrap_Simulation_getDistributionHandler, METH_VARARGS, (char *)"\n" "Simulation_getDistributionHandler(Simulation self) -> DistributionHandler const &\n" "\n" - "const DistributionHandler& Simulation::getDistributionHandler() const\n" + "const DistributionHandler& Simulation::getDistributionHandler() const \n" "\n" ""}, { (char *)"Simulation_setOptions", _wrap_Simulation_setOptions, METH_VARARGS, (char *)"\n" @@ -121281,28 +121147,82 @@ static PyMethodDef SwigMethods[] = { "upper edge of last alpha-bin \n" "\n" ""}, - { (char *)"Simulation2D_setDetector", _wrap_Simulation2D_setDetector, METH_VARARGS, (char *)"Simulation2D_setDetector(Simulation2D self, IDetector2D detector)"}, - { (char *)"Simulation2D_result", _wrap_Simulation2D_result, METH_VARARGS, (char *)"Simulation2D_result(Simulation2D self) -> SimulationResult"}, + { (char *)"Simulation2D_setDetector", _wrap_Simulation2D_setDetector, METH_VARARGS, (char *)"\n" + "Simulation2D_setDetector(Simulation2D self, IDetector2D detector)\n" + "\n" + "void Simulation2D::setDetector(const IDetector2D &detector)\n" + "\n" + "Sets the detector (axes can be overwritten later) \n" + "\n" + ""}, + { (char *)"Simulation2D_result", _wrap_Simulation2D_result, METH_VARARGS, (char *)"\n" + "Simulation2D_result(Simulation2D self) -> SimulationResult\n" + "\n" + "virtual SimulationResult Simulation2D::result() const =0\n" + "\n" + "Returns the results of the simulation in a format that supports unit conversion and export to numpy arrays \n" + "\n" + ""}, { (char *)"Simulation2D_getDetectorIntensity", _wrap_Simulation2D_getDetectorIntensity, METH_VARARGS, (char *)"\n" "getDetectorIntensity(AxesUnits units_type) -> IntensityData\n" "Simulation2D_getDetectorIntensity(Simulation2D self) -> IntensityData\n" "\n" - "virtual OutputData<double>* Simulation::getDetectorIntensity(AxesUnits units_type=AxesUnits::DEFAULT) const =0\n" + "OutputData< double > * Simulation2D::getDetectorIntensity(AxesUnits units_type=AxesUnits::DEFAULT) const override\n" "\n" - "Clone simulated intensity map. \n" + "Returns clone of the detector intensity map with detector resolution applied. \n" "\n" ""}, { (char *)"Simulation2D_getIntensityData", _wrap_Simulation2D_getIntensityData, METH_VARARGS, (char *)"\n" "getIntensityData(AxesUnits units_type) -> Histogram2D\n" "Simulation2D_getIntensityData(Simulation2D self) -> Histogram2D\n" + "\n" + "Histogram2D * Simulation2D::getIntensityData(AxesUnits units_type=AxesUnits::DEFAULT) const\n" + "\n" + "Returns histogram representing intensity map in requested axes units. \n" + "\n" + ""}, + { (char *)"Simulation2D_removeMasks", _wrap_Simulation2D_removeMasks, METH_VARARGS, (char *)"\n" + "Simulation2D_removeMasks(Simulation2D self)\n" + "\n" + "void Simulation2D::removeMasks()\n" + "\n" + "removes all masks from the detector \n" + "\n" ""}, - { (char *)"Simulation2D_removeMasks", _wrap_Simulation2D_removeMasks, METH_VARARGS, (char *)"Simulation2D_removeMasks(Simulation2D self)"}, { (char *)"Simulation2D_addMask", _wrap_Simulation2D_addMask, METH_VARARGS, (char *)"\n" "addMask(IShape2D shape, bool mask_value=True)\n" "Simulation2D_addMask(Simulation2D self, IShape2D shape)\n" + "\n" + "void Simulation2D::addMask(const IShape2D &shape, bool mask_value=true)\n" + "\n" + "Adds mask of given shape to the stack of detector masks. The mask value 'true' means that the channel will be excluded from the simulation. The mask which is added last has priority.\n" + "\n" + "Parameters:\n" + "-----------\n" + "\n" + "shape: \n" + "The shape of mask ( Rectangle, Polygon, Line, Ellipse)\n" + "\n" + "mask_value: \n" + "The value of mask \n" + "\n" + ""}, + { (char *)"Simulation2D_maskAll", _wrap_Simulation2D_maskAll, METH_VARARGS, (char *)"\n" + "Simulation2D_maskAll(Simulation2D self)\n" + "\n" + "void Simulation2D::maskAll()\n" + "\n" + "Put the mask for all detector channels (i.e. exclude whole detector from the analysis) \n" + "\n" + ""}, + { (char *)"Simulation2D_setRegionOfInterest", _wrap_Simulation2D_setRegionOfInterest, METH_VARARGS, (char *)"\n" + "Simulation2D_setRegionOfInterest(Simulation2D self, double xlow, double ylow, double xup, double yup)\n" + "\n" + "void Simulation2D::setRegionOfInterest(double xlow, double ylow, double xup, double yup)\n" + "\n" + "Sets rectangular region of interest with lower left and upper right corners defined. \n" + "\n" ""}, - { (char *)"Simulation2D_maskAll", _wrap_Simulation2D_maskAll, METH_VARARGS, (char *)"Simulation2D_maskAll(Simulation2D self)"}, - { (char *)"Simulation2D_setRegionOfInterest", _wrap_Simulation2D_setRegionOfInterest, METH_VARARGS, (char *)"Simulation2D_setRegionOfInterest(Simulation2D self, double xlow, double ylow, double xup, double yup)"}, { (char *)"Simulation2D_swigregister", Simulation2D_swigregister, METH_VARARGS, NULL}, { (char *)"new_SimulationOptions", _wrap_new_SimulationOptions, METH_VARARGS, (char *)"\n" "new_SimulationOptions() -> SimulationOptions\n" @@ -121313,13 +121233,13 @@ static PyMethodDef SwigMethods[] = { { (char *)"SimulationOptions_isIntegrate", _wrap_SimulationOptions_isIntegrate, METH_VARARGS, (char *)"\n" "SimulationOptions_isIntegrate(SimulationOptions self) -> bool\n" "\n" - "bool SimulationOptions::isIntegrate() const\n" + "bool SimulationOptions::isIntegrate() const \n" "\n" ""}, { (char *)"SimulationOptions_getMcPoints", _wrap_SimulationOptions_getMcPoints, METH_VARARGS, (char *)"\n" "SimulationOptions_getMcPoints(SimulationOptions self) -> size_t\n" "\n" - "size_t SimulationOptions::getMcPoints() const\n" + "size_t SimulationOptions::getMcPoints() const \n" "\n" ""}, { (char *)"SimulationOptions_setMonteCarloIntegration", _wrap_SimulationOptions_setMonteCarloIntegration, METH_VARARGS, (char *)"\n" @@ -121352,7 +121272,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"SimulationOptions_getNumberOfThreads", _wrap_SimulationOptions_getNumberOfThreads, METH_VARARGS, (char *)"\n" "SimulationOptions_getNumberOfThreads(SimulationOptions self) -> unsigned int\n" "\n" - "unsigned SimulationOptions::getNumberOfThreads() const\n" + "unsigned SimulationOptions::getNumberOfThreads() const \n" "\n" ""}, { (char *)"SimulationOptions_setNumberOfBatches", _wrap_SimulationOptions_setNumberOfBatches, METH_VARARGS, (char *)"\n" @@ -121366,13 +121286,13 @@ static PyMethodDef SwigMethods[] = { { (char *)"SimulationOptions_getNumberOfBatches", _wrap_SimulationOptions_getNumberOfBatches, METH_VARARGS, (char *)"\n" "SimulationOptions_getNumberOfBatches(SimulationOptions self) -> unsigned int\n" "\n" - "unsigned SimulationOptions::getNumberOfBatches() const\n" + "unsigned SimulationOptions::getNumberOfBatches() const \n" "\n" ""}, { (char *)"SimulationOptions_getCurrentBatch", _wrap_SimulationOptions_getCurrentBatch, METH_VARARGS, (char *)"\n" "SimulationOptions_getCurrentBatch(SimulationOptions self) -> unsigned int\n" "\n" - "unsigned SimulationOptions::getCurrentBatch() const\n" + "unsigned SimulationOptions::getCurrentBatch() const \n" "\n" ""}, { (char *)"SimulationOptions_setThreadInfo", _wrap_SimulationOptions_setThreadInfo, METH_VARARGS, (char *)"\n" @@ -121386,7 +121306,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"SimulationOptions_getHardwareConcurrency", _wrap_SimulationOptions_getHardwareConcurrency, METH_VARARGS, (char *)"\n" "SimulationOptions_getHardwareConcurrency(SimulationOptions self) -> unsigned int\n" "\n" - "unsigned SimulationOptions::getHardwareConcurrency() const\n" + "unsigned SimulationOptions::getHardwareConcurrency() const \n" "\n" ""}, { (char *)"SimulationOptions_setIncludeSpecular", _wrap_SimulationOptions_setIncludeSpecular, METH_VARARGS, (char *)"\n" @@ -121398,7 +121318,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"SimulationOptions_includeSpecular", _wrap_SimulationOptions_includeSpecular, METH_VARARGS, (char *)"\n" "SimulationOptions_includeSpecular(SimulationOptions self) -> bool\n" "\n" - "bool SimulationOptions::includeSpecular() const\n" + "bool SimulationOptions::includeSpecular() const \n" "\n" ""}, { (char *)"SimulationOptions_setUseAvgMaterials", _wrap_SimulationOptions_setUseAvgMaterials, METH_VARARGS, (char *)"\n" @@ -121410,7 +121330,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"SimulationOptions_useAvgMaterials", _wrap_SimulationOptions_useAvgMaterials, METH_VARARGS, (char *)"\n" "SimulationOptions_useAvgMaterials(SimulationOptions self) -> bool\n" "\n" - "bool SimulationOptions::useAvgMaterials() const\n" + "bool SimulationOptions::useAvgMaterials() const \n" "\n" ""}, { (char *)"delete_SimulationOptions", _wrap_delete_SimulationOptions, METH_VARARGS, (char *)"delete_SimulationOptions(SimulationOptions self)"}, @@ -121426,7 +121346,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"delete_GISASSimulation", _wrap_delete_GISASSimulation, METH_VARARGS, (char *)"\n" "delete_GISASSimulation(GISASSimulation self)\n" "\n" - "GISASSimulation::~GISASSimulation() final\n" + "GISASSimulation::~GISASSimulation()\n" "\n" ""}, { (char *)"GISASSimulation_clone", _wrap_GISASSimulation_clone, METH_VARARGS, (char *)"\n" @@ -121438,7 +121358,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"GISASSimulation_accept", _wrap_GISASSimulation_accept, METH_VARARGS, (char *)"\n" "GISASSimulation_accept(GISASSimulation self, INodeVisitor visitor)\n" "\n" - "void GISASSimulation::accept(INodeVisitor *visitor) const final\n" + "void GISASSimulation::accept(INodeVisitor *visitor) const override\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -121446,7 +121366,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"GISASSimulation_prepareSimulation", _wrap_GISASSimulation_prepareSimulation, METH_VARARGS, (char *)"\n" "GISASSimulation_prepareSimulation(GISASSimulation self)\n" "\n" - "void GISASSimulation::prepareSimulation() final\n" + "void GISASSimulation::prepareSimulation() override\n" "\n" "Put into a clean state for running a simulation. \n" "\n" @@ -121454,12 +121374,19 @@ static PyMethodDef SwigMethods[] = { { (char *)"GISASSimulation_numberOfSimulationElements", _wrap_GISASSimulation_numberOfSimulationElements, METH_VARARGS, (char *)"\n" "GISASSimulation_numberOfSimulationElements(GISASSimulation self) -> size_t\n" "\n" - "size_t GISASSimulation::numberOfSimulationElements() const final\n" + "size_t GISASSimulation::numberOfSimulationElements() const override\n" "\n" "Gets the number of elements this simulation needs to calculate. \n" "\n" ""}, - { (char *)"GISASSimulation_result", _wrap_GISASSimulation_result, METH_VARARGS, (char *)"GISASSimulation_result(GISASSimulation self) -> SimulationResult"}, + { (char *)"GISASSimulation_result", _wrap_GISASSimulation_result, METH_VARARGS, (char *)"\n" + "GISASSimulation_result(GISASSimulation self) -> SimulationResult\n" + "\n" + "SimulationResult GISASSimulation::result() const override\n" + "\n" + "Returns the results of the simulation in a format that supports unit conversion and export to numpy arrays \n" + "\n" + ""}, { (char *)"GISASSimulation_setBeamParameters", _wrap_GISASSimulation_setBeamParameters, METH_VARARGS, (char *)"\n" "GISASSimulation_setBeamParameters(GISASSimulation self, double wavelength, double alpha_i, double phi_i)\n" "\n" @@ -122046,13 +121973,13 @@ static PyMethodDef SwigMethods[] = { { (char *)"ConstantBackground_clone", _wrap_ConstantBackground_clone, METH_VARARGS, (char *)"\n" "ConstantBackground_clone(ConstantBackground self) -> ConstantBackground\n" "\n" - "ConstantBackground * ConstantBackground::clone() const override final\n" + "ConstantBackground * ConstantBackground::clone() const overridefinal\n" "\n" ""}, { (char *)"ConstantBackground_backgroundValue", _wrap_ConstantBackground_backgroundValue, METH_VARARGS, (char *)"\n" "ConstantBackground_backgroundValue(ConstantBackground self) -> double\n" "\n" - "double ConstantBackground::backgroundValue() const\n" + "double ConstantBackground::backgroundValue() const \n" "\n" ""}, { (char *)"ConstantBackground_accept", _wrap_ConstantBackground_accept, METH_VARARGS, (char *)"\n" @@ -122066,7 +121993,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"ConstantBackground_addBackGround", _wrap_ConstantBackground_addBackGround, METH_VARARGS, (char *)"\n" "ConstantBackground_addBackGround(ConstantBackground self, double intensity) -> double\n" "\n" - "double ConstantBackground::addBackGround(double intensity) const override final\n" + "double ConstantBackground::addBackGround(double intensity) const overridefinal\n" "\n" ""}, { (char *)"ConstantBackground_swigregister", ConstantBackground_swigregister, METH_VARARGS, NULL}, @@ -122105,7 +122032,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"IDetector_getAxis", _wrap_IDetector_getAxis, METH_VARARGS, (char *)"\n" "IDetector_getAxis(IDetector self, size_t index) -> IAxis\n" "\n" - "const IAxis & IDetector::getAxis(size_t index) const\n" + "const IAxis & IDetector::getAxis(size_t index) const \n" "\n" ""}, { (char *)"IDetector_dimension", _wrap_IDetector_dimension, METH_VARARGS, (char *)"\n" @@ -122536,7 +122463,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"IAbstractParticle_abundance", _wrap_IAbstractParticle_abundance, METH_VARARGS, (char *)"\n" "IAbstractParticle_abundance(IAbstractParticle self) -> double\n" "\n" - "double IAbstractParticle::abundance() const\n" + "double IAbstractParticle::abundance() const \n" "\n" ""}, { (char *)"IAbstractParticle_setAbundance", _wrap_IAbstractParticle_setAbundance, METH_VARARGS, (char *)"\n" @@ -122588,7 +122515,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"IParameterReal_getData", _wrap_IParameterReal_getData, METH_VARARGS, (char *)"\n" "IParameterReal_getData(IParameterReal self) -> double &\n" "\n" - "T& IParameter< T >::getData() const\n" + "T& IParameter< T >::getData() const \n" "\n" ""}, { (char *)"IParameterReal_setData", _wrap_IParameterReal_setData, METH_VARARGS, (char *)"\n" @@ -122684,7 +122611,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"IParticle_translate", _wrap_IParticle_translate, METH_VARARGS, (char *)"\n" "IParticle_translate(IParticle self, kvector_t translation)\n" "\n" - "void IParticle::translate(kvector_t translation) override final\n" + "void IParticle::translate(kvector_t translation) overridefinal\n" "\n" "Translates the particle. \n" "\n" @@ -122708,7 +122635,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"IParticle_rotate", _wrap_IParticle_rotate, METH_VARARGS, (char *)"\n" "IParticle_rotate(IParticle self, IRotation rotation)\n" "\n" - "void IParticle::rotate(const IRotation &rotation) override final\n" + "void IParticle::rotate(const IRotation &rotation) overridefinal\n" "\n" "Rotates the particle. \n" "\n" @@ -122925,7 +122852,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"RotationX_getAngle", _wrap_RotationX_getAngle, METH_VARARGS, (char *)"\n" "RotationX_getAngle(RotationX self) -> double\n" "\n" - "double RotationX::getAngle() const\n" + "double RotationX::getAngle() const \n" "\n" ""}, { (char *)"RotationX_getTransform3D", _wrap_RotationX_getTransform3D, METH_VARARGS, (char *)"\n" @@ -122979,7 +122906,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"RotationY_getAngle", _wrap_RotationY_getAngle, METH_VARARGS, (char *)"\n" "RotationY_getAngle(RotationY self) -> double\n" "\n" - "double RotationY::getAngle() const\n" + "double RotationY::getAngle() const \n" "\n" ""}, { (char *)"RotationY_getTransform3D", _wrap_RotationY_getTransform3D, METH_VARARGS, (char *)"\n" @@ -123034,7 +122961,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"RotationZ_getAngle", _wrap_RotationZ_getAngle, METH_VARARGS, (char *)"\n" "RotationZ_getAngle(RotationZ self) -> double\n" "\n" - "double RotationZ::getAngle() const\n" + "double RotationZ::getAngle() const \n" "\n" ""}, { (char *)"RotationZ_getTransform3D", _wrap_RotationZ_getTransform3D, METH_VARARGS, (char *)"\n" @@ -123094,19 +123021,19 @@ static PyMethodDef SwigMethods[] = { { (char *)"RotationEuler_getAlpha", _wrap_RotationEuler_getAlpha, METH_VARARGS, (char *)"\n" "RotationEuler_getAlpha(RotationEuler self) -> double\n" "\n" - "double RotationEuler::getAlpha() const\n" + "double RotationEuler::getAlpha() const \n" "\n" ""}, { (char *)"RotationEuler_getBeta", _wrap_RotationEuler_getBeta, METH_VARARGS, (char *)"\n" "RotationEuler_getBeta(RotationEuler self) -> double\n" "\n" - "double RotationEuler::getBeta() const\n" + "double RotationEuler::getBeta() const \n" "\n" ""}, { (char *)"RotationEuler_getGamma", _wrap_RotationEuler_getGamma, METH_VARARGS, (char *)"\n" "RotationEuler_getGamma(RotationEuler self) -> double\n" "\n" - "double RotationEuler::getGamma() const\n" + "double RotationEuler::getGamma() const \n" "\n" ""}, { (char *)"RotationEuler_getTransform3D", _wrap_RotationEuler_getTransform3D, METH_VARARGS, (char *)"\n" @@ -123153,13 +123080,13 @@ static PyMethodDef SwigMethods[] = { { (char *)"SimpleSelectionRule_clone", _wrap_SimpleSelectionRule_clone, METH_VARARGS, (char *)"\n" "SimpleSelectionRule_clone(SimpleSelectionRule self) -> SimpleSelectionRule\n" "\n" - "SimpleSelectionRule * SimpleSelectionRule::clone() const\n" + "SimpleSelectionRule * SimpleSelectionRule::clone() const \n" "\n" ""}, { (char *)"SimpleSelectionRule_coordinateSelected", _wrap_SimpleSelectionRule_coordinateSelected, METH_VARARGS, (char *)"\n" "SimpleSelectionRule_coordinateSelected(SimpleSelectionRule self, ivector_t const & coordinate) -> bool\n" "\n" - "bool SimpleSelectionRule::coordinateSelected(const ivector_t &coordinate) const\n" + "bool SimpleSelectionRule::coordinateSelected(const ivector_t &coordinate) const \n" "\n" ""}, { (char *)"SimpleSelectionRule_swigregister", SimpleSelectionRule_swigregister, METH_VARARGS, NULL}, @@ -123188,7 +123115,7 @@ static PyMethodDef SwigMethods[] = { "getBeam() -> Beam\n" "Instrument_getBeam(Instrument self) -> Beam\n" "\n" - "const Beam& Instrument::getBeam() const\n" + "const Beam& Instrument::getBeam() const \n" "\n" ""}, { (char *)"Instrument_setBeam", _wrap_Instrument_setBeam, METH_VARARGS, (char *)"\n" @@ -123239,7 +123166,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"Instrument_getDetectorMask", _wrap_Instrument_getDetectorMask, METH_VARARGS, (char *)"\n" "Instrument_getDetectorMask(Instrument self) -> DetectorMask\n" "\n" - "const DetectorMask * Instrument::getDetectorMask() const\n" + "const DetectorMask * Instrument::getDetectorMask() const \n" "\n" ""}, { (char *)"Instrument_getDetectorAxis", _wrap_Instrument_getDetectorAxis, METH_VARARGS, (char *)"\n" @@ -123452,7 +123379,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"InterferenceFunction1DLattice_getLatticeParameters", _wrap_InterferenceFunction1DLattice_getLatticeParameters, METH_VARARGS, (char *)"\n" "InterferenceFunction1DLattice_getLatticeParameters(InterferenceFunction1DLattice self) -> Lattice1DParameters\n" "\n" - "Lattice1DParameters InterferenceFunction1DLattice::getLatticeParameters() const\n" + "Lattice1DParameters InterferenceFunction1DLattice::getLatticeParameters() const \n" "\n" ""}, { (char *)"InterferenceFunction1DLattice_evaluate", _wrap_InterferenceFunction1DLattice_evaluate, METH_VARARGS, (char *)"\n" @@ -123545,7 +123472,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"InterferenceFunctionRadialParaCrystal_domainSize", _wrap_InterferenceFunctionRadialParaCrystal_domainSize, METH_VARARGS, (char *)"\n" "InterferenceFunctionRadialParaCrystal_domainSize(InterferenceFunctionRadialParaCrystal self) -> double\n" "\n" - "double InterferenceFunctionRadialParaCrystal::domainSize() const\n" + "double InterferenceFunctionRadialParaCrystal::domainSize() const \n" "\n" ""}, { (char *)"InterferenceFunctionRadialParaCrystal_evaluate", _wrap_InterferenceFunctionRadialParaCrystal_evaluate, METH_VARARGS, (char *)"\n" @@ -123559,7 +123486,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"InterferenceFunctionRadialParaCrystal_FTPDF", _wrap_InterferenceFunctionRadialParaCrystal_FTPDF, METH_VARARGS, (char *)"\n" "InterferenceFunctionRadialParaCrystal_FTPDF(InterferenceFunctionRadialParaCrystal self, double qpar) -> complex_t\n" "\n" - "complex_t InterferenceFunctionRadialParaCrystal::FTPDF(double qpar) const\n" + "complex_t InterferenceFunctionRadialParaCrystal::FTPDF(double qpar) const \n" "\n" ""}, { (char *)"InterferenceFunctionRadialParaCrystal_setProbabilityDistribution", _wrap_InterferenceFunctionRadialParaCrystal_setProbabilityDistribution, METH_VARARGS, (char *)"\n" @@ -123579,13 +123506,13 @@ static PyMethodDef SwigMethods[] = { { (char *)"InterferenceFunctionRadialParaCrystal_peakDistance", _wrap_InterferenceFunctionRadialParaCrystal_peakDistance, METH_VARARGS, (char *)"\n" "InterferenceFunctionRadialParaCrystal_peakDistance(InterferenceFunctionRadialParaCrystal self) -> double\n" "\n" - "double InterferenceFunctionRadialParaCrystal::peakDistance() const\n" + "double InterferenceFunctionRadialParaCrystal::peakDistance() const \n" "\n" ""}, { (char *)"InterferenceFunctionRadialParaCrystal_dampingLength", _wrap_InterferenceFunctionRadialParaCrystal_dampingLength, METH_VARARGS, (char *)"\n" "InterferenceFunctionRadialParaCrystal_dampingLength(InterferenceFunctionRadialParaCrystal self) -> double\n" "\n" - "double InterferenceFunctionRadialParaCrystal::dampingLength() const\n" + "double InterferenceFunctionRadialParaCrystal::dampingLength() const \n" "\n" ""}, { (char *)"InterferenceFunctionRadialParaCrystal_getChildren", _wrap_InterferenceFunctionRadialParaCrystal_getChildren, METH_VARARGS, (char *)"\n" @@ -123684,13 +123611,13 @@ static PyMethodDef SwigMethods[] = { { (char *)"InterferenceFunction2DLattice_integrationOverXi", _wrap_InterferenceFunction2DLattice_integrationOverXi, METH_VARARGS, (char *)"\n" "InterferenceFunction2DLattice_integrationOverXi(InterferenceFunction2DLattice self) -> bool\n" "\n" - "bool InterferenceFunction2DLattice::integrationOverXi() const\n" + "bool InterferenceFunction2DLattice::integrationOverXi() const \n" "\n" ""}, { (char *)"InterferenceFunction2DLattice_lattice", _wrap_InterferenceFunction2DLattice_lattice, METH_VARARGS, (char *)"\n" "InterferenceFunction2DLattice_lattice(InterferenceFunction2DLattice self) -> Lattice2D\n" "\n" - "const Lattice2D & InterferenceFunction2DLattice::lattice() const\n" + "const Lattice2D & InterferenceFunction2DLattice::lattice() const \n" "\n" ""}, { (char *)"InterferenceFunction2DLattice_getParticleDensity", _wrap_InterferenceFunction2DLattice_getParticleDensity, METH_VARARGS, (char *)"\n" @@ -123712,7 +123639,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"InterferenceFunction2DLattice_onChange", _wrap_InterferenceFunction2DLattice_onChange, METH_VARARGS, (char *)"\n" "InterferenceFunction2DLattice_onChange(InterferenceFunction2DLattice self)\n" "\n" - "void InterferenceFunction2DLattice::onChange() override final\n" + "void InterferenceFunction2DLattice::onChange() overridefinal\n" "\n" "Action to be taken in inherited class when a parameter has changed. \n" "\n" @@ -123843,7 +123770,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"InterferenceFunction2DParaCrystal_domainSizes", _wrap_InterferenceFunction2DParaCrystal_domainSizes, METH_VARARGS, (char *)"\n" "InterferenceFunction2DParaCrystal_domainSizes(InterferenceFunction2DParaCrystal self) -> vdouble1d_t\n" "\n" - "std::vector< double > InterferenceFunction2DParaCrystal::domainSizes() const\n" + "std::vector< double > InterferenceFunction2DParaCrystal::domainSizes() const \n" "\n" ""}, { (char *)"InterferenceFunction2DParaCrystal_setIntegrationOverXi", _wrap_InterferenceFunction2DParaCrystal_setIntegrationOverXi, METH_VARARGS, (char *)"\n" @@ -123863,19 +123790,19 @@ static PyMethodDef SwigMethods[] = { { (char *)"InterferenceFunction2DParaCrystal_integrationOverXi", _wrap_InterferenceFunction2DParaCrystal_integrationOverXi, METH_VARARGS, (char *)"\n" "InterferenceFunction2DParaCrystal_integrationOverXi(InterferenceFunction2DParaCrystal self) -> bool\n" "\n" - "bool InterferenceFunction2DParaCrystal::integrationOverXi() const\n" + "bool InterferenceFunction2DParaCrystal::integrationOverXi() const \n" "\n" ""}, { (char *)"InterferenceFunction2DParaCrystal_dampingLength", _wrap_InterferenceFunction2DParaCrystal_dampingLength, METH_VARARGS, (char *)"\n" "InterferenceFunction2DParaCrystal_dampingLength(InterferenceFunction2DParaCrystal self) -> double\n" "\n" - "double InterferenceFunction2DParaCrystal::dampingLength() const\n" + "double InterferenceFunction2DParaCrystal::dampingLength() const \n" "\n" ""}, { (char *)"InterferenceFunction2DParaCrystal_lattice", _wrap_InterferenceFunction2DParaCrystal_lattice, METH_VARARGS, (char *)"\n" "InterferenceFunction2DParaCrystal_lattice(InterferenceFunction2DParaCrystal self) -> Lattice2D\n" "\n" - "const Lattice2D & InterferenceFunction2DParaCrystal::lattice() const\n" + "const Lattice2D & InterferenceFunction2DParaCrystal::lattice() const \n" "\n" ""}, { (char *)"InterferenceFunction2DParaCrystal_getParticleDensity", _wrap_InterferenceFunction2DParaCrystal_getParticleDensity, METH_VARARGS, (char *)"\n" @@ -124251,13 +124178,13 @@ static PyMethodDef SwigMethods[] = { { (char *)"Lattice2D_rotationAngle", _wrap_Lattice2D_rotationAngle, METH_VARARGS, (char *)"\n" "Lattice2D_rotationAngle(Lattice2D self) -> double\n" "\n" - "double Lattice2D::rotationAngle() const\n" + "double Lattice2D::rotationAngle() const \n" "\n" ""}, { (char *)"Lattice2D_reciprocalBases", _wrap_Lattice2D_reciprocalBases, METH_VARARGS, (char *)"\n" "Lattice2D_reciprocalBases(Lattice2D self) -> Lattice2D::ReciprocalBases\n" "\n" - "Lattice2D::ReciprocalBases Lattice2D::reciprocalBases() const\n" + "Lattice2D::ReciprocalBases Lattice2D::reciprocalBases() const \n" "\n" ""}, { (char *)"Lattice2D_setRotationEnabled", _wrap_Lattice2D_setRotationEnabled, METH_VARARGS, (char *)"\n" @@ -124278,7 +124205,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"BasicLattice_clone", _wrap_BasicLattice_clone, METH_VARARGS, (char *)"\n" "BasicLattice_clone(BasicLattice self) -> BasicLattice\n" "\n" - "BasicLattice * BasicLattice::clone() const\n" + "BasicLattice * BasicLattice::clone() const \n" "\n" ""}, { (char *)"BasicLattice_accept", _wrap_BasicLattice_accept, METH_VARARGS, (char *)"\n" @@ -124292,25 +124219,25 @@ static PyMethodDef SwigMethods[] = { { (char *)"BasicLattice_length1", _wrap_BasicLattice_length1, METH_VARARGS, (char *)"\n" "BasicLattice_length1(BasicLattice self) -> double\n" "\n" - "virtual double BasicLattice::length1() const\n" + "virtual double BasicLattice::length1() const \n" "\n" ""}, { (char *)"BasicLattice_length2", _wrap_BasicLattice_length2, METH_VARARGS, (char *)"\n" "BasicLattice_length2(BasicLattice self) -> double\n" "\n" - "virtual double BasicLattice::length2() const\n" + "virtual double BasicLattice::length2() const \n" "\n" ""}, { (char *)"BasicLattice_latticeAngle", _wrap_BasicLattice_latticeAngle, METH_VARARGS, (char *)"\n" "BasicLattice_latticeAngle(BasicLattice self) -> double\n" "\n" - "virtual double BasicLattice::latticeAngle() const\n" + "virtual double BasicLattice::latticeAngle() const \n" "\n" ""}, { (char *)"BasicLattice_unitCellArea", _wrap_BasicLattice_unitCellArea, METH_VARARGS, (char *)"\n" "BasicLattice_unitCellArea(BasicLattice self) -> double\n" "\n" - "double BasicLattice::unitCellArea() const\n" + "double BasicLattice::unitCellArea() const \n" "\n" ""}, { (char *)"delete_BasicLattice", _wrap_delete_BasicLattice, METH_VARARGS, (char *)"delete_BasicLattice(BasicLattice self)"}, @@ -124325,7 +124252,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"SquareLattice_clone", _wrap_SquareLattice_clone, METH_VARARGS, (char *)"\n" "SquareLattice_clone(SquareLattice self) -> SquareLattice\n" "\n" - "SquareLattice * SquareLattice::clone() const\n" + "SquareLattice * SquareLattice::clone() const \n" "\n" ""}, { (char *)"SquareLattice_accept", _wrap_SquareLattice_accept, METH_VARARGS, (char *)"\n" @@ -124339,25 +124266,25 @@ static PyMethodDef SwigMethods[] = { { (char *)"SquareLattice_length1", _wrap_SquareLattice_length1, METH_VARARGS, (char *)"\n" "SquareLattice_length1(SquareLattice self) -> double\n" "\n" - "virtual double SquareLattice::length1() const\n" + "virtual double SquareLattice::length1() const \n" "\n" ""}, { (char *)"SquareLattice_length2", _wrap_SquareLattice_length2, METH_VARARGS, (char *)"\n" "SquareLattice_length2(SquareLattice self) -> double\n" "\n" - "virtual double SquareLattice::length2() const\n" + "virtual double SquareLattice::length2() const \n" "\n" ""}, { (char *)"SquareLattice_latticeAngle", _wrap_SquareLattice_latticeAngle, METH_VARARGS, (char *)"\n" "SquareLattice_latticeAngle(SquareLattice self) -> double\n" "\n" - "double SquareLattice::latticeAngle() const\n" + "double SquareLattice::latticeAngle() const \n" "\n" ""}, { (char *)"SquareLattice_unitCellArea", _wrap_SquareLattice_unitCellArea, METH_VARARGS, (char *)"\n" "SquareLattice_unitCellArea(SquareLattice self) -> double\n" "\n" - "double SquareLattice::unitCellArea() const\n" + "double SquareLattice::unitCellArea() const \n" "\n" ""}, { (char *)"delete_SquareLattice", _wrap_delete_SquareLattice, METH_VARARGS, (char *)"delete_SquareLattice(SquareLattice self)"}, @@ -124372,7 +124299,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"HexagonalLattice_clone", _wrap_HexagonalLattice_clone, METH_VARARGS, (char *)"\n" "HexagonalLattice_clone(HexagonalLattice self) -> HexagonalLattice\n" "\n" - "HexagonalLattice * HexagonalLattice::clone() const\n" + "HexagonalLattice * HexagonalLattice::clone() const \n" "\n" ""}, { (char *)"HexagonalLattice_accept", _wrap_HexagonalLattice_accept, METH_VARARGS, (char *)"\n" @@ -124386,25 +124313,25 @@ static PyMethodDef SwigMethods[] = { { (char *)"HexagonalLattice_length1", _wrap_HexagonalLattice_length1, METH_VARARGS, (char *)"\n" "HexagonalLattice_length1(HexagonalLattice self) -> double\n" "\n" - "virtual double HexagonalLattice::length1() const\n" + "virtual double HexagonalLattice::length1() const \n" "\n" ""}, { (char *)"HexagonalLattice_length2", _wrap_HexagonalLattice_length2, METH_VARARGS, (char *)"\n" "HexagonalLattice_length2(HexagonalLattice self) -> double\n" "\n" - "virtual double HexagonalLattice::length2() const\n" + "virtual double HexagonalLattice::length2() const \n" "\n" ""}, { (char *)"HexagonalLattice_latticeAngle", _wrap_HexagonalLattice_latticeAngle, METH_VARARGS, (char *)"\n" "HexagonalLattice_latticeAngle(HexagonalLattice self) -> double\n" "\n" - "double HexagonalLattice::latticeAngle() const\n" + "double HexagonalLattice::latticeAngle() const \n" "\n" ""}, { (char *)"HexagonalLattice_unitCellArea", _wrap_HexagonalLattice_unitCellArea, METH_VARARGS, (char *)"\n" "HexagonalLattice_unitCellArea(HexagonalLattice self) -> double\n" "\n" - "double HexagonalLattice::unitCellArea() const\n" + "double HexagonalLattice::unitCellArea() const \n" "\n" ""}, { (char *)"delete_HexagonalLattice", _wrap_delete_HexagonalLattice, METH_VARARGS, (char *)"delete_HexagonalLattice(HexagonalLattice self)"}, @@ -124436,7 +124363,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"Layer_clone", _wrap_Layer_clone, METH_VARARGS, (char *)"\n" "Layer_clone(Layer self) -> Layer\n" "\n" - "Layer * Layer::clone() const override final\n" + "Layer * Layer::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -124444,13 +124371,13 @@ static PyMethodDef SwigMethods[] = { { (char *)"Layer_cloneInvertB", _wrap_Layer_cloneInvertB, METH_VARARGS, (char *)"\n" "Layer_cloneInvertB(Layer self) -> Layer\n" "\n" - "Layer * Layer::cloneInvertB() const\n" + "Layer * Layer::cloneInvertB() const \n" "\n" ""}, { (char *)"Layer_accept", _wrap_Layer_accept, METH_VARARGS, (char *)"\n" "Layer_accept(Layer self, INodeVisitor visitor)\n" "\n" - "void Layer::accept(INodeVisitor *visitor) const override final\n" + "void Layer::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -124466,13 +124393,13 @@ static PyMethodDef SwigMethods[] = { { (char *)"Layer_thickness", _wrap_Layer_thickness, METH_VARARGS, (char *)"\n" "Layer_thickness(Layer self) -> double\n" "\n" - "double Layer::thickness() const\n" + "double Layer::thickness() const \n" "\n" ""}, { (char *)"Layer_material", _wrap_Layer_material, METH_VARARGS, (char *)"\n" "Layer_material(Layer self) -> Material\n" "\n" - "const Material* Layer::material() const override final\n" + "const Material* Layer::material() const overridefinal\n" "\n" "Returns nullptr, unless overwritten to return a specific material. \n" "\n" @@ -124492,19 +124419,19 @@ static PyMethodDef SwigMethods[] = { { (char *)"Layer_numberOfLayouts", _wrap_Layer_numberOfLayouts, METH_VARARGS, (char *)"\n" "Layer_numberOfLayouts(Layer self) -> size_t\n" "\n" - "size_t Layer::numberOfLayouts() const\n" + "size_t Layer::numberOfLayouts() const \n" "\n" ""}, { (char *)"Layer_layouts", _wrap_Layer_layouts, METH_VARARGS, (char *)"\n" "Layer_layouts(Layer self) -> std::vector< ILayout const *,std::allocator< ILayout const * > >\n" "\n" - "std::vector< const ILayout * > Layer::layouts() const\n" + "std::vector< const ILayout * > Layer::layouts() const \n" "\n" ""}, { (char *)"Layer_getChildren", _wrap_Layer_getChildren, METH_VARARGS, (char *)"\n" "Layer_getChildren(Layer self) -> swig_dummy_type_const_inode_vector\n" "\n" - "std::vector< const INode * > Layer::getChildren() const override final\n" + "std::vector< const INode * > Layer::getChildren() const overridefinal\n" "\n" "Returns a vector of children (const). \n" "\n" @@ -124525,13 +124452,13 @@ static PyMethodDef SwigMethods[] = { { (char *)"Layer_numberOfSlices", _wrap_Layer_numberOfSlices, METH_VARARGS, (char *)"\n" "Layer_numberOfSlices(Layer self) -> unsigned int\n" "\n" - "unsigned int Layer::numberOfSlices() const\n" + "unsigned int Layer::numberOfSlices() const \n" "\n" ""}, { (char *)"Layer_slice", _wrap_Layer_slice, METH_VARARGS, (char *)"\n" "Layer_slice(Layer self, ZLimits limits, Layer::ELayerType layer_type) -> SafePointerVector< Layer >\n" "\n" - "SafePointerVector< Layer > Layer::slice(ZLimits limits, ELayerType layer_type) const\n" + "SafePointerVector< Layer > Layer::slice(ZLimits limits, ELayerType layer_type) const \n" "\n" ""}, { (char *)"Layer_scalarReducedPotential", _wrap_Layer_scalarReducedPotential, METH_VARARGS, (char *)"\n" @@ -124667,7 +124594,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"Line_clone", _wrap_Line_clone, METH_VARARGS, (char *)"\n" "Line_clone(Line self) -> Line\n" "\n" - "Line* Line::clone() const\n" + "Line* Line::clone() const \n" "\n" ""}, { (char *)"Line_contains", _wrap_Line_contains, METH_VARARGS, (char *)"\n" @@ -124696,7 +124623,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"VerticalLine_clone", _wrap_VerticalLine_clone, METH_VARARGS, (char *)"\n" "VerticalLine_clone(VerticalLine self) -> VerticalLine\n" "\n" - "VerticalLine* VerticalLine::clone() const\n" + "VerticalLine* VerticalLine::clone() const \n" "\n" ""}, { (char *)"VerticalLine_contains", _wrap_VerticalLine_contains, METH_VARARGS, (char *)"\n" @@ -124711,7 +124638,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"VerticalLine_getXpos", _wrap_VerticalLine_getXpos, METH_VARARGS, (char *)"\n" "VerticalLine_getXpos(VerticalLine self) -> double\n" "\n" - "double VerticalLine::getXpos() const\n" + "double VerticalLine::getXpos() const \n" "\n" ""}, { (char *)"delete_VerticalLine", _wrap_delete_VerticalLine, METH_VARARGS, (char *)"delete_VerticalLine(VerticalLine self)"}, @@ -124731,7 +124658,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"HorizontalLine_clone", _wrap_HorizontalLine_clone, METH_VARARGS, (char *)"\n" "HorizontalLine_clone(HorizontalLine self) -> HorizontalLine\n" "\n" - "HorizontalLine* HorizontalLine::clone() const\n" + "HorizontalLine* HorizontalLine::clone() const \n" "\n" ""}, { (char *)"HorizontalLine_contains", _wrap_HorizontalLine_contains, METH_VARARGS, (char *)"\n" @@ -124746,7 +124673,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"HorizontalLine_getYpos", _wrap_HorizontalLine_getYpos, METH_VARARGS, (char *)"\n" "HorizontalLine_getYpos(HorizontalLine self) -> double\n" "\n" - "double HorizontalLine::getYpos() const\n" + "double HorizontalLine::getYpos() const \n" "\n" ""}, { (char *)"delete_HorizontalLine", _wrap_delete_HorizontalLine, METH_VARARGS, (char *)"delete_HorizontalLine(HorizontalLine self)"}, @@ -124795,7 +124722,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"Material_isMagneticMaterial", _wrap_Material_isMagneticMaterial, METH_VARARGS, (char *)"\n" "Material_isMagneticMaterial(Material self) -> bool\n" "\n" - "bool Material::isMagneticMaterial() const\n" + "bool Material::isMagneticMaterial() const \n" "\n" ""}, { (char *)"Material_getName", _wrap_Material_getName, METH_VARARGS, (char *)"\n" @@ -124849,7 +124776,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"Material_transformedMaterial", _wrap_Material_transformedMaterial, METH_VARARGS, (char *)"\n" "Material_transformedMaterial(Material self, Transform3D const & transform) -> Material\n" "\n" - "Material Material::transformedMaterial(const Transform3D &transform) const\n" + "Material Material::transformedMaterial(const Transform3D &transform) const \n" "\n" ""}, { (char *)"delete_Material", _wrap_delete_Material, METH_VARARGS, (char *)"delete_Material(Material self)"}, @@ -124938,7 +124865,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"MesoCrystal_clone", _wrap_MesoCrystal_clone, METH_VARARGS, (char *)"\n" "MesoCrystal_clone(MesoCrystal self) -> MesoCrystal\n" "\n" - "MesoCrystal * MesoCrystal::clone() const override final\n" + "MesoCrystal * MesoCrystal::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -124946,7 +124873,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"MesoCrystal_accept", _wrap_MesoCrystal_accept, METH_VARARGS, (char *)"\n" "MesoCrystal_accept(MesoCrystal self, INodeVisitor visitor)\n" "\n" - "void MesoCrystal::accept(INodeVisitor *visitor) const override final\n" + "void MesoCrystal::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -124954,7 +124881,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"MesoCrystal_createSlicedParticle", _wrap_MesoCrystal_createSlicedParticle, METH_VARARGS, (char *)"\n" "MesoCrystal_createSlicedParticle(MesoCrystal self, ZLimits limits) -> SlicedParticle\n" "\n" - "SlicedParticle MesoCrystal::createSlicedParticle(ZLimits limits) const override final\n" + "SlicedParticle MesoCrystal::createSlicedParticle(ZLimits limits) const overridefinal\n" "\n" "Create a sliced form factor for this particle. \n" "\n" @@ -124962,7 +124889,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"MesoCrystal_getChildren", _wrap_MesoCrystal_getChildren, METH_VARARGS, (char *)"\n" "MesoCrystal_getChildren(MesoCrystal self) -> swig_dummy_type_const_inode_vector\n" "\n" - "std::vector< const INode * > MesoCrystal::getChildren() const override final\n" + "std::vector< const INode * > MesoCrystal::getChildren() const overridefinal\n" "\n" "Returns a vector of children (const). \n" "\n" @@ -124983,7 +124910,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"MultiLayer_accept", _wrap_MultiLayer_accept, METH_VARARGS, (char *)"\n" "MultiLayer_accept(MultiLayer self, INodeVisitor visitor)\n" "\n" - "void MultiLayer::accept(INodeVisitor *visitor) const final override\n" + "void MultiLayer::accept(INodeVisitor *visitor) const finaloverride\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -124991,13 +124918,13 @@ static PyMethodDef SwigMethods[] = { { (char *)"MultiLayer_numberOfLayers", _wrap_MultiLayer_numberOfLayers, METH_VARARGS, (char *)"\n" "MultiLayer_numberOfLayers(MultiLayer self) -> size_t\n" "\n" - "size_t MultiLayer::numberOfLayers() const\n" + "size_t MultiLayer::numberOfLayers() const \n" "\n" ""}, { (char *)"MultiLayer_numberOfInterfaces", _wrap_MultiLayer_numberOfInterfaces, METH_VARARGS, (char *)"\n" "MultiLayer_numberOfInterfaces(MultiLayer self) -> size_t\n" "\n" - "size_t MultiLayer::numberOfInterfaces() const\n" + "size_t MultiLayer::numberOfInterfaces() const \n" "\n" ""}, { (char *)"MultiLayer_addLayer", _wrap_MultiLayer_addLayer, METH_VARARGS, (char *)"\n" @@ -125097,7 +125024,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"MultiLayer_clone", _wrap_MultiLayer_clone, METH_VARARGS, (char *)"\n" "MultiLayer_clone(MultiLayer self) -> MultiLayer\n" "\n" - "MultiLayer * MultiLayer::clone() const final override\n" + "MultiLayer * MultiLayer::clone() const finaloverride\n" "\n" "Returns a clone of multilayer with clones of all layers and recreated interfaces between layers \n" "\n" @@ -125187,7 +125114,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"MultiLayer_containsMagneticMaterial", _wrap_MultiLayer_containsMagneticMaterial, METH_VARARGS, (char *)"\n" "MultiLayer_containsMagneticMaterial(MultiLayer self) -> bool\n" "\n" - "bool MultiLayer::containsMagneticMaterial() const\n" + "bool MultiLayer::containsMagneticMaterial() const \n" "\n" ""}, { (char *)"MultiLayer_containsCompatibleMaterials", _wrap_MultiLayer_containsCompatibleMaterials, METH_VARARGS, (char *)"\n" @@ -125209,19 +125136,19 @@ static PyMethodDef SwigMethods[] = { { (char *)"MultiLayer_hasRoughness", _wrap_MultiLayer_hasRoughness, METH_VARARGS, (char *)"\n" "MultiLayer_hasRoughness(MultiLayer self) -> bool\n" "\n" - "bool MultiLayer::hasRoughness() const\n" + "bool MultiLayer::hasRoughness() const \n" "\n" ""}, { (char *)"MultiLayer_totalNofLayouts", _wrap_MultiLayer_totalNofLayouts, METH_VARARGS, (char *)"\n" "MultiLayer_totalNofLayouts(MultiLayer self) -> size_t\n" "\n" - "size_t MultiLayer::totalNofLayouts() const\n" + "size_t MultiLayer::totalNofLayouts() const \n" "\n" ""}, { (char *)"MultiLayer_getChildren", _wrap_MultiLayer_getChildren, METH_VARARGS, (char *)"\n" "MultiLayer_getChildren(MultiLayer self) -> swig_dummy_type_const_inode_vector\n" "\n" - "std::vector< const INode * > MultiLayer::getChildren() const final override\n" + "std::vector< const INode * > MultiLayer::getChildren() const finaloverride\n" "\n" "Returns a vector of children (const). \n" "\n" @@ -125271,7 +125198,14 @@ static PyMethodDef SwigMethods[] = { "Gets the number of elements this simulation needs to calculate. \n" "\n" ""}, - { (char *)"OffSpecSimulation_result", _wrap_OffSpecSimulation_result, METH_VARARGS, (char *)"OffSpecSimulation_result(OffSpecSimulation self) -> SimulationResult"}, + { (char *)"OffSpecSimulation_result", _wrap_OffSpecSimulation_result, METH_VARARGS, (char *)"\n" + "OffSpecSimulation_result(OffSpecSimulation self) -> SimulationResult\n" + "\n" + "SimulationResult OffSpecSimulation::result() const override\n" + "\n" + "Returns the results of the simulation in a format that supports unit conversion and export to numpy arrays \n" + "\n" + ""}, { (char *)"OffSpecSimulation_setBeamParameters", _wrap_OffSpecSimulation_setBeamParameters, METH_VARARGS, (char *)"\n" "OffSpecSimulation_setBeamParameters(OffSpecSimulation self, double arg3, IAxis alpha_axis, double phi_i)\n" "\n" @@ -125296,7 +125230,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"IntensityData_clone", _wrap_IntensityData_clone, METH_VARARGS, (char *)"\n" "IntensityData_clone(IntensityData self) -> IntensityData\n" "\n" - "OutputData< T > * OutputData< T >::clone() const\n" + "OutputData< T > * OutputData< T >::clone() const \n" "\n" ""}, { (char *)"IntensityData_copyFrom", _wrap_IntensityData_copyFrom, METH_VARARGS, (char *)"\n" @@ -125308,7 +125242,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"IntensityData_meanValues", _wrap_IntensityData_meanValues, METH_VARARGS, (char *)"\n" "IntensityData_meanValues(IntensityData self) -> IntensityData\n" "\n" - "OutputData< double > * OutputData< T >::meanValues() const\n" + "OutputData< double > * OutputData< T >::meanValues() const \n" "\n" ""}, { (char *)"IntensityData_addAxis", _wrap_IntensityData_addAxis, METH_VARARGS, (char *)"\n" @@ -125663,19 +125597,19 @@ static PyMethodDef SwigMethods[] = { { (char *)"ParameterDistribution_getLimits", _wrap_ParameterDistribution_getLimits, METH_VARARGS, (char *)"\n" "ParameterDistribution_getLimits(ParameterDistribution self) -> RealLimits\n" "\n" - "RealLimits ParameterDistribution::getLimits() const\n" + "RealLimits ParameterDistribution::getLimits() const \n" "\n" ""}, { (char *)"ParameterDistribution_getMinValue", _wrap_ParameterDistribution_getMinValue, METH_VARARGS, (char *)"\n" "ParameterDistribution_getMinValue(ParameterDistribution self) -> double\n" "\n" - "double ParameterDistribution::getMinValue() const\n" + "double ParameterDistribution::getMinValue() const \n" "\n" ""}, { (char *)"ParameterDistribution_getMaxValue", _wrap_ParameterDistribution_getMaxValue, METH_VARARGS, (char *)"\n" "ParameterDistribution_getMaxValue(ParameterDistribution self) -> double\n" "\n" - "double ParameterDistribution::getMaxValue() const\n" + "double ParameterDistribution::getMaxValue() const \n" "\n" ""}, { (char *)"ParameterDistribution_swigregister", ParameterDistribution_swigregister, METH_VARARGS, NULL}, @@ -125795,7 +125729,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"ParameterPool_parameterNames", _wrap_ParameterPool_parameterNames, METH_VARARGS, (char *)"\n" "ParameterPool_parameterNames(ParameterPool self) -> vector_string_t\n" "\n" - "std::vector< std::string > ParameterPool::parameterNames() const\n" + "std::vector< std::string > ParameterPool::parameterNames() const \n" "\n" ""}, { (char *)"ParameterPool_removeParameter", _wrap_ParameterPool_removeParameter, METH_VARARGS, (char *)"\n" @@ -125902,7 +125836,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"Particle_clone", _wrap_Particle_clone, METH_VARARGS, (char *)"\n" "Particle_clone(Particle self) -> Particle\n" "\n" - "Particle * Particle::clone() const override final\n" + "Particle * Particle::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -125910,7 +125844,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"Particle_accept", _wrap_Particle_accept, METH_VARARGS, (char *)"\n" "Particle_accept(Particle self, INodeVisitor visitor)\n" "\n" - "void Particle::accept(INodeVisitor *visitor) const override final\n" + "void Particle::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -125918,7 +125852,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"Particle_createSlicedParticle", _wrap_Particle_createSlicedParticle, METH_VARARGS, (char *)"\n" "Particle_createSlicedParticle(Particle self, ZLimits limits) -> SlicedParticle\n" "\n" - "SlicedParticle Particle::createSlicedParticle(ZLimits limits) const override final\n" + "SlicedParticle Particle::createSlicedParticle(ZLimits limits) const overridefinal\n" "\n" "Create a sliced form factor for this particle. \n" "\n" @@ -125932,7 +125866,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"Particle_material", _wrap_Particle_material, METH_VARARGS, (char *)"\n" "Particle_material(Particle self) -> Material\n" "\n" - "const Material* Particle::material() const override final\n" + "const Material* Particle::material() const overridefinal\n" "\n" "Returns nullptr, unless overwritten to return a specific material. \n" "\n" @@ -125946,7 +125880,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"Particle_getChildren", _wrap_Particle_getChildren, METH_VARARGS, (char *)"\n" "Particle_getChildren(Particle self) -> swig_dummy_type_const_inode_vector\n" "\n" - "std::vector< const INode * > Particle::getChildren() const override final\n" + "std::vector< const INode * > Particle::getChildren() const overridefinal\n" "\n" "Returns a vector of children (const). \n" "\n" @@ -125969,7 +125903,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"ParticleComposition_clone", _wrap_ParticleComposition_clone, METH_VARARGS, (char *)"\n" "ParticleComposition_clone(ParticleComposition self) -> ParticleComposition\n" "\n" - "ParticleComposition * ParticleComposition::clone() const override final\n" + "ParticleComposition * ParticleComposition::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -125977,7 +125911,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"ParticleComposition_accept", _wrap_ParticleComposition_accept, METH_VARARGS, (char *)"\n" "ParticleComposition_accept(ParticleComposition self, INodeVisitor visitor)\n" "\n" - "void ParticleComposition::accept(INodeVisitor *visitor) const override final\n" + "void ParticleComposition::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -125985,7 +125919,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"ParticleComposition_createFormFactor", _wrap_ParticleComposition_createFormFactor, METH_VARARGS, (char *)"\n" "ParticleComposition_createFormFactor(ParticleComposition self) -> IFormFactor\n" "\n" - "IFormFactor * ParticleComposition::createFormFactor() const override final\n" + "IFormFactor * ParticleComposition::createFormFactor() const overridefinal\n" "\n" "Create a form factor for this particle. \n" "\n" @@ -126014,7 +125948,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"ParticleComposition_getChildren", _wrap_ParticleComposition_getChildren, METH_VARARGS, (char *)"\n" "ParticleComposition_getChildren(ParticleComposition self) -> swig_dummy_type_const_inode_vector\n" "\n" - "std::vector< const INode * > ParticleComposition::getChildren() const override final\n" + "std::vector< const INode * > ParticleComposition::getChildren() const overridefinal\n" "\n" "Returns a vector of children (const). \n" "\n" @@ -126022,7 +125956,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"ParticleComposition_decompose", _wrap_ParticleComposition_decompose, METH_VARARGS, (char *)"\n" "ParticleComposition_decompose(ParticleComposition self) -> SafePointerVector< IParticle >\n" "\n" - "SafePointerVector< IParticle > ParticleComposition::decompose() const override final\n" + "SafePointerVector< IParticle > ParticleComposition::decompose() const overridefinal\n" "\n" "Decompose in constituent IParticle objects. \n" "\n" @@ -126030,7 +125964,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"ParticleComposition_bottomTopZ", _wrap_ParticleComposition_bottomTopZ, METH_VARARGS, (char *)"\n" "ParticleComposition_bottomTopZ(ParticleComposition self) -> ParticleLimits\n" "\n" - "ParticleLimits ParticleComposition::bottomTopZ() const override final\n" + "ParticleLimits ParticleComposition::bottomTopZ() const overridefinal\n" "\n" "Top and bottom z-coordinate. \n" "\n" @@ -126052,7 +125986,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"ParticleCoreShell_clone", _wrap_ParticleCoreShell_clone, METH_VARARGS, (char *)"\n" "ParticleCoreShell_clone(ParticleCoreShell self) -> ParticleCoreShell\n" "\n" - "ParticleCoreShell * ParticleCoreShell::clone() const override final\n" + "ParticleCoreShell * ParticleCoreShell::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -126060,7 +125994,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"ParticleCoreShell_accept", _wrap_ParticleCoreShell_accept, METH_VARARGS, (char *)"\n" "ParticleCoreShell_accept(ParticleCoreShell self, INodeVisitor visitor)\n" "\n" - "void ParticleCoreShell::accept(INodeVisitor *visitor) const override final\n" + "void ParticleCoreShell::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -126068,7 +126002,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"ParticleCoreShell_createSlicedParticle", _wrap_ParticleCoreShell_createSlicedParticle, METH_VARARGS, (char *)"\n" "ParticleCoreShell_createSlicedParticle(ParticleCoreShell self, ZLimits limits) -> SlicedParticle\n" "\n" - "SlicedParticle ParticleCoreShell::createSlicedParticle(ZLimits limits) const override final\n" + "SlicedParticle ParticleCoreShell::createSlicedParticle(ZLimits limits) const overridefinal\n" "\n" "Create a sliced form factor for this particle. \n" "\n" @@ -126076,19 +126010,19 @@ static PyMethodDef SwigMethods[] = { { (char *)"ParticleCoreShell_coreParticle", _wrap_ParticleCoreShell_coreParticle, METH_VARARGS, (char *)"\n" "ParticleCoreShell_coreParticle(ParticleCoreShell self) -> Particle\n" "\n" - "const Particle * ParticleCoreShell::coreParticle() const\n" + "const Particle * ParticleCoreShell::coreParticle() const \n" "\n" ""}, { (char *)"ParticleCoreShell_shellParticle", _wrap_ParticleCoreShell_shellParticle, METH_VARARGS, (char *)"\n" "ParticleCoreShell_shellParticle(ParticleCoreShell self) -> Particle\n" "\n" - "const Particle * ParticleCoreShell::shellParticle() const\n" + "const Particle * ParticleCoreShell::shellParticle() const \n" "\n" ""}, { (char *)"ParticleCoreShell_getChildren", _wrap_ParticleCoreShell_getChildren, METH_VARARGS, (char *)"\n" "ParticleCoreShell_getChildren(ParticleCoreShell self) -> swig_dummy_type_const_inode_vector\n" "\n" - "std::vector< const INode * > ParticleCoreShell::getChildren() const override final\n" + "std::vector< const INode * > ParticleCoreShell::getChildren() const overridefinal\n" "\n" "Returns a vector of children (const). \n" "\n" @@ -126103,7 +126037,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"ParticleDistribution_clone", _wrap_ParticleDistribution_clone, METH_VARARGS, (char *)"\n" "ParticleDistribution_clone(ParticleDistribution self) -> ParticleDistribution\n" "\n" - "ParticleDistribution * ParticleDistribution::clone() const override final\n" + "ParticleDistribution * ParticleDistribution::clone() const overridefinal\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -126111,7 +126045,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"ParticleDistribution_accept", _wrap_ParticleDistribution_accept, METH_VARARGS, (char *)"\n" "ParticleDistribution_accept(ParticleDistribution self, INodeVisitor visitor)\n" "\n" - "void ParticleDistribution::accept(INodeVisitor *visitor) const override final\n" + "void ParticleDistribution::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -126119,7 +126053,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"ParticleDistribution_translate", _wrap_ParticleDistribution_translate, METH_VARARGS, (char *)"\n" "ParticleDistribution_translate(ParticleDistribution self, kvector_t translation)\n" "\n" - "void ParticleDistribution::translate(kvector_t translation) override final\n" + "void ParticleDistribution::translate(kvector_t translation) overridefinal\n" "\n" "Translates the particle with the given vector. \n" "\n" @@ -126127,7 +126061,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"ParticleDistribution_rotate", _wrap_ParticleDistribution_rotate, METH_VARARGS, (char *)"\n" "ParticleDistribution_rotate(ParticleDistribution self, IRotation rotation)\n" "\n" - "void ParticleDistribution::rotate(const IRotation &rotation) override final\n" + "void ParticleDistribution::rotate(const IRotation &rotation) overridefinal\n" "\n" "Applies the given rotation to the particle. \n" "\n" @@ -126161,7 +126095,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"ParticleDistribution_getChildren", _wrap_ParticleDistribution_getChildren, METH_VARARGS, (char *)"\n" "ParticleDistribution_getChildren(ParticleDistribution self) -> swig_dummy_type_const_inode_vector\n" "\n" - "std::vector< const INode * > ParticleDistribution::getChildren() const override final\n" + "std::vector< const INode * > ParticleDistribution::getChildren() const overridefinal\n" "\n" "Returns a vector of children (const). \n" "\n" @@ -126185,7 +126119,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"ParticleLayout_clone", _wrap_ParticleLayout_clone, METH_VARARGS, (char *)"\n" "ParticleLayout_clone(ParticleLayout self) -> ParticleLayout\n" "\n" - "ParticleLayout * ParticleLayout::clone() const final override\n" + "ParticleLayout * ParticleLayout::clone() const finaloverride\n" "\n" "Returns a clone of this ISample object. \n" "\n" @@ -126193,13 +126127,13 @@ static PyMethodDef SwigMethods[] = { { (char *)"ParticleLayout_cloneWithOffset", _wrap_ParticleLayout_cloneWithOffset, METH_VARARGS, (char *)"\n" "ParticleLayout_cloneWithOffset(ParticleLayout self, double offset) -> ParticleLayout\n" "\n" - "ParticleLayout * ParticleLayout::cloneWithOffset(double offset) const final override\n" + "ParticleLayout * ParticleLayout::cloneWithOffset(double offset) const finaloverride\n" "\n" ""}, { (char *)"ParticleLayout_accept", _wrap_ParticleLayout_accept, METH_VARARGS, (char *)"\n" "ParticleLayout_accept(ParticleLayout self, INodeVisitor visitor)\n" "\n" - "void ParticleLayout::accept(INodeVisitor *visitor) const final override\n" + "void ParticleLayout::accept(INodeVisitor *visitor) const finaloverride\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -126233,7 +126167,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"ParticleLayout_particles", _wrap_ParticleLayout_particles, METH_VARARGS, (char *)"\n" "ParticleLayout_particles(ParticleLayout self) -> SafePointerVector< IParticle const >\n" "\n" - "SafePointerVector< const IParticle > ParticleLayout::particles() const final override\n" + "SafePointerVector< const IParticle > ParticleLayout::particles() const finaloverride\n" "\n" "Returns information on all particles (type and abundance) and generates new particles if an IAbstractParticle denotes a collection \n" "\n" @@ -126241,7 +126175,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"ParticleLayout_getTotalAbundance", _wrap_ParticleLayout_getTotalAbundance, METH_VARARGS, (char *)"\n" "ParticleLayout_getTotalAbundance(ParticleLayout self) -> double\n" "\n" - "double ParticleLayout::getTotalAbundance() const final override\n" + "double ParticleLayout::getTotalAbundance() const finaloverride\n" "\n" "Get total abundance of all particles. \n" "\n" @@ -126257,7 +126191,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"ParticleLayout_totalParticleSurfaceDensity", _wrap_ParticleLayout_totalParticleSurfaceDensity, METH_VARARGS, (char *)"\n" "ParticleLayout_totalParticleSurfaceDensity(ParticleLayout self) -> double\n" "\n" - "double ParticleLayout::totalParticleSurfaceDensity() const final override\n" + "double ParticleLayout::totalParticleSurfaceDensity() const finaloverride\n" "\n" "Returns surface density of all particles. \n" "\n" @@ -126265,7 +126199,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"ParticleLayout_setTotalParticleSurfaceDensity", _wrap_ParticleLayout_setTotalParticleSurfaceDensity, METH_VARARGS, (char *)"\n" "ParticleLayout_setTotalParticleSurfaceDensity(ParticleLayout self, double particle_density)\n" "\n" - "void ParticleLayout::setTotalParticleSurfaceDensity(double particle_density) final override\n" + "void ParticleLayout::setTotalParticleSurfaceDensity(double particle_density) finaloverride\n" "\n" "Sets total particle surface density. particle_density: number of particles per square nanometer \n" "\n" @@ -126273,7 +126207,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"ParticleLayout_getChildren", _wrap_ParticleLayout_getChildren, METH_VARARGS, (char *)"\n" "ParticleLayout_getChildren(ParticleLayout self) -> swig_dummy_type_const_inode_vector\n" "\n" - "std::vector< const INode * > ParticleLayout::getChildren() const final override\n" + "std::vector< const INode * > ParticleLayout::getChildren() const finaloverride\n" "\n" "Returns a vector of children (const). \n" "\n" @@ -126294,7 +126228,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"PoissonNoiseBackground_clone", _wrap_PoissonNoiseBackground_clone, METH_VARARGS, (char *)"\n" "PoissonNoiseBackground_clone(PoissonNoiseBackground self) -> PoissonNoiseBackground\n" "\n" - "PoissonNoiseBackground * PoissonNoiseBackground::clone() const override final\n" + "PoissonNoiseBackground * PoissonNoiseBackground::clone() const overridefinal\n" "\n" ""}, { (char *)"PoissonNoiseBackground_accept", _wrap_PoissonNoiseBackground_accept, METH_VARARGS, (char *)"\n" @@ -126308,7 +126242,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"PoissonNoiseBackground_addBackGround", _wrap_PoissonNoiseBackground_addBackGround, METH_VARARGS, (char *)"\n" "PoissonNoiseBackground_addBackGround(PoissonNoiseBackground self, double intensity) -> double\n" "\n" - "double PoissonNoiseBackground::addBackGround(double intensity) const override final\n" + "double PoissonNoiseBackground::addBackGround(double intensity) const overridefinal\n" "\n" ""}, { (char *)"PoissonNoiseBackground_swigregister", PoissonNoiseBackground_swigregister, METH_VARARGS, NULL}, @@ -126329,7 +126263,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"Polygon_clone", _wrap_Polygon_clone, METH_VARARGS, (char *)"\n" "Polygon_clone(Polygon self) -> Polygon\n" "\n" - "virtual Polygon* Polygon::clone() const\n" + "virtual Polygon* Polygon::clone() const \n" "\n" ""}, { (char *)"Polygon_contains", _wrap_Polygon_contains, METH_VARARGS, (char *)"\n" @@ -126344,13 +126278,13 @@ static PyMethodDef SwigMethods[] = { { (char *)"Polygon_getArea", _wrap_Polygon_getArea, METH_VARARGS, (char *)"\n" "Polygon_getArea(Polygon self) -> double\n" "\n" - "double Polygon::getArea() const\n" + "double Polygon::getArea() const \n" "\n" ""}, { (char *)"Polygon_getPoints", _wrap_Polygon_getPoints, METH_VARARGS, (char *)"\n" "Polygon_getPoints(Polygon self, vdouble1d_t xpos, vdouble1d_t ypos)\n" "\n" - "void Polygon::getPoints(std::vector< double > &xpos, std::vector< double > &ypos) const\n" + "void Polygon::getPoints(std::vector< double > &xpos, std::vector< double > &ypos) const \n" "\n" ""}, { (char *)"Polygon_swigregister", Polygon_swigregister, METH_VARARGS, NULL}, @@ -126368,7 +126302,7 @@ static PyMethodDef SwigMethods[] = { "clone(std::string const & new_name) -> RealParameter\n" "RealParameter_clone(RealParameter self) -> RealParameter\n" "\n" - "RealParameter * RealParameter::clone(const std::string &new_name=\"\") const\n" + "RealParameter * RealParameter::clone(const std::string &new_name=\"\") const \n" "\n" ""}, { (char *)"RealParameter_setValue", _wrap_RealParameter_setValue, METH_VARARGS, (char *)"\n" @@ -126396,7 +126330,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"RealParameter_limits", _wrap_RealParameter_limits, METH_VARARGS, (char *)"\n" "RealParameter_limits(RealParameter self) -> RealLimits\n" "\n" - "RealLimits RealParameter::limits() const\n" + "RealLimits RealParameter::limits() const \n" "\n" ""}, { (char *)"RealParameter_setLimited", _wrap_RealParameter_setLimited, METH_VARARGS, (char *)"\n" @@ -126426,7 +126360,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"RealParameter_unit", _wrap_RealParameter_unit, METH_VARARGS, (char *)"\n" "RealParameter_unit(RealParameter self) -> std::string\n" "\n" - "std::string RealParameter::unit() const\n" + "std::string RealParameter::unit() const \n" "\n" ""}, { (char *)"delete_RealParameter", _wrap_delete_RealParameter, METH_VARARGS, (char *)"delete_RealParameter(RealParameter self)"}, @@ -126455,7 +126389,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"Rectangle_clone", _wrap_Rectangle_clone, METH_VARARGS, (char *)"\n" "Rectangle_clone(Rectangle self) -> Rectangle\n" "\n" - "Rectangle* Rectangle::clone() const\n" + "Rectangle* Rectangle::clone() const \n" "\n" ""}, { (char *)"Rectangle_contains", _wrap_Rectangle_contains, METH_VARARGS, (char *)"\n" @@ -126470,31 +126404,31 @@ static PyMethodDef SwigMethods[] = { { (char *)"Rectangle_getArea", _wrap_Rectangle_getArea, METH_VARARGS, (char *)"\n" "Rectangle_getArea(Rectangle self) -> double\n" "\n" - "double Rectangle::getArea() const\n" + "double Rectangle::getArea() const \n" "\n" ""}, { (char *)"Rectangle_getXlow", _wrap_Rectangle_getXlow, METH_VARARGS, (char *)"\n" "Rectangle_getXlow(Rectangle self) -> double\n" "\n" - "double Rectangle::getXlow() const\n" + "double Rectangle::getXlow() const \n" "\n" ""}, { (char *)"Rectangle_getYlow", _wrap_Rectangle_getYlow, METH_VARARGS, (char *)"\n" "Rectangle_getYlow(Rectangle self) -> double\n" "\n" - "double Rectangle::getYlow() const\n" + "double Rectangle::getYlow() const \n" "\n" ""}, { (char *)"Rectangle_getXup", _wrap_Rectangle_getXup, METH_VARARGS, (char *)"\n" "Rectangle_getXup(Rectangle self) -> double\n" "\n" - "double Rectangle::getXup() const\n" + "double Rectangle::getXup() const \n" "\n" ""}, { (char *)"Rectangle_getYup", _wrap_Rectangle_getYup, METH_VARARGS, (char *)"\n" "Rectangle_getYup(Rectangle self) -> double\n" "\n" - "double Rectangle::getYup() const\n" + "double Rectangle::getYup() const \n" "\n" ""}, { (char *)"delete_Rectangle", _wrap_delete_Rectangle, METH_VARARGS, (char *)"delete_Rectangle(Rectangle self)"}, @@ -126538,7 +126472,7 @@ static PyMethodDef SwigMethods[] = { "setPosition(kvector_t normal_to_detector, double u0, double v0, kvector_t direction)\n" "RectangularDetector_setPosition(RectangularDetector self, kvector_t normal_to_detector, double u0, double v0)\n" "\n" - "void RectangularDetector::setPosition(const kvector_t normal_to_detector, double u0, double v0, const kvector_t direction=kvector_t(0.0, -1.0, 0.0))\n" + "void RectangularDetector::setPosition(const kvector_t normal_to_detector, double u0, double v0, const kvector_t direction=kvector_t(0.0,-1.0, 0.0))\n" "\n" ""}, { (char *)"RectangularDetector_setPerpendicularToSampleX", _wrap_RectangularDetector_setPerpendicularToSampleX, METH_VARARGS, (char *)"\n" @@ -126570,73 +126504,73 @@ static PyMethodDef SwigMethods[] = { { (char *)"RectangularDetector_getWidth", _wrap_RectangularDetector_getWidth, METH_VARARGS, (char *)"\n" "RectangularDetector_getWidth(RectangularDetector self) -> double\n" "\n" - "double RectangularDetector::getWidth() const\n" + "double RectangularDetector::getWidth() const \n" "\n" ""}, { (char *)"RectangularDetector_getHeight", _wrap_RectangularDetector_getHeight, METH_VARARGS, (char *)"\n" "RectangularDetector_getHeight(RectangularDetector self) -> double\n" "\n" - "double RectangularDetector::getHeight() const\n" + "double RectangularDetector::getHeight() const \n" "\n" ""}, { (char *)"RectangularDetector_getNbinsX", _wrap_RectangularDetector_getNbinsX, METH_VARARGS, (char *)"\n" "RectangularDetector_getNbinsX(RectangularDetector self) -> size_t\n" "\n" - "size_t RectangularDetector::getNbinsX() const\n" + "size_t RectangularDetector::getNbinsX() const \n" "\n" ""}, { (char *)"RectangularDetector_getNbinsY", _wrap_RectangularDetector_getNbinsY, METH_VARARGS, (char *)"\n" "RectangularDetector_getNbinsY(RectangularDetector self) -> size_t\n" "\n" - "size_t RectangularDetector::getNbinsY() const\n" + "size_t RectangularDetector::getNbinsY() const \n" "\n" ""}, { (char *)"RectangularDetector_getNormalVector", _wrap_RectangularDetector_getNormalVector, METH_VARARGS, (char *)"\n" "RectangularDetector_getNormalVector(RectangularDetector self) -> kvector_t\n" "\n" - "kvector_t RectangularDetector::getNormalVector() const\n" + "kvector_t RectangularDetector::getNormalVector() const \n" "\n" ""}, { (char *)"RectangularDetector_getU0", _wrap_RectangularDetector_getU0, METH_VARARGS, (char *)"\n" "RectangularDetector_getU0(RectangularDetector self) -> double\n" "\n" - "double RectangularDetector::getU0() const\n" + "double RectangularDetector::getU0() const \n" "\n" ""}, { (char *)"RectangularDetector_getV0", _wrap_RectangularDetector_getV0, METH_VARARGS, (char *)"\n" "RectangularDetector_getV0(RectangularDetector self) -> double\n" "\n" - "double RectangularDetector::getV0() const\n" + "double RectangularDetector::getV0() const \n" "\n" ""}, { (char *)"RectangularDetector_getDirectionVector", _wrap_RectangularDetector_getDirectionVector, METH_VARARGS, (char *)"\n" "RectangularDetector_getDirectionVector(RectangularDetector self) -> kvector_t\n" "\n" - "kvector_t RectangularDetector::getDirectionVector() const\n" + "kvector_t RectangularDetector::getDirectionVector() const \n" "\n" ""}, { (char *)"RectangularDetector_getDistance", _wrap_RectangularDetector_getDistance, METH_VARARGS, (char *)"\n" "RectangularDetector_getDistance(RectangularDetector self) -> double\n" "\n" - "double RectangularDetector::getDistance() const\n" + "double RectangularDetector::getDistance() const \n" "\n" ""}, { (char *)"RectangularDetector_getDirectBeamU0", _wrap_RectangularDetector_getDirectBeamU0, METH_VARARGS, (char *)"\n" "RectangularDetector_getDirectBeamU0(RectangularDetector self) -> double\n" "\n" - "double RectangularDetector::getDirectBeamU0() const\n" + "double RectangularDetector::getDirectBeamU0() const \n" "\n" ""}, { (char *)"RectangularDetector_getDirectBeamV0", _wrap_RectangularDetector_getDirectBeamV0, METH_VARARGS, (char *)"\n" "RectangularDetector_getDirectBeamV0(RectangularDetector self) -> double\n" "\n" - "double RectangularDetector::getDirectBeamV0() const\n" + "double RectangularDetector::getDirectBeamV0() const \n" "\n" ""}, { (char *)"RectangularDetector_getDetectorArrangment", _wrap_RectangularDetector_getDetectorArrangment, METH_VARARGS, (char *)"\n" "RectangularDetector_getDetectorArrangment(RectangularDetector self) -> RectangularDetector::EDetectorArrangement\n" "\n" - "RectangularDetector::EDetectorArrangement RectangularDetector::getDetectorArrangment() const\n" + "RectangularDetector::EDetectorArrangement RectangularDetector::getDetectorArrangment() const \n" "\n" ""}, { (char *)"RectangularDetector_validAxesUnits", _wrap_RectangularDetector_validAxesUnits, METH_VARARGS, (char *)"\n" @@ -126655,7 +126589,12 @@ static PyMethodDef SwigMethods[] = { "return default axes units \n" "\n" ""}, - { (char *)"RectangularDetector_regionOfInterestPixel", _wrap_RectangularDetector_regionOfInterestPixel, METH_VARARGS, (char *)"RectangularDetector_regionOfInterestPixel(RectangularDetector self) -> RectangularPixel"}, + { (char *)"RectangularDetector_regionOfInterestPixel", _wrap_RectangularDetector_regionOfInterestPixel, METH_VARARGS, (char *)"\n" + "RectangularDetector_regionOfInterestPixel(RectangularDetector self) -> RectangularPixel\n" + "\n" + "RectangularPixel * RectangularDetector::regionOfInterestPixel() const \n" + "\n" + ""}, { (char *)"RectangularDetector_swigregister", RectangularDetector_swigregister, METH_VARARGS, NULL}, { (char *)"new_RectangularPixel", _wrap_new_RectangularPixel, METH_VARARGS, (char *)"\n" "new_RectangularPixel(kvector_t corner_pos, kvector_t width, kvector_t height) -> RectangularPixel\n" @@ -126687,7 +126626,12 @@ static PyMethodDef SwigMethods[] = { "kvector_t RectangularPixel::getK(double x, double y, double wavelength) const override\n" "\n" ""}, - { (char *)"RectangularPixel_getPosition", _wrap_RectangularPixel_getPosition, METH_VARARGS, (char *)"RectangularPixel_getPosition(RectangularPixel self, double x, double y) -> kvector_t"}, + { (char *)"RectangularPixel_getPosition", _wrap_RectangularPixel_getPosition, METH_VARARGS, (char *)"\n" + "RectangularPixel_getPosition(RectangularPixel self, double x, double y) -> kvector_t\n" + "\n" + "kvector_t RectangularPixel::getPosition(double x, double y) const \n" + "\n" + ""}, { (char *)"RectangularPixel_getIntegrationFactor", _wrap_RectangularPixel_getIntegrationFactor, METH_VARARGS, (char *)"\n" "RectangularPixel_getIntegrationFactor(RectangularPixel self, double x, double y) -> double\n" "\n" @@ -126710,13 +126654,13 @@ static PyMethodDef SwigMethods[] = { { (char *)"ResolutionFunction2DGaussian_evaluateCDF", _wrap_ResolutionFunction2DGaussian_evaluateCDF, METH_VARARGS, (char *)"\n" "ResolutionFunction2DGaussian_evaluateCDF(ResolutionFunction2DGaussian self, double x, double y) -> double\n" "\n" - "double ResolutionFunction2DGaussian::evaluateCDF(double x, double y) const\n" + "double ResolutionFunction2DGaussian::evaluateCDF(double x, double y) const \n" "\n" ""}, { (char *)"ResolutionFunction2DGaussian_clone", _wrap_ResolutionFunction2DGaussian_clone, METH_VARARGS, (char *)"\n" "ResolutionFunction2DGaussian_clone(ResolutionFunction2DGaussian self) -> ResolutionFunction2DGaussian\n" "\n" - "ResolutionFunction2DGaussian* ResolutionFunction2DGaussian::clone() const\n" + "ResolutionFunction2DGaussian* ResolutionFunction2DGaussian::clone() const \n" "\n" ""}, { (char *)"ResolutionFunction2DGaussian_accept", _wrap_ResolutionFunction2DGaussian_accept, METH_VARARGS, (char *)"\n" @@ -126730,13 +126674,13 @@ static PyMethodDef SwigMethods[] = { { (char *)"ResolutionFunction2DGaussian_getSigmaX", _wrap_ResolutionFunction2DGaussian_getSigmaX, METH_VARARGS, (char *)"\n" "ResolutionFunction2DGaussian_getSigmaX(ResolutionFunction2DGaussian self) -> double\n" "\n" - "double ResolutionFunction2DGaussian::getSigmaX() const\n" + "double ResolutionFunction2DGaussian::getSigmaX() const \n" "\n" ""}, { (char *)"ResolutionFunction2DGaussian_getSigmaY", _wrap_ResolutionFunction2DGaussian_getSigmaY, METH_VARARGS, (char *)"\n" "ResolutionFunction2DGaussian_getSigmaY(ResolutionFunction2DGaussian self) -> double\n" "\n" - "double ResolutionFunction2DGaussian::getSigmaY() const\n" + "double ResolutionFunction2DGaussian::getSigmaY() const \n" "\n" ""}, { (char *)"delete_ResolutionFunction2DGaussian", _wrap_delete_ResolutionFunction2DGaussian, METH_VARARGS, (char *)"delete_ResolutionFunction2DGaussian(ResolutionFunction2DGaussian self)"}, @@ -126772,7 +126716,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"SpecularSimulation_accept", _wrap_SpecularSimulation_accept, METH_VARARGS, (char *)"\n" "SpecularSimulation_accept(SpecularSimulation self, INodeVisitor visitor)\n" "\n" - "void SpecularSimulation::accept(INodeVisitor *visitor) const override final\n" + "void SpecularSimulation::accept(INodeVisitor *visitor) const overridefinal\n" "\n" "Calls the INodeVisitor's visit method. \n" "\n" @@ -126858,7 +126802,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"SampleBuilderFactoryTemp_contains", _wrap_SampleBuilderFactoryTemp_contains, METH_VARARGS, (char *)"\n" "SampleBuilderFactoryTemp_contains(SampleBuilderFactoryTemp self, std::string const & item_key) -> bool\n" "\n" - "bool IFactory< Key, AbstractProduct >::contains(const Key &item_key) const\n" + "bool IFactory< Key, AbstractProduct >::contains(const Key &item_key) const \n" "\n" ""}, { (char *)"delete_SampleBuilderFactoryTemp", _wrap_delete_SampleBuilderFactoryTemp, METH_VARARGS, (char *)"\n" @@ -126878,13 +126822,13 @@ static PyMethodDef SwigMethods[] = { { (char *)"SampleBuilderFactoryTemp_begin", _wrap_SampleBuilderFactoryTemp_begin, METH_VARARGS, (char *)"\n" "SampleBuilderFactoryTemp_begin(SampleBuilderFactoryTemp self) -> IFactory< std::string,IMultiLayerBuilder >::const_iterator\n" "\n" - "const_iterator IFactory< Key, AbstractProduct >::begin() const\n" + "const_iterator IFactory< Key, AbstractProduct >::begin() const \n" "\n" ""}, { (char *)"SampleBuilderFactoryTemp_end", _wrap_SampleBuilderFactoryTemp_end, METH_VARARGS, (char *)"\n" "SampleBuilderFactoryTemp_end(SampleBuilderFactoryTemp self) -> IFactory< std::string,IMultiLayerBuilder >::const_iterator\n" "\n" - "const_iterator IFactory< Key, AbstractProduct >::end() const\n" + "const_iterator IFactory< Key, AbstractProduct >::end() const \n" "\n" ""}, { (char *)"SampleBuilderFactoryTemp_swigregister", SampleBuilderFactoryTemp_swigregister, METH_VARARGS, NULL}, @@ -126930,7 +126874,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"SimulationFactoryTemp_contains", _wrap_SimulationFactoryTemp_contains, METH_VARARGS, (char *)"\n" "SimulationFactoryTemp_contains(SimulationFactoryTemp self, std::string const & item_key) -> bool\n" "\n" - "bool IFactory< Key, AbstractProduct >::contains(const Key &item_key) const\n" + "bool IFactory< Key, AbstractProduct >::contains(const Key &item_key) const \n" "\n" ""}, { (char *)"delete_SimulationFactoryTemp", _wrap_delete_SimulationFactoryTemp, METH_VARARGS, (char *)"\n" @@ -126950,13 +126894,13 @@ static PyMethodDef SwigMethods[] = { { (char *)"SimulationFactoryTemp_begin", _wrap_SimulationFactoryTemp_begin, METH_VARARGS, (char *)"\n" "SimulationFactoryTemp_begin(SimulationFactoryTemp self) -> IFactory< std::string,Simulation >::const_iterator\n" "\n" - "const_iterator IFactory< Key, AbstractProduct >::begin() const\n" + "const_iterator IFactory< Key, AbstractProduct >::begin() const \n" "\n" ""}, { (char *)"SimulationFactoryTemp_end", _wrap_SimulationFactoryTemp_end, METH_VARARGS, (char *)"\n" "SimulationFactoryTemp_end(SimulationFactoryTemp self) -> IFactory< std::string,Simulation >::const_iterator\n" "\n" - "const_iterator IFactory< Key, AbstractProduct >::end() const\n" + "const_iterator IFactory< Key, AbstractProduct >::end() const \n" "\n" ""}, { (char *)"SimulationFactoryTemp_swigregister", SimulationFactoryTemp_swigregister, METH_VARARGS, NULL}, @@ -126970,56 +126914,142 @@ static PyMethodDef SwigMethods[] = { { (char *)"SimulationFactory_swigregister", SimulationFactory_swigregister, METH_VARARGS, NULL}, { (char *)"delete_AxesUnits", _wrap_delete_AxesUnits, METH_VARARGS, (char *)"delete_AxesUnits(AxesUnits self)"}, { (char *)"AxesUnits_swigregister", AxesUnits_swigregister, METH_VARARGS, NULL}, - { (char *)"delete_IUnitConverter", _wrap_delete_IUnitConverter, METH_VARARGS, (char *)"delete_IUnitConverter(IUnitConverter self)"}, + { (char *)"delete_IUnitConverter", _wrap_delete_IUnitConverter, METH_VARARGS, (char *)"\n" + "delete_IUnitConverter(IUnitConverter self)\n" + "\n" + "virtual IUnitConverter::~IUnitConverter()=default\n" + "\n" + ""}, { (char *)"IUnitConverter_clone", _wrap_IUnitConverter_clone, METH_VARARGS, (char *)"\n" "IUnitConverter_clone(IUnitConverter self) -> IUnitConverter\n" "\n" - "virtual ICloneable* ICloneable::clone() const =0\n" + "virtual IUnitConverter* IUnitConverter::clone() const =0\n" + "\n" + ""}, + { (char *)"IUnitConverter_dimension", _wrap_IUnitConverter_dimension, METH_VARARGS, (char *)"\n" + "IUnitConverter_dimension(IUnitConverter self) -> size_t\n" + "\n" + "virtual size_t IUnitConverter::dimension() const =0\n" + "\n" + ""}, + { (char *)"IUnitConverter_calculateMin", _wrap_IUnitConverter_calculateMin, METH_VARARGS, (char *)"\n" + "IUnitConverter_calculateMin(IUnitConverter self, size_t i_axis, AxesUnits units_type) -> double\n" + "\n" + "virtual double IUnitConverter::calculateMin(size_t i_axis, AxesUnits units_type) const =0\n" + "\n" + ""}, + { (char *)"IUnitConverter_calculateMax", _wrap_IUnitConverter_calculateMax, METH_VARARGS, (char *)"\n" + "IUnitConverter_calculateMax(IUnitConverter self, size_t i_axis, AxesUnits units_type) -> double\n" + "\n" + "virtual double IUnitConverter::calculateMax(size_t i_axis, AxesUnits units_type) const =0\n" + "\n" + ""}, + { (char *)"IUnitConverter_axisSize", _wrap_IUnitConverter_axisSize, METH_VARARGS, (char *)"\n" + "IUnitConverter_axisSize(IUnitConverter self, size_t i_axis) -> size_t\n" + "\n" + "virtual size_t IUnitConverter::axisSize(size_t i_axis) const =0\n" "\n" ""}, - { (char *)"IUnitConverter_dimension", _wrap_IUnitConverter_dimension, METH_VARARGS, (char *)"IUnitConverter_dimension(IUnitConverter self) -> size_t"}, - { (char *)"IUnitConverter_calculateMin", _wrap_IUnitConverter_calculateMin, METH_VARARGS, (char *)"IUnitConverter_calculateMin(IUnitConverter self, size_t i_axis, AxesUnits units_type) -> double"}, - { (char *)"IUnitConverter_calculateMax", _wrap_IUnitConverter_calculateMax, METH_VARARGS, (char *)"IUnitConverter_calculateMax(IUnitConverter self, size_t i_axis, AxesUnits units_type) -> double"}, - { (char *)"IUnitConverter_axisSize", _wrap_IUnitConverter_axisSize, METH_VARARGS, (char *)"IUnitConverter_axisSize(IUnitConverter self, size_t i_axis) -> size_t"}, { (char *)"IUnitConverter_axisName", _wrap_IUnitConverter_axisName, METH_VARARGS, (char *)"\n" "axisName(size_t i_axis, AxesUnits units_type) -> std::string\n" "IUnitConverter_axisName(IUnitConverter self, size_t i_axis) -> std::string\n" + "\n" + "virtual std::string IUnitConverter::axisName(size_t i_axis, AxesUnits units_type=AxesUnits::DEFAULT) const =0\n" + "\n" ""}, { (char *)"IUnitConverter_swigregister", IUnitConverter_swigregister, METH_VARARGS, NULL}, - { (char *)"delete_UnitConverterSimple", _wrap_delete_UnitConverterSimple, METH_VARARGS, (char *)"delete_UnitConverterSimple(UnitConverterSimple self)"}, - { (char *)"UnitConverterSimple_dimension", _wrap_UnitConverterSimple_dimension, METH_VARARGS, (char *)"UnitConverterSimple_dimension(UnitConverterSimple self) -> size_t"}, - { (char *)"UnitConverterSimple_calculateMin", _wrap_UnitConverterSimple_calculateMin, METH_VARARGS, (char *)"UnitConverterSimple_calculateMin(UnitConverterSimple self, size_t i_axis, AxesUnits units_type) -> double"}, - { (char *)"UnitConverterSimple_calculateMax", _wrap_UnitConverterSimple_calculateMax, METH_VARARGS, (char *)"UnitConverterSimple_calculateMax(UnitConverterSimple self, size_t i_axis, AxesUnits units_type) -> double"}, - { (char *)"UnitConverterSimple_axisSize", _wrap_UnitConverterSimple_axisSize, METH_VARARGS, (char *)"UnitConverterSimple_axisSize(UnitConverterSimple self, size_t i_axis) -> size_t"}, + { (char *)"delete_UnitConverterSimple", _wrap_delete_UnitConverterSimple, METH_VARARGS, (char *)"\n" + "delete_UnitConverterSimple(UnitConverterSimple self)\n" + "\n" + "virtual UnitConverterSimple::~UnitConverterSimple()=default\n" + "\n" + ""}, + { (char *)"UnitConverterSimple_dimension", _wrap_UnitConverterSimple_dimension, METH_VARARGS, (char *)"\n" + "UnitConverterSimple_dimension(UnitConverterSimple self) -> size_t\n" + "\n" + "size_t UnitConverterSimple::dimension() const override\n" + "\n" + ""}, + { (char *)"UnitConverterSimple_calculateMin", _wrap_UnitConverterSimple_calculateMin, METH_VARARGS, (char *)"\n" + "UnitConverterSimple_calculateMin(UnitConverterSimple self, size_t i_axis, AxesUnits units_type) -> double\n" + "\n" + "double UnitConverterSimple::calculateMin(size_t i_axis, AxesUnits units_type) const override\n" + "\n" + ""}, + { (char *)"UnitConverterSimple_calculateMax", _wrap_UnitConverterSimple_calculateMax, METH_VARARGS, (char *)"\n" + "UnitConverterSimple_calculateMax(UnitConverterSimple self, size_t i_axis, AxesUnits units_type) -> double\n" + "\n" + "double UnitConverterSimple::calculateMax(size_t i_axis, AxesUnits units_type) const override\n" + "\n" + ""}, + { (char *)"UnitConverterSimple_axisSize", _wrap_UnitConverterSimple_axisSize, METH_VARARGS, (char *)"\n" + "UnitConverterSimple_axisSize(UnitConverterSimple self, size_t i_axis) -> size_t\n" + "\n" + "size_t UnitConverterSimple::axisSize(size_t i_axis) const override\n" + "\n" + ""}, { (char *)"UnitConverterSimple_axisName", _wrap_UnitConverterSimple_axisName, METH_VARARGS, (char *)"\n" "axisName(size_t i_axis, AxesUnits units_type) -> std::string\n" "UnitConverterSimple_axisName(UnitConverterSimple self, size_t i_axis) -> std::string\n" + "\n" + "std::string UnitConverterSimple::axisName(size_t i_axis, AxesUnits units_type=AxesUnits::DEFAULT) const override\n" + "\n" ""}, { (char *)"UnitConverterSimple_swigregister", UnitConverterSimple_swigregister, METH_VARARGS, NULL}, - { (char *)"new_SphericalConverter", _wrap_new_SphericalConverter, METH_VARARGS, (char *)"new_SphericalConverter(SphericalDetector detector, Beam beam) -> SphericalConverter"}, - { (char *)"delete_SphericalConverter", _wrap_delete_SphericalConverter, METH_VARARGS, (char *)"delete_SphericalConverter(SphericalConverter self)"}, + { (char *)"new_SphericalConverter", _wrap_new_SphericalConverter, METH_VARARGS, (char *)"\n" + "new_SphericalConverter(SphericalDetector detector, Beam beam) -> SphericalConverter\n" + "\n" + "SphericalConverter::SphericalConverter(const SphericalDetector &detector, const Beam &beam)\n" + "\n" + ""}, + { (char *)"delete_SphericalConverter", _wrap_delete_SphericalConverter, METH_VARARGS, (char *)"\n" + "delete_SphericalConverter(SphericalConverter self)\n" + "\n" + "SphericalConverter::~SphericalConverter()\n" + "\n" + ""}, { (char *)"SphericalConverter_clone", _wrap_SphericalConverter_clone, METH_VARARGS, (char *)"\n" "SphericalConverter_clone(SphericalConverter self) -> SphericalConverter\n" "\n" - "virtual ICloneable* ICloneable::clone() const =0\n" + "SphericalConverter * SphericalConverter::clone() const override\n" "\n" ""}, { (char *)"SphericalConverter_swigregister", SphericalConverter_swigregister, METH_VARARGS, NULL}, - { (char *)"new_RectangularConverter", _wrap_new_RectangularConverter, METH_VARARGS, (char *)"new_RectangularConverter(RectangularDetector detector, Beam beam) -> RectangularConverter"}, - { (char *)"delete_RectangularConverter", _wrap_delete_RectangularConverter, METH_VARARGS, (char *)"delete_RectangularConverter(RectangularConverter self)"}, + { (char *)"new_RectangularConverter", _wrap_new_RectangularConverter, METH_VARARGS, (char *)"\n" + "new_RectangularConverter(RectangularDetector detector, Beam beam) -> RectangularConverter\n" + "\n" + "RectangularConverter::RectangularConverter(const RectangularDetector &detector, const Beam &beam)\n" + "\n" + ""}, + { (char *)"delete_RectangularConverter", _wrap_delete_RectangularConverter, METH_VARARGS, (char *)"\n" + "delete_RectangularConverter(RectangularConverter self)\n" + "\n" + "RectangularConverter::~RectangularConverter()\n" + "\n" + ""}, { (char *)"RectangularConverter_clone", _wrap_RectangularConverter_clone, METH_VARARGS, (char *)"\n" "RectangularConverter_clone(RectangularConverter self) -> RectangularConverter\n" "\n" - "virtual ICloneable* ICloneable::clone() const =0\n" + "RectangularConverter * RectangularConverter::clone() const override\n" "\n" ""}, { (char *)"RectangularConverter_swigregister", RectangularConverter_swigregister, METH_VARARGS, NULL}, - { (char *)"new_OffSpecularConverter", _wrap_new_OffSpecularConverter, METH_VARARGS, (char *)"new_OffSpecularConverter(IDetector2D detector, Beam beam, IAxis alpha_axis) -> OffSpecularConverter"}, - { (char *)"delete_OffSpecularConverter", _wrap_delete_OffSpecularConverter, METH_VARARGS, (char *)"delete_OffSpecularConverter(OffSpecularConverter self)"}, + { (char *)"new_OffSpecularConverter", _wrap_new_OffSpecularConverter, METH_VARARGS, (char *)"\n" + "new_OffSpecularConverter(IDetector2D detector, Beam beam, IAxis alpha_axis) -> OffSpecularConverter\n" + "\n" + "OffSpecularConverter::OffSpecularConverter(const IDetector2D &detector, const Beam &beam, const IAxis &alpha_axis)\n" + "\n" + ""}, + { (char *)"delete_OffSpecularConverter", _wrap_delete_OffSpecularConverter, METH_VARARGS, (char *)"\n" + "delete_OffSpecularConverter(OffSpecularConverter self)\n" + "\n" + "OffSpecularConverter::~OffSpecularConverter()\n" + "\n" + ""}, { (char *)"OffSpecularConverter_clone", _wrap_OffSpecularConverter_clone, METH_VARARGS, (char *)"\n" "OffSpecularConverter_clone(OffSpecularConverter self) -> OffSpecularConverter\n" "\n" - "virtual ICloneable* ICloneable::clone() const =0\n" + "OffSpecularConverter * OffSpecularConverter::clone() const override\n" "\n" ""}, { (char *)"OffSpecularConverter_swigregister", OffSpecularConverter_swigregister, METH_VARARGS, NULL}, diff --git a/auto/Wrap/libBornAgainFit.py b/auto/Wrap/libBornAgainFit.py index 38c044a3c5f..43da9d0c2fc 100644 --- a/auto/Wrap/libBornAgainFit.py +++ b/auto/Wrap/libBornAgainFit.py @@ -1662,7 +1662,7 @@ class RealLimits(_object): """ toString(RealLimits self) -> std::string - std::string RealLimits::toString() const + std::string RealLimits::toString() const """ return _libBornAgainFit.RealLimits_toString(self) @@ -1682,7 +1682,7 @@ class RealLimits(_object): """ isLimitless(RealLimits self) -> bool - bool RealLimits::isLimitless() const + bool RealLimits::isLimitless() const """ return _libBornAgainFit.RealLimits_isLimitless(self) @@ -1692,7 +1692,7 @@ class RealLimits(_object): """ isPositive(RealLimits self) -> bool - bool RealLimits::isPositive() const + bool RealLimits::isPositive() const """ return _libBornAgainFit.RealLimits_isPositive(self) @@ -1702,7 +1702,7 @@ class RealLimits(_object): """ isNonnegative(RealLimits self) -> bool - bool RealLimits::isNonnegative() const + bool RealLimits::isNonnegative() const """ return _libBornAgainFit.RealLimits_isNonnegative(self) @@ -1712,7 +1712,7 @@ class RealLimits(_object): """ isLowerLimited(RealLimits self) -> bool - bool RealLimits::isLowerLimited() const + bool RealLimits::isLowerLimited() const """ return _libBornAgainFit.RealLimits_isLowerLimited(self) @@ -1722,7 +1722,7 @@ class RealLimits(_object): """ isUpperLimited(RealLimits self) -> bool - bool RealLimits::isUpperLimited() const + bool RealLimits::isUpperLimited() const """ return _libBornAgainFit.RealLimits_isUpperLimited(self) @@ -1732,7 +1732,7 @@ class RealLimits(_object): """ isLimited(RealLimits self) -> bool - bool RealLimits::isLimited() const + bool RealLimits::isLimited() const """ return _libBornAgainFit.RealLimits_isLimited(self) @@ -1855,7 +1855,7 @@ class AttLimits(_object): """ isFixed(AttLimits self) -> bool - bool AttLimits::isFixed() const + bool AttLimits::isFixed() const """ return _libBornAgainFit.AttLimits_isFixed(self) @@ -1865,7 +1865,7 @@ class AttLimits(_object): """ isLimited(AttLimits self) -> bool - bool AttLimits::isLimited() const + bool AttLimits::isLimited() const """ return _libBornAgainFit.AttLimits_isLimited(self) @@ -1875,7 +1875,7 @@ class AttLimits(_object): """ isUpperLimited(AttLimits self) -> bool - bool AttLimits::isUpperLimited() const + bool AttLimits::isUpperLimited() const """ return _libBornAgainFit.AttLimits_isUpperLimited(self) @@ -1885,7 +1885,7 @@ class AttLimits(_object): """ isLowerLimited(AttLimits self) -> bool - bool AttLimits::isLowerLimited() const + bool AttLimits::isLowerLimited() const """ return _libBornAgainFit.AttLimits_isLowerLimited(self) @@ -1895,7 +1895,7 @@ class AttLimits(_object): """ isLimitless(AttLimits self) -> bool - bool AttLimits::isLimitless() const + bool AttLimits::isLimitless() const """ return _libBornAgainFit.AttLimits_isLimitless(self) @@ -1905,7 +1905,7 @@ class AttLimits(_object): """ lowerLimit(AttLimits self) -> double - double AttLimits::lowerLimit() const + double AttLimits::lowerLimit() const """ return _libBornAgainFit.AttLimits_lowerLimit(self) @@ -1915,7 +1915,7 @@ class AttLimits(_object): """ upperLimit(AttLimits self) -> double - double AttLimits::upperLimit() const + double AttLimits::upperLimit() const """ return _libBornAgainFit.AttLimits_upperLimit(self) @@ -1945,7 +1945,7 @@ class AttLimits(_object): """ toString(AttLimits self) -> std::string - std::string AttLimits::toString() const + std::string AttLimits::toString() const """ return _libBornAgainFit.AttLimits_toString(self) @@ -2170,7 +2170,7 @@ class IFitParameter(_object): """ clone(IFitParameter self) -> IFitParameter - IFitParameter * IFitParameter::clone() const + IFitParameter * IFitParameter::clone() const """ return _libBornAgainFit.IFitParameter_clone(self) @@ -2180,7 +2180,7 @@ class IFitParameter(_object): """ name(IFitParameter self) -> std::string - std::string IFitParameter::name() const + std::string IFitParameter::name() const """ return _libBornAgainFit.IFitParameter_name(self) @@ -2200,7 +2200,7 @@ class IFitParameter(_object): """ startValue(IFitParameter self) -> double - double IFitParameter::startValue() const + double IFitParameter::startValue() const """ return _libBornAgainFit.IFitParameter_startValue(self) @@ -2220,7 +2220,7 @@ class IFitParameter(_object): """ value(IFitParameter self) -> double - double IFitParameter::value() const + double IFitParameter::value() const """ return _libBornAgainFit.IFitParameter_value(self) @@ -2250,7 +2250,7 @@ class IFitParameter(_object): """ step(IFitParameter self) -> double - double IFitParameter::step() const + double IFitParameter::step() const """ return _libBornAgainFit.IFitParameter_step(self) @@ -2270,7 +2270,7 @@ class IFitParameter(_object): """ error(IFitParameter self) -> double - double IFitParameter::error() const + double IFitParameter::error() const """ return _libBornAgainFit.IFitParameter_error(self) @@ -2371,7 +2371,7 @@ class IFitParameter(_object): """ toString(IFitParameter self) -> std::string - std::string IFitParameter::toString() const + std::string IFitParameter::toString() const """ return _libBornAgainFit.IFitParameter_toString(self) @@ -2439,7 +2439,7 @@ class FitParameterSet(_object): begin(FitParameterSet self) -> FitParameterSet::iterator begin(FitParameterSet self) -> FitParameterSet::const_iterator - FitParameterSet::const_iterator FitParameterSet::begin() const + FitParameterSet::const_iterator FitParameterSet::begin() const """ return _libBornAgainFit.FitParameterSet_begin(self, *args) @@ -2450,7 +2450,7 @@ class FitParameterSet(_object): end(FitParameterSet self) -> FitParameterSet::iterator end(FitParameterSet self) -> FitParameterSet::const_iterator - FitParameterSet::const_iterator FitParameterSet::end() const + FitParameterSet::const_iterator FitParameterSet::end() const """ return _libBornAgainFit.FitParameterSet_end(self, *args) @@ -2592,7 +2592,7 @@ class FitParameterSet(_object): """ correlationMatrix(FitParameterSet self) -> vdouble2d_t - corr_matrix_t FitParameterSet::correlationMatrix() const + corr_matrix_t FitParameterSet::correlationMatrix() const """ return _libBornAgainFit.FitParameterSet_correlationMatrix(self) @@ -2669,7 +2669,7 @@ class MinimizerCatalogue(_object): """ minimizerNames(MinimizerCatalogue self) -> vector_string_t - std::vector< std::string > MinimizerCatalogue::minimizerNames() const + std::vector< std::string > MinimizerCatalogue::minimizerNames() const """ return _libBornAgainFit.MinimizerCatalogue_minimizerNames(self) diff --git a/auto/Wrap/libBornAgainFit_wrap.cpp b/auto/Wrap/libBornAgainFit_wrap.cpp index ae57010a17f..9b2e6f6958d 100644 --- a/auto/Wrap/libBornAgainFit_wrap.cpp +++ b/auto/Wrap/libBornAgainFit_wrap.cpp @@ -22869,7 +22869,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"RealLimits_toString", _wrap_RealLimits_toString, METH_VARARGS, (char *)"\n" "RealLimits_toString(RealLimits self) -> std::string\n" "\n" - "std::string RealLimits::toString() const\n" + "std::string RealLimits::toString() const \n" "\n" ""}, { (char *)"RealLimits___eq__", _wrap_RealLimits___eq__, METH_VARARGS, (char *)"RealLimits___eq__(RealLimits self, RealLimits other) -> bool"}, @@ -22877,37 +22877,37 @@ static PyMethodDef SwigMethods[] = { { (char *)"RealLimits_isLimitless", _wrap_RealLimits_isLimitless, METH_VARARGS, (char *)"\n" "RealLimits_isLimitless(RealLimits self) -> bool\n" "\n" - "bool RealLimits::isLimitless() const\n" + "bool RealLimits::isLimitless() const \n" "\n" ""}, { (char *)"RealLimits_isPositive", _wrap_RealLimits_isPositive, METH_VARARGS, (char *)"\n" "RealLimits_isPositive(RealLimits self) -> bool\n" "\n" - "bool RealLimits::isPositive() const\n" + "bool RealLimits::isPositive() const \n" "\n" ""}, { (char *)"RealLimits_isNonnegative", _wrap_RealLimits_isNonnegative, METH_VARARGS, (char *)"\n" "RealLimits_isNonnegative(RealLimits self) -> bool\n" "\n" - "bool RealLimits::isNonnegative() const\n" + "bool RealLimits::isNonnegative() const \n" "\n" ""}, { (char *)"RealLimits_isLowerLimited", _wrap_RealLimits_isLowerLimited, METH_VARARGS, (char *)"\n" "RealLimits_isLowerLimited(RealLimits self) -> bool\n" "\n" - "bool RealLimits::isLowerLimited() const\n" + "bool RealLimits::isLowerLimited() const \n" "\n" ""}, { (char *)"RealLimits_isUpperLimited", _wrap_RealLimits_isUpperLimited, METH_VARARGS, (char *)"\n" "RealLimits_isUpperLimited(RealLimits self) -> bool\n" "\n" - "bool RealLimits::isUpperLimited() const\n" + "bool RealLimits::isUpperLimited() const \n" "\n" ""}, { (char *)"RealLimits_isLimited", _wrap_RealLimits_isLimited, METH_VARARGS, (char *)"\n" "RealLimits_isLimited(RealLimits self) -> bool\n" "\n" - "bool RealLimits::isLimited() const\n" + "bool RealLimits::isLimited() const \n" "\n" ""}, { (char *)"delete_RealLimits", _wrap_delete_RealLimits, METH_VARARGS, (char *)"delete_RealLimits(RealLimits self)"}, @@ -22928,43 +22928,43 @@ static PyMethodDef SwigMethods[] = { { (char *)"AttLimits_isFixed", _wrap_AttLimits_isFixed, METH_VARARGS, (char *)"\n" "AttLimits_isFixed(AttLimits self) -> bool\n" "\n" - "bool AttLimits::isFixed() const\n" + "bool AttLimits::isFixed() const \n" "\n" ""}, { (char *)"AttLimits_isLimited", _wrap_AttLimits_isLimited, METH_VARARGS, (char *)"\n" "AttLimits_isLimited(AttLimits self) -> bool\n" "\n" - "bool AttLimits::isLimited() const\n" + "bool AttLimits::isLimited() const \n" "\n" ""}, { (char *)"AttLimits_isUpperLimited", _wrap_AttLimits_isUpperLimited, METH_VARARGS, (char *)"\n" "AttLimits_isUpperLimited(AttLimits self) -> bool\n" "\n" - "bool AttLimits::isUpperLimited() const\n" + "bool AttLimits::isUpperLimited() const \n" "\n" ""}, { (char *)"AttLimits_isLowerLimited", _wrap_AttLimits_isLowerLimited, METH_VARARGS, (char *)"\n" "AttLimits_isLowerLimited(AttLimits self) -> bool\n" "\n" - "bool AttLimits::isLowerLimited() const\n" + "bool AttLimits::isLowerLimited() const \n" "\n" ""}, { (char *)"AttLimits_isLimitless", _wrap_AttLimits_isLimitless, METH_VARARGS, (char *)"\n" "AttLimits_isLimitless(AttLimits self) -> bool\n" "\n" - "bool AttLimits::isLimitless() const\n" + "bool AttLimits::isLimitless() const \n" "\n" ""}, { (char *)"AttLimits_lowerLimit", _wrap_AttLimits_lowerLimit, METH_VARARGS, (char *)"\n" "AttLimits_lowerLimit(AttLimits self) -> double\n" "\n" - "double AttLimits::lowerLimit() const\n" + "double AttLimits::lowerLimit() const \n" "\n" ""}, { (char *)"AttLimits_upperLimit", _wrap_AttLimits_upperLimit, METH_VARARGS, (char *)"\n" "AttLimits_upperLimit(AttLimits self) -> double\n" "\n" - "double AttLimits::upperLimit() const\n" + "double AttLimits::upperLimit() const \n" "\n" ""}, { (char *)"AttLimits_setFixed", _wrap_AttLimits_setFixed, METH_VARARGS, (char *)"\n" @@ -22978,7 +22978,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"AttLimits_toString", _wrap_AttLimits_toString, METH_VARARGS, (char *)"\n" "AttLimits_toString(AttLimits self) -> std::string\n" "\n" - "std::string AttLimits::toString() const\n" + "std::string AttLimits::toString() const \n" "\n" ""}, { (char *)"delete_AttLimits", _wrap_delete_AttLimits, METH_VARARGS, (char *)"delete_AttLimits(AttLimits self)"}, @@ -23090,13 +23090,13 @@ static PyMethodDef SwigMethods[] = { { (char *)"IFitParameter_clone", _wrap_IFitParameter_clone, METH_VARARGS, (char *)"\n" "IFitParameter_clone(IFitParameter self) -> IFitParameter\n" "\n" - "IFitParameter * IFitParameter::clone() const\n" + "IFitParameter * IFitParameter::clone() const \n" "\n" ""}, { (char *)"IFitParameter_name", _wrap_IFitParameter_name, METH_VARARGS, (char *)"\n" "IFitParameter_name(IFitParameter self) -> std::string\n" "\n" - "std::string IFitParameter::name() const\n" + "std::string IFitParameter::name() const \n" "\n" ""}, { (char *)"IFitParameter_setName", _wrap_IFitParameter_setName, METH_VARARGS, (char *)"\n" @@ -23108,7 +23108,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"IFitParameter_startValue", _wrap_IFitParameter_startValue, METH_VARARGS, (char *)"\n" "IFitParameter_startValue(IFitParameter self) -> double\n" "\n" - "double IFitParameter::startValue() const\n" + "double IFitParameter::startValue() const \n" "\n" ""}, { (char *)"IFitParameter_setStartValue", _wrap_IFitParameter_setStartValue, METH_VARARGS, (char *)"\n" @@ -23120,7 +23120,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"IFitParameter_value", _wrap_IFitParameter_value, METH_VARARGS, (char *)"\n" "IFitParameter_value(IFitParameter self) -> double\n" "\n" - "double IFitParameter::value() const\n" + "double IFitParameter::value() const \n" "\n" ""}, { (char *)"IFitParameter_setValue", _wrap_IFitParameter_setValue, METH_VARARGS, (char *)"\n" @@ -23138,7 +23138,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"IFitParameter_step", _wrap_IFitParameter_step, METH_VARARGS, (char *)"\n" "IFitParameter_step(IFitParameter self) -> double\n" "\n" - "double IFitParameter::step() const\n" + "double IFitParameter::step() const \n" "\n" ""}, { (char *)"IFitParameter_setStep", _wrap_IFitParameter_setStep, METH_VARARGS, (char *)"\n" @@ -23150,7 +23150,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"IFitParameter_error", _wrap_IFitParameter_error, METH_VARARGS, (char *)"\n" "IFitParameter_error(IFitParameter self) -> double\n" "\n" - "double IFitParameter::error() const\n" + "double IFitParameter::error() const \n" "\n" ""}, { (char *)"IFitParameter_setError", _wrap_IFitParameter_setError, METH_VARARGS, (char *)"\n" @@ -23211,7 +23211,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"IFitParameter_toString", _wrap_IFitParameter_toString, METH_VARARGS, (char *)"\n" "IFitParameter_toString(IFitParameter self) -> std::string\n" "\n" - "std::string IFitParameter::toString() const\n" + "std::string IFitParameter::toString() const \n" "\n" ""}, { (char *)"IFitParameter_swigregister", IFitParameter_swigregister, METH_VARARGS, NULL}, @@ -23247,14 +23247,14 @@ static PyMethodDef SwigMethods[] = { "begin() -> FitParameterSet::iterator\n" "FitParameterSet_begin(FitParameterSet self) -> FitParameterSet::const_iterator\n" "\n" - "FitParameterSet::const_iterator FitParameterSet::begin() const\n" + "FitParameterSet::const_iterator FitParameterSet::begin() const \n" "\n" ""}, { (char *)"FitParameterSet_end", _wrap_FitParameterSet_end, METH_VARARGS, (char *)"\n" "end() -> FitParameterSet::iterator\n" "FitParameterSet_end(FitParameterSet self) -> FitParameterSet::const_iterator\n" "\n" - "FitParameterSet::const_iterator FitParameterSet::end() const\n" + "FitParameterSet::const_iterator FitParameterSet::end() const \n" "\n" ""}, { (char *)"FitParameterSet_addFitParameter", _wrap_FitParameterSet_addFitParameter, METH_VARARGS, (char *)"\n" @@ -23348,7 +23348,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"FitParameterSet_correlationMatrix", _wrap_FitParameterSet_correlationMatrix, METH_VARARGS, (char *)"\n" "FitParameterSet_correlationMatrix(FitParameterSet self) -> vdouble2d_t\n" "\n" - "corr_matrix_t FitParameterSet::correlationMatrix() const\n" + "corr_matrix_t FitParameterSet::correlationMatrix() const \n" "\n" ""}, { (char *)"FitParameterSet_setCorrelationMatrix", _wrap_FitParameterSet_setCorrelationMatrix, METH_VARARGS, (char *)"\n" @@ -23381,7 +23381,7 @@ static PyMethodDef SwigMethods[] = { { (char *)"MinimizerCatalogue_minimizerNames", _wrap_MinimizerCatalogue_minimizerNames, METH_VARARGS, (char *)"\n" "MinimizerCatalogue_minimizerNames(MinimizerCatalogue self) -> vector_string_t\n" "\n" - "std::vector< std::string > MinimizerCatalogue::minimizerNames() const\n" + "std::vector< std::string > MinimizerCatalogue::minimizerNames() const \n" "\n" ""}, { (char *)"MinimizerCatalogue_algorithmNames", _wrap_MinimizerCatalogue_algorithmNames, METH_VARARGS, (char *)"\n" -- GitLab