mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
array2FitGaussian1D.hpp
Go to the documentation of this file.
1/** \file array2FitGaussian1D.hpp
2 * \author Jared R. Males
3 * \brief Wrapper for a native array to pass to \ref levmarInterface, with 1D Gaussian details.
4 * \ingroup fitting_files
5 *
6 */
7
8//***********************************************************************//
9// Copyright 2022 Jared R. Males (jaredmales@gmail.com)
10//
11// This file is part of mxlib.
12//
13// mxlib is free software: you can redistribute it and/or modify
14// it under the terms of the GNU General Public License as published by
15// the Free Software Foundation, either version 3 of the License, or
16// (at your option) any later version.
17//
18// mxlib is distributed in the hope that it will be useful,
19// but WITHOUT ANY WARRANTY; without even the implied warranty of
20// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21// GNU General Public License for more details.
22//
23// You should have received a copy of the GNU General Public License
24// along with mxlib. If not, see <http://www.gnu.org/licenses/>.
25//***********************************************************************//
26
27#ifndef math_fit_array2FitGaussian1D_hpp
28#define math_fit_array2FitGaussian1D_hpp
29
30#include "../../mxError.hpp"
31
32namespace mx
33{
34namespace math
35{
36namespace fit
37{
38
39/// Wrapper for a native array to pass to \ref levmarInterface, with !D Gaussian details.
40/** Supports fixing G0, G, x0, and sigma independently.
41 * \ingroup gaussian_peak_fit
42 */
43template <typename realT>
45{
46 realT *m_data{ nullptr }; ///< ///< Pointer to the array of y values
47 realT *m_coords{ nullptr }; ///< Pointer to the array of x values (optional)
48 size_t m_nx{ 0 }; ///< X dimension of the array
49
50 realT *m_mask{ nullptr }; ///< Pointer to the (optional) mask array. Any 0 pixels are excluded from the fit.
51
52 realT m_G0{ 0 };
53 realT m_G{ 0 };
54 realT m_x0{ 0 };
55 realT m_sigma{ 0 };
56
57 int m_G0_idx{ 0 };
58 int m_G_idx{ 1 };
59 int m_x0_idx{ 2 };
60 int m_sigma_idx{ 3 };
61
62 int m_nparams{ 4 };
63 int m_maxNparams{ 4 };
64
65 /// Set whether each parameter is fixed.
66 /** Sets the parameter indices appropriately.
67 */
68 void setFixed( bool G0, bool G, bool x0, bool sigma );
69
70 realT G0( realT *p );
71
72 void G0( realT *p, realT nG0 );
73
74 realT G( realT *p );
75
76 void G( realT *p, realT nG );
77
78 realT x0( realT *p );
79
80 void x0( realT *p, realT nx0 );
81
82 realT sigma( realT *p );
83
84 void sigma( realT *p, realT nsigma_x );
85
86 int nparams();
87};
88
89template <typename realT>
90void array2FitGaussian1D<realT>::setFixed( bool G0, bool G, bool x0, bool sigma )
91{
92 int idx = 0;
93
94 if( G0 )
95 m_G0_idx = -1;
96 else
97 m_G0_idx = idx++;
98
99 if( G )
100 m_G_idx = -1;
101 else
102 m_G_idx = idx++;
103
104 if( x0 )
105 m_x0_idx = -1;
106 else
107 m_x0_idx = idx++;
108
109 if( sigma )
110 m_sigma_idx = -1;
111 else
112 m_sigma_idx = idx++;
113
114 m_nparams = idx;
115}
116
117template <typename realT>
118realT array2FitGaussian1D<realT>::G0( realT *p )
119{
120 if( m_G0_idx < 0 )
121 {
122 return m_G0;
123 }
124 else
125 {
126 return p[m_G0_idx];
127 }
128}
129
130template <typename realT>
131void array2FitGaussian1D<realT>::G0( realT *p, realT nG0 )
132{
133 if( m_G0_idx < 0 )
134 {
135 m_G0 = nG0;
136 }
137 else
138 {
139 p[m_G0_idx] = nG0;
140 }
141}
142
143template <typename realT>
144realT array2FitGaussian1D<realT>::G( realT *p )
145{
146 if( m_G_idx < 0 )
147 {
148 return m_G;
149 }
150 else
151 {
152 return p[m_G_idx];
153 }
154}
155
156template <typename realT>
157void array2FitGaussian1D<realT>::G( realT *p, realT nG )
158{
159 if( m_G_idx < 0 )
160 {
161 m_G = nG;
162 }
163 else
164 {
165 p[m_G_idx] = nG;
166 }
167}
168
169template <typename realT>
170realT array2FitGaussian1D<realT>::x0( realT *p )
171{
172 if( m_x0_idx < 0 )
173 {
174 return m_x0;
175 }
176 else
177 {
178 return p[m_x0_idx];
179 }
180}
181
182template <typename realT>
183void array2FitGaussian1D<realT>::x0( realT *p, realT nx0 )
184{
185 if( m_x0_idx < 0 )
186 {
187 m_x0 = nx0;
188 }
189 else
190 {
191 p[m_x0_idx] = nx0;
192 }
193}
194
195template <typename realT>
196realT array2FitGaussian1D<realT>::sigma( realT *p )
197{
198 if( m_sigma_idx < 0 )
199 {
200 return m_sigma;
201 }
202 else
203 {
204 return p[m_sigma_idx];
205 }
206}
207
208template <typename realT>
209void array2FitGaussian1D<realT>::sigma( realT *p, realT nsigma )
210{
211 if( m_sigma_idx < 0 )
212 {
213 m_sigma = nsigma;
214 }
215 else
216 {
217 p[m_sigma_idx] = nsigma;
218 }
219}
220
221template <typename realT>
222int array2FitGaussian1D<realT>::nparams()
223{
224 return m_nparams;
225}
226
227} // namespace fit
228} // namespace math
229
230} // namespace mx
231
232#endif // math_fit_array2FitGaussian1D_hpp
constexpr floatT six_fifths()
Return 6/5 in the specified precision.
The mxlib c++ namespace.
Definition mxError.hpp:106
Wrapper for a native array to pass to levmarInterface, with !D Gaussian details.
size_t m_nx
X dimension of the array.
realT * m_mask
Pointer to the (optional) mask array. Any 0 pixels are excluded from the fit.
realT * m_coords
Pointer to the array of x values (optional)
realT * m_data
///< Pointer to the array of y values
void setFixed(bool G0, bool G, bool x0, bool sigma)
Set whether each parameter is fixed.