SourceXtractorPlusPlus  0.10
Please provide a description of the project.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
EngineParameter.cpp
Go to the documentation of this file.
1 
25 
26 namespace ModelFitting {
27 
28 using namespace std;
29 
30 void EngineParameter::setEngineValue(const double engine_value) {
31  m_engine_value = engine_value;
32  BasicParameter::setValue(m_converter->engineToWorld(engine_value));
33 }
34 
36  return m_converter->getEngineToWorldDerivative(getValue());
37 }
38 
39 void EngineParameter::setValue(const double value) {
41  m_engine_value = m_converter->worldToEngine(value);
42 }
43 
44 
45 
46 } // namespace ModelFitting
void setEngineValue(const double engine_value)
virtual void setValue(const double new_value)
void setValue(const double value) override
double getEngineToWorldDerivative() const