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

simplify

parent 2f09a14a
No related branches found
No related tags found
No related merge requests found
......@@ -75,11 +75,10 @@ void IParameterized::setParameterValue(const std::string &name, double value)
m_parameters->setParameterValue(name, value);
} else {
std::unique_ptr<ParameterPool> P_pool { createParameterTree() };
if(name.find('*') != std::string::npos) {
if(name.find('*') != std::string::npos)
P_pool->setMatchedParametersValue(name, value);
} else {
else
P_pool->setParameterValue(name, value);
}
}
onChange();
}
......
......@@ -54,20 +54,20 @@ void RealParameterWrapper::checkNull() const
{
if(isNull())
throw Exceptions::NullPointerException(
"RealParameterWrapper::getValue() -> Attempt to access uninitialised pointer.");
"BUG in RealParameterWrapper::getValue() -> Attempt to access uninitialised pointer.");
}
void RealParameterWrapper::setValue(double value)
{
checkNull();
if(value != *m_data) {
if(m_limits.isInRange(value) && !m_limits.isFixed()) {
*m_data = value;
m_parent->onChange();
} else {
throw Exceptions::OutOfBoundsException("Value not in range");
}
}
if(value == *m_data)
return; // nothing to do
if(!m_limits.isInRange(value))
throw Exceptions::OutOfBoundsException("Value not in range");
if(m_limits.isFixed())
throw Exceptions::OutOfBoundsException("Parameter is fixed");
*m_data = value;
m_parent->onChange();
}
void RealParameterWrapper::swapContent(RealParameterWrapper& other)
......
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