Skip to content
Snippets Groups Projects
Commit 6f385c51 authored by Maik Nijhuis's avatar Maik Nijhuis
Browse files

Review comments: Add brackets

parent 24bc8dc4
No related branches found
No related tags found
1 merge request!23AST-831 Describe auto_*_sigma settings and use std::optional
......@@ -210,10 +210,10 @@ void Radler::Perform(bool& reachedMajorThreshold, size_t majorIterationNr) {
}
if (_settings.auto_mask_sigma && !_autoMaskIsFinished)
_parallelDeconvolution->SetThreshold(
std::max(stddev * *_settings.auto_mask_sigma, _settings.threshold));
std::max(stddev * (*_settings.auto_mask_sigma), _settings.threshold));
else if (_settings.auto_threshold_sigma)
_parallelDeconvolution->SetThreshold(std::max(
stddev * *_settings.auto_threshold_sigma, _settings.threshold));
stddev * (*_settings.auto_threshold_sigma), _settings.threshold));
integrated.Reset();
Logger::Debug << "Loading PSFs...\n";
......
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