diff --git a/Core/Computation/ConstantBackground.cpp b/Core/Computation/ConstantBackground.cpp index 06c857411ec943d9d57b647b2e261f3e8e3911f4..22b34d0dcbefe714e313c15455465c662a426fa8 100644 --- a/Core/Computation/ConstantBackground.cpp +++ b/Core/Computation/ConstantBackground.cpp @@ -31,9 +31,9 @@ ConstantBackground* ConstantBackground::clone() const return new ConstantBackground(m_background_value); } -void ConstantBackground::addBackGround(SimulationElement& element) const +double ConstantBackground::addBackGround(double intensity) const { - element.addIntensity(m_background_value); + return intensity + m_background_value; } void ConstantBackground::init_parameters() diff --git a/Core/Computation/ConstantBackground.h b/Core/Computation/ConstantBackground.h index 1dac807c0a323961db2206fceed0880fa3aabaee..7e607b2bedc20f96139e1168b1c88999d0f336e6 100644 --- a/Core/Computation/ConstantBackground.h +++ b/Core/Computation/ConstantBackground.h @@ -32,7 +32,7 @@ public: void accept(INodeVisitor* visitor) const override { visitor->visit(this); } - void addBackGround(SimulationElement& element) const override final; + double addBackGround(double intensity) const override final; private: void init_parameters(); diff --git a/Core/Computation/IBackground.cpp b/Core/Computation/IBackground.cpp index c565002d07039780ac4a1725ceedae76c1be399c..df3af9661cfb763c4e2734e43eacc0ed18c846e5 100644 --- a/Core/Computation/IBackground.cpp +++ b/Core/Computation/IBackground.cpp @@ -15,11 +15,4 @@ #include "IBackground.h" #include "SimulationElement.h" -IBackground::~IBackground() {} - -void IBackground::addBackGround(std::vector<SimulationElement>::iterator start, - std::vector<SimulationElement>::iterator end) const -{ - for (auto it = start; it != end; it++) - addBackGround(*it); -} +IBackground::~IBackground() = default; diff --git a/Core/Computation/IBackground.h b/Core/Computation/IBackground.h index 267092196d77573c5a507d595aea471c8be7c9a7..dfe43cbd9a90f33a8a37f737a58fd7452a0b5676 100644 --- a/Core/Computation/IBackground.h +++ b/Core/Computation/IBackground.h @@ -31,10 +31,7 @@ public: virtual ~IBackground(); virtual IBackground* clone() const =0; - void addBackGround(std::vector<SimulationElement>::iterator start, - std::vector<SimulationElement>::iterator end) const; - - virtual void addBackGround(SimulationElement& element) const = 0; + virtual double addBackGround(double element) const = 0; }; #endif // IBACKGROUND_H diff --git a/Core/Computation/PoissonNoiseBackground.cpp b/Core/Computation/PoissonNoiseBackground.cpp index ef125f62f0331845dc4122a2a62c4ef449f3a829..4dd3a9f531826045b6ab212d7d8a0619af308745 100644 --- a/Core/Computation/PoissonNoiseBackground.cpp +++ b/Core/Computation/PoissonNoiseBackground.cpp @@ -28,8 +28,7 @@ PoissonNoiseBackground*PoissonNoiseBackground::clone() const return new PoissonNoiseBackground; } -void PoissonNoiseBackground::addBackGround(SimulationElement& element) const +double PoissonNoiseBackground::addBackGround(double intensity) const { - const double intensity = element.getIntensity(); - element.setIntensity(MathFunctions::GeneratePoissonRandom(intensity)); + return MathFunctions::GeneratePoissonRandom(intensity); } diff --git a/Core/Computation/PoissonNoiseBackground.h b/Core/Computation/PoissonNoiseBackground.h index 1add566fc8e09160088c7b3df77bff251a425e6f..2910923b70b51cd9960f89f1efef5c2ccc50c1a6 100644 --- a/Core/Computation/PoissonNoiseBackground.h +++ b/Core/Computation/PoissonNoiseBackground.h @@ -30,7 +30,7 @@ public: void accept(INodeVisitor* visitor) const override { visitor->visit(this); } - void addBackGround(SimulationElement& element) const override final; + double addBackGround(double intensity) const override final; }; #endif // POISSONNOISEBACKGROUND_H diff --git a/Core/Simulation/Simulation2D.cpp b/Core/Simulation/Simulation2D.cpp index 4c0da9c3fc71857c417a69e5f5af5ba9eca235a0..175589117f6ba80fc58c0653231ef8434b6e72d6 100644 --- a/Core/Simulation/Simulation2D.cpp +++ b/Core/Simulation/Simulation2D.cpp @@ -91,7 +91,7 @@ void Simulation2D::addBackGroundIntensity(size_t start_ind, size_t n_elements) return; for (size_t i = start_ind, stop_point = start_ind + n_elements; i < stop_point; ++i) { SimulationElement& element = m_sim_elements[i]; - mP_background->addBackGround(element); + element.setIntensity(mP_background->addBackGround(element.getIntensity())); } } diff --git a/Core/Simulation/SpecularSimulation.cpp b/Core/Simulation/SpecularSimulation.cpp index 54f5aa8321bb8c4e01f95995e20bfd4753d59459..708816e73a47cb8e3c13b14653ab0a50cee02a96 100644 --- a/Core/Simulation/SpecularSimulation.cpp +++ b/Core/Simulation/SpecularSimulation.cpp @@ -211,7 +211,7 @@ void SpecularSimulation::addBackGroundIntensity(size_t start_ind, size_t n_eleme return; for (size_t i = start_ind, stop_point = start_ind + n_elements; i < stop_point; ++i) { SimulationElement& element = m_sim_elements[i]; - mP_background->addBackGround(element); + element.setIntensity(mP_background->addBackGround(element.getIntensity())); } }