SourceXtractorPlusPlus  0.8
Please provide a description of the project.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
NeutralConverter.h
Go to the documentation of this file.
1 
24 #ifndef NEUTRAL_CONVERTER_H_
25 #define NEUTRAL_CONVERTER_H_
26 
28 
29 
30 namespace ModelFitting {
31 
39 
40 public:
41 
53  double worldToEngine(const double world_value) const override;
54 
64  double engineToWorld(const double engine_value) const override;
65 
66  double getEngineToWorldDerivative(const double value) const override;
67 
71  virtual ~NeutralConverter();
72 
73 };
74 
75 } // namespace ModelFitting
76 
77 #endif /* NEUTRAL_CONVERTER_H_ */
double engineToWorld(const double engine_value) const override
Engine to world coordinate converter.
double worldToEngine(const double world_value) const override
World to engine coordinate converter.
The coordinate converter interface.
virtual ~NeutralConverter()
Destructor.
CoordinateConverter implementation which performs no conversion.
double getEngineToWorldDerivative(const double value) const override