13#include "../../improc/imageTransforms.hpp"
14#include "../../math/randomT.hpp"
16#include "wavefront.hpp"
33template <
typename _realT>
42 typedef Eigen::Array<realT, Eigen::Dynamic, Eigen::Dynamic> imageT;
83 void qe(
const realT &q );
87 void darkCurrent(
const realT &dc );
91 void ron(
const realT &r );
95 void cic(
const realT &c );
99 void gain(
const realT &g );
103 void expTime(
const realT &dt );
107 void rows(
const int &r );
111 void cols(
const int &c );
113 void setSize(
const int &r,
const int &c );
117 void noNoise(
bool nn );
135template <
typename realT>
136ccdDetector<realT>::ccdDetector()
168template <
typename realT>
174template <
typename realT>
180template <
typename realT>
181realT ccdDetector<realT>::darkCurrent()
183 return m_darkCurrent;
186template <
typename realT>
187void ccdDetector<realT>::darkCurrent(
const realT &dc )
192template <
typename realT>
193realT ccdDetector<realT>::ron()
198template <
typename realT>
199void ccdDetector<realT>::ron(
const realT &r )
204template <
typename realT>
205realT ccdDetector<realT>::cic()
210template <
typename realT>
211void ccdDetector<realT>::cic(
const realT &c )
216template <
typename realT>
217realT ccdDetector<realT>::gain()
222template <
typename realT>
223void ccdDetector<realT>::gain(
const realT &g )
228template <
typename realT>
229realT ccdDetector<realT>::expTime()
234template <
typename realT>
235void ccdDetector<realT>::expTime(
const realT &dt )
240template <
typename realT>
241int ccdDetector<realT>::rows()
246template <
typename realT>
247void ccdDetector<realT>::rows(
const int &r )
252template <
typename realT>
253int ccdDetector<realT>::cols()
258template <
typename realT>
259void ccdDetector<realT>::cols(
const int &c )
264template <
typename realT>
265void ccdDetector<realT>::setSize(
const int &r,
const int &c )
271template <
typename realT>
272bool ccdDetector<realT>::noNoise()
277template <
typename realT>
278void ccdDetector<realT>::noNoise(
bool nn )
283template <
typename realT>
287 using poisson_param_t =
typename std::poisson_distribution<int>::param_type;
288 using gamma_param_t =
typename std::gamma_distribution<realT>::param_type;
292 out.resize( m_rows, m_cols );
303 for(
int j = 0; j < m_cols; ++j )
305 for(
int i = 0; i < m_rows; ++i )
307 realT charge = ( out( i, j ) * m_qe + m_darkCurrent ) * m_expTime + m_cic;
311 out( i, j ) = charge + m_normVar * sqrt( charge );
315 m_poissonVar.distribution.param( poisson_param_t{ charge } );
316 out( i, j ) = m_poissonVar;
321 m_gammaVar.distribution.param( gamma_param_t{ out( i, j ), m_gain } );
323 out( i, j ) = m_gammaVar;
328 out( i, j ) += m_normVar * m_ron;
333 out( i, j ) /= m_gain;
A simulated CCD detector.
realT m_ron
The readout noise, electrons per pixel per read #include "mx/randomT.hpp".
realT m_darkCurrent
The dark current, per pixel per second.
realT m_qe
The quantum efficiency.
realT qe()
Get the current value of qe.
realT m_cic
EMCCD clock induced charge, electrons per pixel per read.
int m_cols
The detector size, in columns.
realT m_expTime
The exposure time, in seconds.
norm_distT m_normVar
Gets normal-distributed variates.
gamma_distT m_gammaVar
Gets gamma distributed variates.
int m_rows
The detector size, in rows.
poisson_distT m_poissonVar
Gets Poisson distributed variates.
bool m_noNoise
If true no noise is added to the exposed image.
void exposeImage(imageT &out, imageT &in)
Rebin and add noise to the input image, placing the result in the output image.
realT m_gain
Electron multiplication gain. If >1, then EMCCD is modeled.
A random number type, which functions like any other arithmetic type.
constexpr units::realT c()
The speed of light.
Structure containing the phase and amplitude of a wavefront.