Matrix Science Mascot Parser toolkit
 
Loading...
Searching...
No Matches
ms_fitexy_result.hpp
1/*
2##############################################################################
3# file: ms_fitexy_result.hpp
4# 'msparser' toolkit
5#
6##############################################################################
7# COPYRIGHT NOTICE
8# Copyright 1998-2014 Matrix Science Limited All Rights Reserved.
9#
10##############################################################################
11 * @(#)$Source: parser/inc/ms_fitexy_result.hpp $
12 * @(#)$Revision: 1b450440f9c97e1e41d0fc6016a27d68951d4532 | MSPARSER_REL_3_0_0-2024-09-24-0-g93ebaeb4f4 $
13 * @(#)$Date: 2018-07-30 16:23:53 +0100 $
14##############################################################################
15 */
16
17#ifndef MS_FITEXY_RESULT_HPP
18#define MS_FITEXY_RESULT_HPP
19
20
21namespace matrix_science
22{
23 //=========================================================================
29 class ms_fitexy_result_body;
30
32
38 class MS_MASCOTRESFILE_API ms_fitexy_result :
39 public ms_handle
40 {
41 public:
44
46 ms_fitexy_result(const ms_fitexy_result_body & body);
47
48#ifndef SWIG
49 ms_fitexy_result_body * body();
50 const ms_fitexy_result_body * body() const;
51
53 ms_fitexy_result(double sigx, double sigy, double a, double siga, double b, double sigb, double chi2, double q);
54#endif
55
57 double getSigmaX() const;
59 double getSigmaY() const;
60
62 double getA() const;
64 double getSigmaA() const;
65
67 double getB() const;
69 double getSigmaB() const;
70
72 double getChi2() const;
73
75 double getQ() const;
76 };
77 // end of quantitation_group
79 //=========================================================================
80
81} // namespace matrix_science
82
83#endif // MS_FITEXY_RESULT_HPP
84
85/*------------------------------- End of File -------------------------------*/
Parameters and results from least squares fit with errors in both co-ordinates.
Definition: ms_fitexy_result.hpp:40