SourceXtractorPlusPlus  0.15
Please provide a description of the project.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
MoffatModelEvaluator.h
Go to the documentation of this file.
1 
17 /*
18  * MoffatModelFittingUtils.h
19  *
20  * Created on: 2019 M02 20
21  * Author: mschefer
22  */
23 
24 #ifndef _SEIMPLEMENTATION_PLUGIN_MOFFATMODELFITTING_MOFFATMODELEVALUATOR_H_
25 #define _SEIMPLEMENTATION_PLUGIN_MOFFATMODELFITTING_MOFFATMODELEVALUATOR_H_
26 
32 
33 namespace SourceXtractor {
34 
36 public:
38  double getValue(double x, double y) const {
39  return m_model->getValue(x, y);
40  }
41 
42  unsigned getIterations() const {
43  return m_iterations;
44  }
45 
46 private:
48  unsigned m_iterations;
49 };
50 
51 //ModelFitting::ExtendedModel createMoffatModel();
52 
53 }
54 
55 #endif /* _SEIMPLEMENTATION_PLUGIN_MOFFATMODELFITTING_MOFFATMODELEVALUATOR_H_ */
std::shared_ptr< DependentParameter< std::shared_ptr< EngineParameter > > > x
double getValue(double x, double y) const
std::shared_ptr< DependentParameter< std::shared_ptr< EngineParameter > > > y
Base class for all Properties. (has no actual content)
Definition: Property.h:33
MoffatModelEvaluator(const MoffatModelFitting &model)
std::shared_ptr< ModelFitting::ExtendedModel< ImageInterfaceTypePtr > > m_model