SourceXtractorPlusPlus  0.11
Please provide a description of the project.
ConstantModel.cpp
Go to the documentation of this file.
1 
24 
25 namespace ModelFitting {
26 
28  : m_value {value} {
29 }
30 
32  : m_value {other.m_value} {
33 }
34 
36 
37 double ConstantModel::getValue() const {
38  return m_value->getValue();
39 }
40 
41 } // end of namespace ModelFitting
std::shared_ptr< BasicParameter > m_value
Definition: ConstantModel.h:43
ConstantModel(std::shared_ptr< BasicParameter > value)