Skip to content
Snippets Groups Projects
Commit 645f4c5b authored by Van Herck, Walter's avatar Van Herck, Walter
Browse files

Use method call instead of function call operator in case when for_each cannot be used

parent 7840cace
No related branches found
No related tags found
No related merge requests found
...@@ -71,7 +71,7 @@ void DWBAComputation::runProtected() ...@@ -71,7 +71,7 @@ void DWBAComputation::runProtected()
if (!mp_progress->alive()) if (!mp_progress->alive())
return; return;
for (auto it=m_begin_it; it != m_end_it; ++it) { for (auto it=m_begin_it; it != m_end_it; ++it) {
m_single_computation(*it); m_single_computation.compute(*it);
} }
} }
......
...@@ -45,7 +45,7 @@ void DWBASingleComputation::setSpecularBinComputation(GISASSpecularComputation* ...@@ -45,7 +45,7 @@ void DWBASingleComputation::setSpecularBinComputation(GISASSpecularComputation*
mP_spec_comp.reset(p_spec_comp); mP_spec_comp.reset(p_spec_comp);
} }
void DWBASingleComputation::operator()(SimulationElement& elem) const void DWBASingleComputation::compute(SimulationElement& elem) const
{ {
for (auto& layout_comp : m_layout_comps) { for (auto& layout_comp : m_layout_comps) {
layout_comp->compute(elem); layout_comp->compute(elem);
......
...@@ -46,7 +46,7 @@ public: ...@@ -46,7 +46,7 @@ public:
void addLayoutComputation(ParticleLayoutComputation* p_layout_comp); void addLayoutComputation(ParticleLayoutComputation* p_layout_comp);
void setRoughnessComputation(RoughMultiLayerComputation* p_roughness_comp); void setRoughnessComputation(RoughMultiLayerComputation* p_roughness_comp);
void setSpecularBinComputation(GISASSpecularComputation* p_spec_comp); void setSpecularBinComputation(GISASSpecularComputation* p_spec_comp);
void operator()(SimulationElement& elem) const; void compute(SimulationElement& elem) const;
//! Merges its region map into the given one (notice non-const reference parameter) //! Merges its region map into the given one (notice non-const reference parameter)
void mergeRegionMap(std::map<size_t, std::vector<HomogeneousRegion>>& region_map) const; void mergeRegionMap(std::map<size_t, std::vector<HomogeneousRegion>>& region_map) const;
......
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