mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
directPhaseReconstructorD.hpp
1#ifndef directPhaseReconstructor_hpp
2#define directPhaseReconstructor_hpp
3
4#pragma GCC system_header
5#include <Eigen/Dense>
6
7#include <mx/signalWindows.hpp>
8
9#ifdef DEBUG
10#define BREAD_CRUMB std::cout << "DEBUG: " << __FILE__ << " " << __LINE__ << "\n";
11#else
12#define BREAD_CRUMB
13#endif
14
15namespace mx
16{
17
18namespace AO
19{
20
21namespace sim
22{
23
24struct slopeReconstructorSpec
25{
26 std::string dmName;
27 std::string basisName;
28
29 std::string rMatId;
30};
31
32/// A Pyramid Wavefront Sensor slope reconstructor.
33/** Calculates slopes, normalized by total flux in the image.
34 */
35template <typename realT>
36class directPhaseReconstructor
37{
38 public:
39 /// The type of the measurement (i.e. the slope vector)
40 // typedef Eigen::Array<realT,-1,-1> measurementT;
41
42 /// The type of the WFS image
43 typedef Eigen::Array<realT, -1, -1> imageT;
44
45 /// The type of the response matrix
46 typedef Eigen::Array<realT, -1, -1> rmatT;
47
48 typedef slopeReconstructorSpec specT;
49
50 protected:
51 Eigen::Array<realT, -1, -1> _recon; ///< The reconstructor matrix.
52
53 imageT _rMat; ///< The response matrix
54 eigenCube<realT> _rImages;
55
56 int _nModes{ 0 }; ///< The number of modes to be reconstructed
57
58 int _detRows{ 0 }; ///< The size of the WFS image, in rows
59 int _detCols{ 0 }; ///< The size of the WFS image, in columns
60
61 int _measurementSize{ 0 }; ///< The number of values in the measurement
62
63 // The mirror modes
64 mx::eigenCube<realT> *_modes{ nullptr };
65
66 imageT *_pupil{ nullptr };
67
68 imageT _mask;
69
70 realT norm{ 0 };
71
72 ds9_interface ds9i;
73
74 public:
75 mx::eigenImaged _spectrum;
76
77 imageT *_gains{ nullptr };
78
79 public:
80 /// Default c'tor
82
83 template <typename AOSysT>
84 void initialize( AOSysT &AOSys, specT &spec )
85 {
86
87 _modes = &AOSys.dm._infF;
88
89 _nModes = _modes->planes();
90 _detRows = _modes->rows();
91 _detCols = _modes->cols();
92
94
95 _pupil = &AOSys._pupil;
96 _measurementSize = _pupil->sum();
97
98 _mask.resize( _pupil->rows(), _pupil->cols() );
99
100 // tukey2d(realT *filt, int dim, realT N, realT alpha, realT xc, realT yc)
101 // mx::tukey2d(_mask.data(), _mask.rows(), (realT) _mask.rows(), (realT) 0.0, (realT) 0.5*(_mask.rows()-1),
102 // (realT) 0.5*(_mask.cols()-1));
103 _mask = *_pupil;
104
105 mx::fitsFile<realT> ff;
106 ff.write( "dprMask.fits", _mask );
107
108 std::string recMatrix = mx::AO::path::sys::cal::iMat(
109 AOSys._sysName, spec.dmName, AOSys._wfsName, AOSys._pupilName, spec.basisName, spec.rMatId );
110 loadRecon( recMatrix );
111 }
112
113 template <typename AOSysT>
114 void linkSystem( AOSysT &AOSys );
115
116 /// Get the calibration amplitude used in response matrix acquisition (_calAmp)
117 realT calAmp();
118
119 /// Set the calibration amplitude used in response matrix acquisition (_calAmp)
120 /**
121 * \param ca [in] the new calibration amplitude
122 */
123 void calAmp( realT ca );
124
125 /// Get the number of modes (_nModes)
126 int nModes();
127
128 /// Get the number of detector rows (_detRows)
129 int detRows();
130
131 /// Set the number of detector rows (_detRows)
132 void detRows( int dr );
133
134 /// Get the number of detector columns (_detCols)
135 int detCols();
136
137 /// Set the number of detector columns (_detCols)
138 void detCols( int dc );
139
140 /// Load the reconstrutor from the specified FITS file
141 /**
142 * \param fname is the name of the FITS file, including path
143 */
144 void loadRecon( std::string fname );
145
146 /// Return the size of the unbinned measurement
148
149 /// Calculate the slope measurement
150 /**
151 * \param slopes [out] a (_measurementSize X 2) array of slopes
152 * \param wfsImage [in] the WFS image from which to measure the slopes
153 */
154 template <typename measurementT, typename wfsImageT>
155 void calcMeasurement( measurementT &slopes, wfsImageT &wfsImage );
156
157 /// Reconstruct the wavefront from the input image, producing the modal amplitude vector
158 template <typename measurementT, typename wfsImageT>
159 void reconstruct( measurementT &commandVect, wfsImageT &wfsImage );
160
161 /// Initialize the response matrix for acquisition
162 /**
163 * \param nmodes the number of modes
164 * \param calamp the calibration amplitude
165 * \param detrows the number of detector rows
166 * \param detcols the number of detector columns
167 */
168 void initializeRMat( int nmodes, realT calamp, int detrows, int detcols );
169
170 /// Accumalte the next measurement in the response matrix
171 /**
172 * \param i the measurement index
173 * \param measureVec is the i-th measurement vector
174 */
175 template <typename measurementT>
176 void accumulateRMat( int i, measurementT &measureVec );
177
178 template <typename measurementT, typename wfsImageT>
179 void accumulateRMat( int i, measurementT &measureVec, wfsImageT &wfsImage );
180
181 /// Write the accumulated response matrix to disk
182 /**
183 * \param fname the name, including path, of the response matrix
184 */
185 void saveRMat( std::string fname );
186
187 void saveRImages( std::string fname );
188};
189
190template <typename realT>
192{
193}
194
195template <typename realT>
196template <typename AOSysT>
197void directPhaseReconstructor<realT>::linkSystem( AOSysT &AOSys )
198{
199 _modes = &AOSys.dm._modes;
200
201 _nModes = _modes->planes();
202 _detRows = _modes->rows();
203 _detCols = _modes->cols();
204
205 _measurementSize = _detRows * _detCols;
206
207 _pupil = &AOSys._pupil;
208 _measurementSize = _pupil->sum();
209
210 _mask.resize( _pupil->rows(), _pupil->cols() );
211 mx::tukey2d(
212 _mask.data(), _mask.rows(), (realT)_mask.rows(), 0.0, 0.5 * ( _mask.rows() - 1 ), 0.5 * ( _mask.cols() - 1 ) );
213
214 mx::fitsFile<realT> ff;
215 ff.write( "dprMask.fits", _mask );
216}
217
218template <typename realT>
220{
221 return 0.5 * 780.0e-9 / two_pi<realT>();
222}
223
224template <typename realT>
226{
227 return;
228}
229
230template <typename realT>
232{
233 return _nModes;
234}
235
236template <typename realT>
238{
239 return _detRows;
240}
241
242template <typename realT>
244{
245 return _detCols;
246}
247
248template <typename realT>
250{
251 mx::fitsFile<realT> ff;
252 mx::fitsHeader head;
253
254 ff.read( fname, _recon, head );
255}
256
257template <typename realT>
259{
260 return _measurementSize;
261}
262
263template <typename realT>
264template <typename measurementT, typename wfsImageT>
265void directPhaseReconstructor<realT>::calcMeasurement( measurementT &slopes, wfsImageT &wfsImage )
266{
267
268 slopes.measurement.resize( 1, _measurementSize );
269
270 int k = 0;
271
272 for( int i = 0; i < wfsImage.image.rows(); ++i )
273 {
274 for( int j = 0; j < wfsImage.image.cols(); ++j )
275 {
276 if( ( *_pupil )( i, j ) == 0 )
277 continue;
278
279 slopes.measurement( 0, k ) = wfsImage.image( i, j );
280 ++k;
281 }
282 }
283}
284
285template <typename realT>
286template <typename measurementT, typename wfsImageT>
287void directPhaseReconstructor<realT>::reconstruct( measurementT &commandVect, wfsImageT &wfsImage )
288{
289
290 BREAD_CRUMB;
291
292 measurementT slopes;
293
294 calcMeasurement( slopes, wfsImage );
295
296 BREAD_CRUMB;
297 commandVect.measurement = slopes.measurement.matrix() * _recon.matrix();
298
299 BREAD_CRUMB;
300 commandVect.iterNo = wfsImage.iterNo;
301}
302
303template <typename realT>
304void directPhaseReconstructor<realT>::initializeRMat( int nModes, realT calamp, int detRows, int detCols )
305{
306 _nModes = nModes;
307
308 _detRows = detRows;
309 _detCols = detCols;
310
311 _rMat.resize( measurementSize(), nModes );
312 _rMat.setZero();
313
314 _rImages.resize( _detRows, _detCols, _nModes );
315}
316
317template <typename realT>
318template <typename measurementT>
319void directPhaseReconstructor<realT>::accumulateRMat( int i, measurementT &measureVec )
320{
321 _rMat.col( i ) = measureVec.measurement.row( 0 );
322}
323
324template <typename realT>
325template <typename measurementT, typename wfsImageT>
326void directPhaseReconstructor<realT>::accumulateRMat( int i, measurementT &measureVec, wfsImageT &wfsImage )
327{
328 BREAD_CRUMB;
329 accumulateRMat( i, measureVec );
330
331 BREAD_CRUMB;
332
333 _rImages.image( i ) = wfsImage.image;
334}
335
336template <typename realT>
337void directPhaseReconstructor<realT>::saveRMat( std::string fname )
338{
339 mx::fitsFile<realT> ff;
340 mx::fitsHeader head;
341
342 ff.write( fname, _rMat );
343}
344
345template <typename realT>
346void directPhaseReconstructor<realT>::saveRImages( std::string fname )
347{
348 mx::fitsFile<realT> ff;
349
350 ff.write( fname, _rImages );
351}
352
353} // namespace sim
354} // namespace AO
355} // namespace mx
356
357#endif // directPhaseReconstructor_hpp
void saveRMat(std::string fname)
Write the accumulated response matrix to disk.
int detRows()
Get the number of detector rows (_detRows)
void loadRecon(const std::string &fname)
Load the reconstrutor from the specified FITS file.
int _nModes
The number of modes to be reconstructed.
void detCols(int dc)
Set the number of detector columns (_detCols)
Eigen::Array< realT, -1, -1 > imageT
The type of the measurement (i.e. the slope vector)
int measurementSize()
Return the size of the unbinned measurement.
void calcMeasurement(measurementT &slopes, wfsImageT &wfsImage)
Calculate the slope measurement.
int _detRows
The size of the WFS image, in rows.
void initializeRMat(int nmodes, realT calamp, int detrows, int detcols)
Initialize the response matrix for acquisition.
realT calAmp()
Get the calibration amplitude used in response matrix acquisition (_calAmp)
directPhaseReconstructorSpec specT
The specificaion type.
void accumulateRMat(int i, measurementT &measureVec)
Accumalte the next measurement in the response matrix.
void reconstruct(measurementT &commandVect, wfsImageT &wfsImage)
Reconstruct the wavefront from the input image, producing the modal amplitude vector.
int _measurementSize
The number of values in the measurement.
int _detCols
The size of the WFS image, in columns.
Eigen::Array< realT, -1, -1 > _recon
The reconstructor matrix.
Eigen::Array< realT, -1, -1 > rmatT
The type of the response matrix.
int detCols()
Get the number of detector columns (_detCols)
void calAmp(realT ca)
Set the calibration amplitude used in response matrix acquisition (_calAmp)
int nModes()
Get the number of modes (_nModes)
void detRows(int dr)
Set the number of detector rows (_detRows)
An image cube with an Eigen-like API.
Definition eigenCube.hpp:30
The mxlib c++ namespace.
Definition mxError.hpp:106