Skip to content
Snippets Groups Projects
Commit b7aa9249 authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

rm unused

parent 14ba44c1
No related branches found
No related tags found
No related merge requests found
...@@ -22,8 +22,6 @@ DWBASingleComputation::DWBASingleComputation() = default; ...@@ -22,8 +22,6 @@ DWBASingleComputation::DWBASingleComputation() = default;
DWBASingleComputation::~DWBASingleComputation() = default; DWBASingleComputation::~DWBASingleComputation() = default;
DWBASingleComputation::DWBASingleComputation(DWBASingleComputation&&) = default;
void DWBASingleComputation::setProgressHandler(ProgressHandler* p_progress) void DWBASingleComputation::setProgressHandler(ProgressHandler* p_progress)
{ {
m_progress_counter = std::make_unique<DelayedProgressCounter>(p_progress, 100); m_progress_counter = std::make_unique<DelayedProgressCounter>(p_progress, 100);
...@@ -59,8 +57,3 @@ void DWBASingleComputation::compute(SimulationElement& elem) const ...@@ -59,8 +57,3 @@ void DWBASingleComputation::compute(SimulationElement& elem) const
if (m_progress_counter) if (m_progress_counter)
m_progress_counter->stepProgress(); m_progress_counter->stepProgress();
} }
const std::map<size_t, std::vector<HomogeneousRegion>>& DWBASingleComputation::regionMap() const
{
return m_region_map;
}
...@@ -39,7 +39,6 @@ class DWBASingleComputation ...@@ -39,7 +39,6 @@ class DWBASingleComputation
public: public:
DWBASingleComputation(); DWBASingleComputation();
~DWBASingleComputation(); ~DWBASingleComputation();
DWBASingleComputation(DWBASingleComputation&& other);
void setProgressHandler(ProgressHandler* p_progress); void setProgressHandler(ProgressHandler* p_progress);
...@@ -48,9 +47,6 @@ public: ...@@ -48,9 +47,6 @@ public:
void setSpecularBinComputation(GISASSpecularComputation* p_spec_comp); void setSpecularBinComputation(GISASSpecularComputation* p_spec_comp);
void compute(SimulationElement& elem) const; void compute(SimulationElement& elem) const;
//! Retrieves a map of regions for the calculation of averaged layers
const std::map<size_t, std::vector<HomogeneousRegion>>& regionMap() const;
private: private:
std::vector<std::unique_ptr<ParticleLayoutComputation>> m_layout_comps; std::vector<std::unique_ptr<ParticleLayoutComputation>> m_layout_comps;
std::unique_ptr<RoughMultiLayerComputation> m_roughness_comp; std::unique_ptr<RoughMultiLayerComputation> m_roughness_comp;
......
...@@ -420,9 +420,6 @@ C++ includes: DWBASingleComputation.h ...@@ -420,9 +420,6 @@ C++ includes: DWBASingleComputation.h
%feature("docstring") DWBASingleComputation::~DWBASingleComputation "DWBASingleComputation::~DWBASingleComputation() %feature("docstring") DWBASingleComputation::~DWBASingleComputation "DWBASingleComputation::~DWBASingleComputation()
"; ";
%feature("docstring") DWBASingleComputation::DWBASingleComputation "DWBASingleComputation::DWBASingleComputation(DWBASingleComputation &&other)
";
%feature("docstring") DWBASingleComputation::setProgressHandler "void DWBASingleComputation::setProgressHandler(ProgressHandler *p_progress) %feature("docstring") DWBASingleComputation::setProgressHandler "void DWBASingleComputation::setProgressHandler(ProgressHandler *p_progress)
"; ";
...@@ -438,11 +435,6 @@ C++ includes: DWBASingleComputation.h ...@@ -438,11 +435,6 @@ C++ includes: DWBASingleComputation.h
%feature("docstring") DWBASingleComputation::compute "void DWBASingleComputation::compute(SimulationElement &elem) const %feature("docstring") DWBASingleComputation::compute "void DWBASingleComputation::compute(SimulationElement &elem) const
"; ";
%feature("docstring") DWBASingleComputation::regionMap "const std::map< size_t, std::vector< HomogeneousRegion > > & DWBASingleComputation::regionMap() const
Retrieves a map of regions for the calculation of averaged layers.
";
// File: classFitObjective.xml // File: classFitObjective.xml
%feature("docstring") FitObjective " %feature("docstring") FitObjective "
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment