SourceXtractorPlusPlus  0.8
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 
30 
31 namespace SourceXtractor {
32 
34 public:
36  double getValue(double x, double y) const {
37  return m_model->getValue(x, y);
38  }
39 
40  unsigned getIterations() const {
41  return m_iterations;
42  }
43 
44 private:
46  unsigned m_iterations;
47 };
48 
49 //ModelFitting::ExtendedModel createMoffatModel();
50 
51 }
52 
53 #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 > m_model