11#include "../../math/constants.hpp"
12#include "../../mxError.hpp"
13#include "../../mxException.hpp"
14#include "../../improc/eigenImage.hpp"
15#include "../../ioutils/fits/fitsFile.hpp"
35template <
typename realT,
typename iosT = std::ostream>
69 static_cast<void>( m );
70 static_cast<void>( n );
71 static_cast<void>( D );
72 static_cast<void>( d );
73 static_cast<void>( r0 );
75 return static_cast<realT
>( 1 );
90 return beta_p( m, n, D, d, r0 );
98 ios <<
"# WFS Parameters:\n";
99 ios <<
"# ID = " << _id <<
'\n';
114template <
typename realT,
typename iosT = std::ostream>
119 this->_id =
"Unmodulated Pyramid";
135 static_cast<void>( m );
136 static_cast<void>( n );
137 static_cast<void>( D );
138 static_cast<void>( d );
139 static_cast<void>( r0 );
156 return beta_p( m, n, D, d, r0 );
169template <
typename realT,
typename iosT = std::ostream>
174 this->_id =
"Asymptotic Modulated Pyramid";
190 static_cast<void>( m );
191 static_cast<void>( n );
192 static_cast<void>( D );
193 static_cast<void>( d );
194 static_cast<void>( r0 );
211 return beta_p( m, m, D, d, r0 );
224template <
typename realT,
typename iosT = std::ostream>
229 this->_id =
"Shack Hartmann";
244 realT k = sqrt( m * m + n * n ) / D;
246 return 1.48 / ( k * d ) * sqrt( 1 + pow( d / r0, 2 ) );
261 return beta_p( m, n, D, d, r0 );
274template <
typename realT,
typename iosT = std::ostream>
277 std::string m_beta_p_file;
278 std::string m_beta_r_file;
279 bool m_sensitivity{
false };
286 this->_id =
"Calculated WFS";
302 if( m_beta_p.rows() == 0 )
306 if( m_beta_p.rows() == 0 )
309 ff.
read( m_beta_p, m_beta_p_file );
313 m_beta_p = 1.0 / m_beta_p;
319 int midx = 0.5 * ( m_beta_p.rows() - 1.0 ) + m;
320 int nidx = 0.5 * ( m_beta_p.cols() - 1.0 ) + n;
322 if( midx > m_beta_p.rows() - 1 || midx < 0 )
326 std::cerr <<
"calculatedWFS::beta_p: m index out of range. Got m = " << m
327 <<
" / beta_p.rows = " << m_beta_p.rows() <<
"\n";
330 return std::numeric_limits<realT>::max();
333 if( nidx > m_beta_p.cols() - 1 || nidx < 0 )
337 std::cerr <<
"calculatedWFS::beta_p: n index out of range. Got n = " << n
338 <<
" / beta_p.cols = " << m_beta_p.cols() <<
"\n";
341 return std::numeric_limits<realT>::max();
344 return m_beta_p( midx, nidx );
359 if( m_beta_r.rows() == 0 )
362 ff.
read( m_beta_r, m_beta_r_file );
365 m_beta_r = 1.0 / m_beta_r;
368 int midx = 0.5 * ( m_beta_r.rows() - 1.0 ) + m;
369 int nidx = 0.5 * ( m_beta_r.cols() - 1.0 ) + n;
371 if( midx > m_beta_r.rows() - 1 || midx < 0 )
373 mxThrowException(
err::sizeerr,
"calculatedWFS::beta_r",
"m index out of range" );
376 if( nidx > m_beta_r.cols() - 1 || nidx < 0 )
378 mxThrowException(
err::sizeerr,
"calculatedWFS::beta_r",
"n index out of range" );
381 return m_beta_r( midx, nidx );
391 ios <<
"# beta_p = " << m_beta_p_file <<
'\n';
392 ios <<
"# beta_r = " << m_beta_r_file <<
'\n';
393 ios <<
"# sensitivity = " << std::boolalpha << m_sensitivity <<
"\n";
mxException for a size error
Class to manage interactions with a FITS file.
int read(dataT *data)
Read the contents of the FITS file into an array.
Eigen::Array< scalarT, -1, -1 > eigenImage
Definition of the eigenImage type, which is an alias for Eigen::Array.
constexpr floatT six_fifths()
Return 6/5 in the specified precision.
The calculated WFS uses sensitivities provided by FITS files.
virtual realT beta_p(int m, int n, realT D, realT d, realT r0)
Get the photon noise sensitivity at a spatial frequency.
virtual iosT & dumpWFS(iosT &ios)
Dump the details of the WFS to an io stream.
virtual realT beta_r(int m, int n, realT D, realT d, realT r0)
Get the read noise sensitivity at a spatial frequency.
The asymptotic modulated pyramid wavefront sensor sensitivity function.
virtual realT beta_p(int m, int n, realT D, realT d, realT r0)
Get the photon sensitivity at a spatial frequency.
virtual realT beta_r(int m, int n, realT D, realT d, realT r0)
Get the read noise sensitivity at a spatial frequency.
The unmodulated pyramid wavefront sensor sensitivity function.
virtual realT beta_p(int m, int n, realT D, realT d, realT r0)
Get the photon noise sensitivity at a spatial frequency.
virtual realT beta_r(int m, int n, realT D, realT d, realT r0)
Get the read noise sensitivity at a spatial frequency.
The shack hartmann wavefront sensor sensitivity function.
virtual realT beta_p(int m, int n, realT D, realT d, realT r0)
Get the photon noise sensitivity at a spatial frequency.
virtual realT beta_r(int m, int n, realT D, realT d, realT r0)
Get the read noise sensitivity at a spatial frequency.
The ideal wavefront sensor sensitivity function.
virtual realT beta_r(int m, int n, realT D, realT d, realT r0)
Get the read noise sensitivity at a spatial frequency.
virtual realT beta_p(int m, int n, realT D, realT d, realT r0)
Get the photon noise sensitivity at a spatial frequency.
virtual ~wfs()
Destructor.
virtual iosT & dumpWFS(iosT &ios)
Dump the details of the WFS to an io stream.