diff --git a/Resample/Processed/MaterialSlicer.cpp b/Resample/Processed/MaterialSlicer.cpp index 5d104d97f698dc5ec5fdc72530501a8d248ddccd..d60ae2889ab4079cd829f8b501f5bf68d2c086d5 100644 --- a/Resample/Processed/MaterialSlicer.cpp +++ b/Resample/Processed/MaterialSlicer.cpp @@ -28,7 +28,7 @@ namespace { //! Used for SLD (T=complex) and magnetization (T=vector). template <class T> -T averageData(const Material& layer_mat, const std::vector<HomogeneousRegion>& regions, +T averageData(const Material& layer_mat, const RegionList& regions, std::function<T(const Material&)> average) { const T layer_data = average(layer_mat); @@ -40,8 +40,7 @@ T averageData(const Material& layer_mat, const std::vector<HomogeneousRegion>& r // Tested by Tests/UnitTests/Core/Sample/MaterialTest.cpp -Material createAveragedMaterial(const Material& layer_mat, - const std::vector<HomogeneousRegion>& regions) +Material createAveragedMaterial(const Material& layer_mat, const RegionList& regions) { const std::string avge_name = layer_mat.getName() + "_avg"; @@ -81,7 +80,7 @@ Material createAveragedMaterial(const Material& layer_mat, ASSERT(0); } -void checkRegions(const std::vector<HomogeneousRegion>& regions) +void checkRegions(const RegionList& regions) { double total_fraction = 0.0; for (const auto& region : regions) diff --git a/Resample/Processed/ProcessedLayout.cpp b/Resample/Processed/ProcessedLayout.cpp index 497f12f9adfd97fa55f1aaf9f88ee85772f0f9b2..4909e6b1ac0b5047c7a00a77c97f163f7b54b51b 100644 --- a/Resample/Processed/ProcessedLayout.cpp +++ b/Resample/Processed/ProcessedLayout.cpp @@ -70,7 +70,7 @@ std::pair<size_t, size_t> SliceIndexSpan(const IParticle& particle, const SliceS return {top_index, bottom_index}; } -void ScaleRegions(std::vector<HomogeneousRegion>& regions, double factor) +void ScaleRegions(RegionList& regions, double factor) { for (auto& region : regions) region.m_volume *= factor; @@ -128,7 +128,7 @@ const IInterferenceFunction* ProcessedLayout::interferenceFunction() const return m_iff.get(); } -const std::map<size_t, std::vector<HomogeneousRegion>>& ProcessedLayout::regionMap() const +const std::map<size_t, RegionList>& ProcessedLayout::regionMap() const { return m_region_map; } @@ -144,7 +144,7 @@ CoherentFFSum ProcessedLayout::processParticle(const IParticle& particle, const const double abundance = particle.abundance(); std::vector<std::pair<std::unique_ptr<IFormFactor>, size_t>> tmp_ff_list; - std::map<size_t, std::vector<HomogeneousRegion>> tmp_region_map; + std::map<size_t, RegionList> tmp_region_map; const auto particles = particle.decompose(); for (auto* particle : particles) { @@ -169,7 +169,7 @@ CoherentFFSum ProcessedLayout::processParticle(const IParticle& particle, const if (thickness > 0.0) ScaleRegions(sliced_particle.m_regions, 1 / thickness); tmp_region_map[i].insert(tmp_region_map[i].end(), sliced_particle.m_regions.begin(), - sliced_particle.m_regions.end()); + sliced_particle.m_regions.end()); } } diff --git a/Resample/Processed/ProcessedLayout.h b/Resample/Processed/ProcessedLayout.h index 8b645762b754dbdce2b6522372c1fe9939ba0666..0343120c102f6434961b2aaac1ddab12d6e3eab0 100644 --- a/Resample/Processed/ProcessedLayout.h +++ b/Resample/Processed/ProcessedLayout.h @@ -24,13 +24,13 @@ #include <memory> #include <vector> -struct HomogeneousRegion; class CoherentFFSum; class IFresnelMap; class IInterferenceFunction; class IParticle; class ParticleLayout; class SliceStack; +class RegionList; //! Data structure that contains preprocessed data for a single layout. //! @@ -48,7 +48,7 @@ public: double surfaceDensity() const; const std::vector<CoherentFFSum>& formFactorList() const; const IInterferenceFunction* interferenceFunction() const; - const std::map<size_t, std::vector<HomogeneousRegion>>& regionMap() const; + const std::map<size_t, RegionList>& regionMap() const; private: CoherentFFSum processParticle(const IParticle& particle, const SliceStack& slices, double z_ref, @@ -59,7 +59,7 @@ private: const double m_surface_density; std::vector<CoherentFFSum> m_formfactors; std::unique_ptr<IInterferenceFunction> m_iff; - std::map<size_t, std::vector<HomogeneousRegion>> m_region_map; + std::map<size_t, RegionList> m_region_map; }; #endif // BORNAGAIN_RESAMPLE_PROCESSED_PROCESSEDLAYOUT_H diff --git a/Resample/Processed/ProcessedSample.cpp b/Resample/Processed/ProcessedSample.cpp index f8c317d2b3131a49cf2635937e6d228c5542a168..c665a1791630dc46975739cd0c408df3be76b47a 100644 --- a/Resample/Processed/ProcessedSample.cpp +++ b/Resample/Processed/ProcessedSample.cpp @@ -25,6 +25,7 @@ #include "Resample/Slice/SliceStack.h" #include "Resample/Specular/SpecularStrategyBuilder.h" #include "Sample/Interface/LayerRoughness.h" +#include "Sample/Material/HomogeneousRegion.h" #include "Sample/Multilayer/Layer.h" #include "Sample/Multilayer/MultiLayer.h" #include "Sample/Multilayer/MultilayerUtils.h" diff --git a/Sample/Material/HomogeneousRegion.h b/Sample/Material/HomogeneousRegion.h index ccd48638c01fc0af28b85cb41a5bbc91b95e8399..eed70646d9ef2c97e184fb1f33c79221011b58ca 100644 --- a/Sample/Material/HomogeneousRegion.h +++ b/Sample/Material/HomogeneousRegion.h @@ -21,6 +21,7 @@ #define BORNAGAIN_SAMPLE_MATERIAL_HOMOGENEOUSREGION_H #include "Sample/Material/Material.h" +#include <vector> //! Information on a single homogeneous region of a particle inside a single layer. //! @@ -34,5 +35,14 @@ struct HomogeneousRegion { Material m_material; }; +class RegionList : public std::vector<HomogeneousRegion> { +public: + RegionList() = default; + RegionList(const std::vector<HomogeneousRegion>& _super) + : std::vector<HomogeneousRegion>(_super) + { + } +}; + #endif // BORNAGAIN_SAMPLE_MATERIAL_HOMOGENEOUSREGION_H #endif // USER_API diff --git a/Sample/Particle/Crystal.cpp b/Sample/Particle/Crystal.cpp index c202df532653d9d05d5731f3fc404c1f2287dbce..0b8c2f3c9d91707d1051b833f33338b8f7ffbec1 100644 --- a/Sample/Particle/Crystal.cpp +++ b/Sample/Particle/Crystal.cpp @@ -59,9 +59,9 @@ IFormFactor* Crystal::createTotalFormFactor(const IFormFactor& meso_crystal_form m_position_variance); } -std::vector<HomogeneousRegion> Crystal::homogeneousRegions() const +RegionList Crystal::homogeneousRegions() const { - std::vector<HomogeneousRegion> result; + RegionList result; double unit_cell_volume = m_lattice.unitCellVolume(); if (unit_cell_volume <= 0) return {}; diff --git a/Sample/Particle/Crystal.h b/Sample/Particle/Crystal.h index 083ff5eb5228d7faf0d3e7ba8928a43db2106f82..c2f6be89f9efd9d8bce8a1d11ad71b7187b0f4c8 100644 --- a/Sample/Particle/Crystal.h +++ b/Sample/Particle/Crystal.h @@ -20,7 +20,7 @@ class IFormFactor; class IRotation; -struct HomogeneousRegion; +class RegionList; //! A crystal structure, defined by a Bravais lattice, a basis, and a position variance. //! @@ -45,7 +45,7 @@ public: const IRotation* p_rotation, const kvector_t& translation) const; - std::vector<HomogeneousRegion> homogeneousRegions() const; + RegionList homogeneousRegions() const; Lattice3D transformedLattice(const IRotation* p_rotation = nullptr) const; diff --git a/Sample/Particle/Particle.cpp b/Sample/Particle/Particle.cpp index 8af7aa8572777329885c362416c3368720cba4b3..6b6d5500b68ed6d51651d6d67350ea1171c47be0 100644 --- a/Sample/Particle/Particle.cpp +++ b/Sample/Particle/Particle.cpp @@ -70,7 +70,7 @@ SlicedParticle Particle::createSlicedParticle(const ZLimits& limits) const double volume = sliced_raw_ff->volume(); Material transformed_material(m_material.rotatedMaterial(rotation->getTransform3D())); sliced_ff->setMaterial(transformed_material); - return {std::move(sliced_ff), {{volume, transformed_material}}}; + return {std::move(sliced_ff), {{{volume, transformed_material}}}}; } void Particle::setMaterial(Material material) diff --git a/Sample/Particle/SlicedParticle.h b/Sample/Particle/SlicedParticle.h index 455ce37eb996f710e93aa31daeebb2aa56fd8e11..20ad3136f755d3755d71713aebefa176d4038496 100644 --- a/Sample/Particle/SlicedParticle.h +++ b/Sample/Particle/SlicedParticle.h @@ -32,7 +32,7 @@ struct SlicedParticle { std::unique_ptr<IFormFactor> m_sliced_ff; - std::vector<HomogeneousRegion> m_regions; + RegionList m_regions; }; #endif // BORNAGAIN_SAMPLE_PARTICLE_SLICEDPARTICLE_H diff --git a/Tests/UnitTests/Core/Sample/MaterialTest.cpp b/Tests/UnitTests/Core/Sample/MaterialTest.cpp index cdfc1a6614afd3314e830e5c984ab94e1a0827c6..1ff6771d1aa6d21a981ddcb0fe09d50096090226 100644 --- a/Tests/UnitTests/Core/Sample/MaterialTest.cpp +++ b/Tests/UnitTests/Core/Sample/MaterialTest.cpp @@ -143,8 +143,8 @@ TEST_F(MaterialTest, AveragedMaterialTest) { kvector_t magnetization = kvector_t{1.0, 0.0, 0.0}; const Material material = HomogeneousMaterial("Material", 0.5, 0.5, magnetization); - const std::vector<HomogeneousRegion> regions = {HomogeneousRegion{0.25, material}, - HomogeneousRegion{0.25, material}}; + const RegionList regions = { + {HomogeneousRegion{0.25, material}, HomogeneousRegion{0.25, material}}}; const Material material_avr = createAveragedMaterial(material, regions); EXPECT_EQ(material_avr.magnetization(), magnetization); @@ -164,8 +164,8 @@ TEST_F(MaterialTest, AveragedMaterialTest) EXPECT_THROW(createAveragedMaterial(material3, regions), std::runtime_error); const Material material4 = HomogeneousMaterial(); - const std::vector<HomogeneousRegion> regions2 = {HomogeneousRegion{0.25, material3}, - HomogeneousRegion{0.25, material3}}; + const RegionList regions2 = { + {HomogeneousRegion{0.25, material3}, HomogeneousRegion{0.25, material3}}}; const Material material_avr3 = createAveragedMaterial(material4, regions2); EXPECT_DOUBLE_EQ(material_avr3.materialData().real(), 0.25); EXPECT_DOUBLE_EQ(material_avr3.materialData().imag(), 0.25); diff --git a/auto/Wrap/doxygenResample.i b/auto/Wrap/doxygenResample.i index c2e0452f9bb7aa2941f5f336ba6171167c901fa2..c85ad1f526bde03bbfc63ce73833a8d786f787cd 100644 --- a/auto/Wrap/doxygenResample.i +++ b/auto/Wrap/doxygenResample.i @@ -496,7 +496,7 @@ C++ includes: ProcessedLayout.h %feature("docstring") ProcessedLayout::interferenceFunction "const IInterferenceFunction * ProcessedLayout::interferenceFunction() const "; -%feature("docstring") ProcessedLayout::regionMap "const std::map< size_t, std::vector< HomogeneousRegion > > & ProcessedLayout::regionMap() const +%feature("docstring") ProcessedLayout::regionMap "const std::map< size_t, RegionList > & ProcessedLayout::regionMap() const "; @@ -796,32 +796,6 @@ Initializes the magnetic B field from a given ambient field strength H. "; -// File: classSlicedFormFactorList.xml -%feature("docstring") SlicedFormFactorList " - -Contains and owns a list of form factors and the index of their containing layer. - -This class also handles the slicing of form factors if they cross layer interfaces. - -C++ includes: SlicedFormFactorList.h -"; - -%feature("docstring") SlicedFormFactorList::SlicedFormFactorList "SlicedFormFactorList::SlicedFormFactorList(const IParticle &particle, const SliceStack &slices, double z_ref) -"; - -%feature("docstring") SlicedFormFactorList::SlicedFormFactorList "SlicedFormFactorList::SlicedFormFactorList(const SlicedFormFactorList &other)=delete -"; - -%feature("docstring") SlicedFormFactorList::size "size_t SlicedFormFactorList::size() const -"; - -%feature("docstring") SlicedFormFactorList::getPair "std::pair< const IFormFactor *, size_t > SlicedFormFactorList::getPair(size_t index) const -"; - -%feature("docstring") SlicedFormFactorList::regionMap "const std::map< size_t, std::vector< HomogeneousRegion > > & SlicedFormFactorList::regionMap() const -"; - - // File: classSliceStack.xml %feature("docstring") SliceStack " @@ -971,6 +945,9 @@ C++ includes: SSCAStrategy.h // File: namespace_0d39.xml +// File: namespace_0d41.xml + + // File: namespace_0d43.xml @@ -980,7 +957,7 @@ C++ includes: SSCAStrategy.h // File: namespace_0d47.xml -// File: namespace_0d51.xml +// File: namespace_0d54.xml // File: namespace_0d56.xml @@ -989,15 +966,12 @@ C++ includes: SSCAStrategy.h // File: namespace_0d58.xml -// File: namespace_0d60.xml +// File: namespace_0d62.xml // File: namespace_0d64.xml -// File: namespace_0d66.xml - - // File: namespaceSampleUtils.xml @@ -1201,12 +1175,6 @@ Get default z limits for generating a material profile. // File: Slice_8h.xml -// File: SlicedFormFactorList_8cpp.xml - - -// File: SlicedFormFactorList_8h.xml - - // File: SliceStack_8cpp.xml diff --git a/auto/Wrap/doxygenSample.i b/auto/Wrap/doxygenSample.i index 4bd553501afb7a2bc9577e70a33bf0bef1d4c7a4..53f9f07b92469c313e37428d976150ce20af23f4 100644 --- a/auto/Wrap/doxygenSample.i +++ b/auto/Wrap/doxygenSample.i @@ -345,7 +345,7 @@ Returns a clone of this ISampleNode object. %feature("docstring") Crystal::createTotalFormFactor "IFormFactor * Crystal::createTotalFormFactor(const IFormFactor &meso_crystal_form_factor, const IRotation *p_rotation, const kvector_t &translation) const "; -%feature("docstring") Crystal::homogeneousRegions "std::vector< HomogeneousRegion > Crystal::homogeneousRegions() const +%feature("docstring") Crystal::homogeneousRegions "RegionList Crystal::homogeneousRegions() const "; %feature("docstring") Crystal::transformedLattice "Lattice3D Crystal::transformedLattice(const IRotation *p_rotation=nullptr) const @@ -5709,6 +5709,16 @@ Prints object data. "; +// File: classRegionList.xml +%feature("docstring") RegionList ""; + +%feature("docstring") RegionList::RegionList "RegionList::RegionList()=default +"; + +%feature("docstring") RegionList::RegionList "RegionList::RegionList(const std::vector< HomogeneousRegion > &_super) +"; + + // File: classResonatorBuilder.xml %feature("docstring") ResonatorBuilder " @@ -6610,6 +6620,9 @@ Used by the hard sphere and by several soft sphere classes. "; +// File: namespacestd.xml + + // File: IInterferenceFunction_8cpp.xml diff --git a/auto/Wrap/libBornAgainSample.py b/auto/Wrap/libBornAgainSample.py index 15732bb89876f1a5764b5e2c8392257e3a0b3e2e..b3f1e9aad6812658449fcc6980df75820fccf0df 100644 --- a/auto/Wrap/libBornAgainSample.py +++ b/auto/Wrap/libBornAgainSample.py @@ -4342,8 +4342,8 @@ class Crystal(ISampleNode): def homogeneousRegions(self): r""" - homogeneousRegions(Crystal self) -> std::vector< HomogeneousRegion,std::allocator< HomogeneousRegion > > - std::vector< HomogeneousRegion > Crystal::homogeneousRegions() const + homogeneousRegions(Crystal self) -> RegionList + RegionList Crystal::homogeneousRegions() const """ return _libBornAgainSample.Crystal_homogeneousRegions(self) diff --git a/auto/Wrap/libBornAgainSample_wrap.cpp b/auto/Wrap/libBornAgainSample_wrap.cpp index 55f41b17e98dc9d868e69bdab6622defb2ae3131..a4f17cf38193a8e4f324768616098e91cd29a7ce 100644 --- a/auto/Wrap/libBornAgainSample_wrap.cpp +++ b/auto/Wrap/libBornAgainSample_wrap.cpp @@ -3217,61 +3217,61 @@ namespace Swig { #define SWIGTYPE_p_ParticleComposition swig_types[117] #define SWIGTYPE_p_ParticleCoreShell swig_types[118] #define SWIGTYPE_p_ParticleLayout swig_types[119] -#define SWIGTYPE_p_RotationEuler swig_types[120] -#define SWIGTYPE_p_RotationX swig_types[121] -#define SWIGTYPE_p_RotationY swig_types[122] -#define SWIGTYPE_p_RotationZ swig_types[123] -#define SWIGTYPE_p_RoughnessModelWrap swig_types[124] -#define SWIGTYPE_p_RoughnessModelWrap__RoughnessModel swig_types[125] -#define SWIGTYPE_p_SafePointerVectorT_IParticle_t swig_types[126] -#define SWIGTYPE_p_SampleBuilderFactory swig_types[127] -#define SWIGTYPE_p_SimpleSelectionRule swig_types[128] -#define SWIGTYPE_p_SimulationElement swig_types[129] -#define SWIGTYPE_p_SlicedParticle swig_types[130] -#define SWIGTYPE_p_SlicingEffects swig_types[131] -#define SWIGTYPE_p_SquareLattice2D swig_types[132] -#define SWIGTYPE_p_Transform3D swig_types[133] -#define SWIGTYPE_p_WavevectorInfo swig_types[134] -#define SWIGTYPE_p_ZLimits swig_types[135] -#define SWIGTYPE_p_allocator_type swig_types[136] -#define SWIGTYPE_p_char swig_types[137] -#define SWIGTYPE_p_difference_type swig_types[138] -#define SWIGTYPE_p_double swig_types[139] -#define SWIGTYPE_p_first_type swig_types[140] -#define SWIGTYPE_p_int swig_types[141] -#define SWIGTYPE_p_key_type swig_types[142] -#define SWIGTYPE_p_long_long swig_types[143] -#define SWIGTYPE_p_mapped_type swig_types[144] -#define SWIGTYPE_p_p_PyObject swig_types[145] -#define SWIGTYPE_p_second_type swig_types[146] -#define SWIGTYPE_p_short swig_types[147] -#define SWIGTYPE_p_signed_char swig_types[148] -#define SWIGTYPE_p_size_type swig_types[149] -#define SWIGTYPE_p_std__allocatorT_BasicVector3DT_double_t_t swig_types[150] -#define SWIGTYPE_p_std__allocatorT_BasicVector3DT_std__complexT_double_t_t_t swig_types[151] -#define SWIGTYPE_p_std__allocatorT_IFormFactor_p_t swig_types[152] -#define SWIGTYPE_p_std__allocatorT_INode_const_p_t swig_types[153] -#define SWIGTYPE_p_std__allocatorT_INode_p_t swig_types[154] -#define SWIGTYPE_p_std__allocatorT_double_t swig_types[155] -#define SWIGTYPE_p_std__allocatorT_int_t swig_types[156] -#define SWIGTYPE_p_std__allocatorT_std__complexT_double_t_t swig_types[157] -#define SWIGTYPE_p_std__allocatorT_std__pairT_double_double_t_t swig_types[158] -#define SWIGTYPE_p_std__allocatorT_std__pairT_std__string_const_double_t_t swig_types[159] -#define SWIGTYPE_p_std__allocatorT_std__string_t swig_types[160] -#define SWIGTYPE_p_std__allocatorT_std__vectorT_double_std__allocatorT_double_t_t_t swig_types[161] -#define SWIGTYPE_p_std__allocatorT_std__vectorT_int_std__allocatorT_int_t_t_t swig_types[162] -#define SWIGTYPE_p_std__allocatorT_unsigned_long_t swig_types[163] -#define SWIGTYPE_p_std__complexT_double_t swig_types[164] -#define SWIGTYPE_p_std__functionT_ISampleBuilder_pfF_t swig_types[165] -#define SWIGTYPE_p_std__invalid_argument swig_types[166] -#define SWIGTYPE_p_std__lessT_std__string_t swig_types[167] -#define SWIGTYPE_p_std__mapT_std__string_double_std__lessT_std__string_t_std__allocatorT_std__pairT_std__string_const_double_t_t_t swig_types[168] -#define SWIGTYPE_p_std__ostream swig_types[169] -#define SWIGTYPE_p_std__pairT_double_double_t swig_types[170] -#define SWIGTYPE_p_std__shared_ptrT_ISampleBuilder_t swig_types[171] -#define SWIGTYPE_p_std__vectorT_BasicVector3DT_double_t_std__allocatorT_BasicVector3DT_double_t_t_t swig_types[172] -#define SWIGTYPE_p_std__vectorT_BasicVector3DT_std__complexT_double_t_t_std__allocatorT_BasicVector3DT_std__complexT_double_t_t_t_t swig_types[173] -#define SWIGTYPE_p_std__vectorT_HomogeneousRegion_std__allocatorT_HomogeneousRegion_t_t swig_types[174] +#define SWIGTYPE_p_RegionList swig_types[120] +#define SWIGTYPE_p_RotationEuler swig_types[121] +#define SWIGTYPE_p_RotationX swig_types[122] +#define SWIGTYPE_p_RotationY swig_types[123] +#define SWIGTYPE_p_RotationZ swig_types[124] +#define SWIGTYPE_p_RoughnessModelWrap swig_types[125] +#define SWIGTYPE_p_RoughnessModelWrap__RoughnessModel swig_types[126] +#define SWIGTYPE_p_SafePointerVectorT_IParticle_t swig_types[127] +#define SWIGTYPE_p_SampleBuilderFactory swig_types[128] +#define SWIGTYPE_p_SimpleSelectionRule swig_types[129] +#define SWIGTYPE_p_SimulationElement swig_types[130] +#define SWIGTYPE_p_SlicedParticle swig_types[131] +#define SWIGTYPE_p_SlicingEffects swig_types[132] +#define SWIGTYPE_p_SquareLattice2D swig_types[133] +#define SWIGTYPE_p_Transform3D swig_types[134] +#define SWIGTYPE_p_WavevectorInfo swig_types[135] +#define SWIGTYPE_p_ZLimits swig_types[136] +#define SWIGTYPE_p_allocator_type swig_types[137] +#define SWIGTYPE_p_char swig_types[138] +#define SWIGTYPE_p_difference_type swig_types[139] +#define SWIGTYPE_p_double swig_types[140] +#define SWIGTYPE_p_first_type swig_types[141] +#define SWIGTYPE_p_int swig_types[142] +#define SWIGTYPE_p_key_type swig_types[143] +#define SWIGTYPE_p_long_long swig_types[144] +#define SWIGTYPE_p_mapped_type swig_types[145] +#define SWIGTYPE_p_p_PyObject swig_types[146] +#define SWIGTYPE_p_second_type swig_types[147] +#define SWIGTYPE_p_short swig_types[148] +#define SWIGTYPE_p_signed_char swig_types[149] +#define SWIGTYPE_p_size_type swig_types[150] +#define SWIGTYPE_p_std__allocatorT_BasicVector3DT_double_t_t swig_types[151] +#define SWIGTYPE_p_std__allocatorT_BasicVector3DT_std__complexT_double_t_t_t swig_types[152] +#define SWIGTYPE_p_std__allocatorT_IFormFactor_p_t swig_types[153] +#define SWIGTYPE_p_std__allocatorT_INode_const_p_t swig_types[154] +#define SWIGTYPE_p_std__allocatorT_INode_p_t swig_types[155] +#define SWIGTYPE_p_std__allocatorT_double_t swig_types[156] +#define SWIGTYPE_p_std__allocatorT_int_t swig_types[157] +#define SWIGTYPE_p_std__allocatorT_std__complexT_double_t_t swig_types[158] +#define SWIGTYPE_p_std__allocatorT_std__pairT_double_double_t_t swig_types[159] +#define SWIGTYPE_p_std__allocatorT_std__pairT_std__string_const_double_t_t swig_types[160] +#define SWIGTYPE_p_std__allocatorT_std__string_t swig_types[161] +#define SWIGTYPE_p_std__allocatorT_std__vectorT_double_std__allocatorT_double_t_t_t swig_types[162] +#define SWIGTYPE_p_std__allocatorT_std__vectorT_int_std__allocatorT_int_t_t_t swig_types[163] +#define SWIGTYPE_p_std__allocatorT_unsigned_long_t swig_types[164] +#define SWIGTYPE_p_std__complexT_double_t swig_types[165] +#define SWIGTYPE_p_std__functionT_ISampleBuilder_pfF_t swig_types[166] +#define SWIGTYPE_p_std__invalid_argument swig_types[167] +#define SWIGTYPE_p_std__lessT_std__string_t swig_types[168] +#define SWIGTYPE_p_std__mapT_std__string_double_std__lessT_std__string_t_std__allocatorT_std__pairT_std__string_const_double_t_t_t swig_types[169] +#define SWIGTYPE_p_std__ostream swig_types[170] +#define SWIGTYPE_p_std__pairT_double_double_t swig_types[171] +#define SWIGTYPE_p_std__shared_ptrT_ISampleBuilder_t swig_types[172] +#define SWIGTYPE_p_std__vectorT_BasicVector3DT_double_t_std__allocatorT_BasicVector3DT_double_t_t_t swig_types[173] +#define SWIGTYPE_p_std__vectorT_BasicVector3DT_std__complexT_double_t_t_std__allocatorT_BasicVector3DT_std__complexT_double_t_t_t_t swig_types[174] #define SWIGTYPE_p_std__vectorT_IFormFactor_p_std__allocatorT_IFormFactor_p_t_t swig_types[175] #define SWIGTYPE_p_std__vectorT_INode_const_p_std__allocatorT_INode_const_p_t_t swig_types[176] #define SWIGTYPE_p_std__vectorT_INode_p_std__allocatorT_INode_p_t_t swig_types[177] @@ -42721,7 +42721,7 @@ SWIGINTERN PyObject *_wrap_Crystal_homogeneousRegions(PyObject *SWIGUNUSEDPARM(s void *argp1 = 0 ; int res1 = 0 ; PyObject *swig_obj[1] ; - SwigValueWrapper< std::vector< HomogeneousRegion,std::allocator< HomogeneousRegion > > > result; + RegionList result; if (!args) SWIG_fail; swig_obj[0] = args; @@ -42731,7 +42731,7 @@ SWIGINTERN PyObject *_wrap_Crystal_homogeneousRegions(PyObject *SWIGUNUSEDPARM(s } arg1 = reinterpret_cast< Crystal * >(argp1); result = ((Crystal const *)arg1)->homogeneousRegions(); - resultobj = SWIG_NewPointerObj((new std::vector< HomogeneousRegion,std::allocator< HomogeneousRegion > >(static_cast< const std::vector< HomogeneousRegion,std::allocator< HomogeneousRegion > >& >(result))), SWIGTYPE_p_std__vectorT_HomogeneousRegion_std__allocatorT_HomogeneousRegion_t_t, SWIG_POINTER_OWN | 0 ); + resultobj = SWIG_NewPointerObj((new RegionList(static_cast< const RegionList& >(result))), SWIGTYPE_p_RegionList, SWIG_POINTER_OWN | 0 ); return resultobj; fail: return NULL; @@ -69612,8 +69612,8 @@ static PyMethodDef SwigMethods[] = { "\n" ""}, { "Crystal_homogeneousRegions", _wrap_Crystal_homogeneousRegions, METH_O, "\n" - "Crystal_homogeneousRegions(Crystal self) -> std::vector< HomogeneousRegion,std::allocator< HomogeneousRegion > >\n" - "std::vector< HomogeneousRegion > Crystal::homogeneousRegions() const\n" + "Crystal_homogeneousRegions(Crystal self) -> RegionList\n" + "RegionList Crystal::homogeneousRegions() const\n" "\n" ""}, { "Crystal_transformedLattice", _wrap_Crystal_transformedLattice, METH_VARARGS, "\n" @@ -75807,6 +75807,7 @@ static swig_type_info _swigt__p_Particle = {"_p_Particle", "Particle *", 0, 0, ( static swig_type_info _swigt__p_ParticleComposition = {"_p_ParticleComposition", "ParticleComposition *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_ParticleCoreShell = {"_p_ParticleCoreShell", "ParticleCoreShell *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_ParticleLayout = {"_p_ParticleLayout", "ParticleLayout *", 0, 0, (void*)0, 0}; +static swig_type_info _swigt__p_RegionList = {"_p_RegionList", "RegionList *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_RotationEuler = {"_p_RotationEuler", "RotationEuler *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_RotationX = {"_p_RotationX", "RotationX *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_RotationY = {"_p_RotationY", "RotationY *", 0, 0, (void*)0, 0}; @@ -75861,7 +75862,6 @@ static swig_type_info _swigt__p_std__pairT_double_double_t = {"_p_std__pairT_dou static swig_type_info _swigt__p_std__shared_ptrT_ISampleBuilder_t = {"_p_std__shared_ptrT_ISampleBuilder_t", "std::shared_ptr< ISampleBuilder > *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_std__vectorT_BasicVector3DT_double_t_std__allocatorT_BasicVector3DT_double_t_t_t = {"_p_std__vectorT_BasicVector3DT_double_t_std__allocatorT_BasicVector3DT_double_t_t_t", "std::vector< BasicVector3D< double > > *|std::vector< BasicVector3D< double >,std::allocator< BasicVector3D< double > > > *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_std__vectorT_BasicVector3DT_std__complexT_double_t_t_std__allocatorT_BasicVector3DT_std__complexT_double_t_t_t_t = {"_p_std__vectorT_BasicVector3DT_std__complexT_double_t_t_std__allocatorT_BasicVector3DT_std__complexT_double_t_t_t_t", "std::vector< BasicVector3D< std::complex< double > > > *|std::vector< BasicVector3D< std::complex< double > >,std::allocator< BasicVector3D< std::complex< double > > > > *", 0, 0, (void*)0, 0}; -static swig_type_info _swigt__p_std__vectorT_HomogeneousRegion_std__allocatorT_HomogeneousRegion_t_t = {"_p_std__vectorT_HomogeneousRegion_std__allocatorT_HomogeneousRegion_t_t", "std::vector< HomogeneousRegion,std::allocator< HomogeneousRegion > > *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_std__vectorT_IFormFactor_p_std__allocatorT_IFormFactor_p_t_t = {"_p_std__vectorT_IFormFactor_p_std__allocatorT_IFormFactor_p_t_t", "std::vector< IFormFactor *,std::allocator< IFormFactor * > > *|std::vector< IFormFactor * > *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_std__vectorT_INode_const_p_std__allocatorT_INode_const_p_t_t = {"_p_std__vectorT_INode_const_p_std__allocatorT_INode_const_p_t_t", "std::vector< INode const *,std::allocator< INode const * > > *|std::vector< INode const * > *", 0, 0, (void*)0, 0}; static swig_type_info _swigt__p_std__vectorT_INode_p_std__allocatorT_INode_p_t_t = {"_p_std__vectorT_INode_p_std__allocatorT_INode_p_t_t", "std::vector< INode *,std::allocator< INode * > > *|std::vector< INode * > *", 0, 0, (void*)0, 0}; @@ -76003,6 +76003,7 @@ static swig_type_info *swig_type_initial[] = { &_swigt__p_ParticleComposition, &_swigt__p_ParticleCoreShell, &_swigt__p_ParticleLayout, + &_swigt__p_RegionList, &_swigt__p_RotationEuler, &_swigt__p_RotationX, &_swigt__p_RotationY, @@ -76057,7 +76058,6 @@ static swig_type_info *swig_type_initial[] = { &_swigt__p_std__shared_ptrT_ISampleBuilder_t, &_swigt__p_std__vectorT_BasicVector3DT_double_t_std__allocatorT_BasicVector3DT_double_t_t_t, &_swigt__p_std__vectorT_BasicVector3DT_std__complexT_double_t_t_std__allocatorT_BasicVector3DT_std__complexT_double_t_t_t_t, - &_swigt__p_std__vectorT_HomogeneousRegion_std__allocatorT_HomogeneousRegion_t_t, &_swigt__p_std__vectorT_IFormFactor_p_std__allocatorT_IFormFactor_p_t_t, &_swigt__p_std__vectorT_INode_const_p_std__allocatorT_INode_const_p_t_t, &_swigt__p_std__vectorT_INode_p_std__allocatorT_INode_p_t_t, @@ -76199,6 +76199,7 @@ static swig_cast_info _swigc__p_Particle[] = { {&_swigt__p_Particle, 0, 0, 0},{ static swig_cast_info _swigc__p_ParticleComposition[] = { {&_swigt__p_ParticleComposition, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_ParticleCoreShell[] = { {&_swigt__p_ParticleCoreShell, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_ParticleLayout[] = { {&_swigt__p_ParticleLayout, 0, 0, 0},{0, 0, 0, 0}}; +static swig_cast_info _swigc__p_RegionList[] = { {&_swigt__p_RegionList, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_RotationEuler[] = { {&_swigt__p_RotationEuler, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_RotationX[] = { {&_swigt__p_RotationX, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_RotationY[] = { {&_swigt__p_RotationY, 0, 0, 0},{0, 0, 0, 0}}; @@ -76253,7 +76254,6 @@ static swig_cast_info _swigc__p_std__pairT_double_double_t[] = { {&_swigt__p_st static swig_cast_info _swigc__p_std__shared_ptrT_ISampleBuilder_t[] = { {&_swigt__p_std__shared_ptrT_ISampleBuilder_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_std__vectorT_BasicVector3DT_double_t_std__allocatorT_BasicVector3DT_double_t_t_t[] = { {&_swigt__p_std__vectorT_BasicVector3DT_double_t_std__allocatorT_BasicVector3DT_double_t_t_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_std__vectorT_BasicVector3DT_std__complexT_double_t_t_std__allocatorT_BasicVector3DT_std__complexT_double_t_t_t_t[] = { {&_swigt__p_std__vectorT_BasicVector3DT_std__complexT_double_t_t_std__allocatorT_BasicVector3DT_std__complexT_double_t_t_t_t, 0, 0, 0},{0, 0, 0, 0}}; -static swig_cast_info _swigc__p_std__vectorT_HomogeneousRegion_std__allocatorT_HomogeneousRegion_t_t[] = { {&_swigt__p_std__vectorT_HomogeneousRegion_std__allocatorT_HomogeneousRegion_t_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_std__vectorT_IFormFactor_p_std__allocatorT_IFormFactor_p_t_t[] = { {&_swigt__p_std__vectorT_IFormFactor_p_std__allocatorT_IFormFactor_p_t_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_std__vectorT_INode_const_p_std__allocatorT_INode_const_p_t_t[] = { {&_swigt__p_std__vectorT_INode_const_p_std__allocatorT_INode_const_p_t_t, 0, 0, 0},{0, 0, 0, 0}}; static swig_cast_info _swigc__p_std__vectorT_INode_p_std__allocatorT_INode_p_t_t[] = { {&_swigt__p_std__vectorT_INode_p_std__allocatorT_INode_p_t_t, 0, 0, 0},{0, 0, 0, 0}}; @@ -76395,6 +76395,7 @@ static swig_cast_info *swig_cast_initial[] = { _swigc__p_ParticleComposition, _swigc__p_ParticleCoreShell, _swigc__p_ParticleLayout, + _swigc__p_RegionList, _swigc__p_RotationEuler, _swigc__p_RotationX, _swigc__p_RotationY, @@ -76449,7 +76450,6 @@ static swig_cast_info *swig_cast_initial[] = { _swigc__p_std__shared_ptrT_ISampleBuilder_t, _swigc__p_std__vectorT_BasicVector3DT_double_t_std__allocatorT_BasicVector3DT_double_t_t_t, _swigc__p_std__vectorT_BasicVector3DT_std__complexT_double_t_t_std__allocatorT_BasicVector3DT_std__complexT_double_t_t_t_t, - _swigc__p_std__vectorT_HomogeneousRegion_std__allocatorT_HomogeneousRegion_t_t, _swigc__p_std__vectorT_IFormFactor_p_std__allocatorT_IFormFactor_p_t_t, _swigc__p_std__vectorT_INode_const_p_std__allocatorT_INode_const_p_t_t, _swigc__p_std__vectorT_INode_p_std__allocatorT_INode_p_t_t,