27#ifndef __idealCoronagraph_hpp__
28#define __idealCoronagraph_hpp__
35#include "../wfp/imagingArray.hpp"
37#include "../ioutils/fits/fitsFile.hpp"
38#include "../ioutils/fits/fitsUtils.hpp"
39#include "../improc/imagePads.hpp"
55template <
typename _realT>
65 typedef imagingArray<std::complex<realT>, fftwAllocator<std::complex<realT>>, 0>
complexFieldT;
68 typedef Eigen::Array<realT, Eigen::Dynamic, Eigen::Dynamic>
imageT;
116 int loadPupil(
const std::string &pupilFile );
125 const std::string &cName );
156 bool apodize{
false };
160template <
typename realT>
161idealCoronagraph<realT>::idealCoronagraph()
166template <
typename realT>
172template <
typename realT>
177 m_fi.setWavefrontSizePixels( sz );
178 m_fi.wholePixel( m_wholePixel );
179 m_focalPlane.resize( sz, sz );
182template <
typename realT>
187 mxError(
"idealCoronagraph", MXE_PARAMNOTSET,
"Must set wavefront size (wfSz) before setting up coronagraph." );
197template <
typename realT>
205 ff.
read( pupil, pupilFile );
207 return setPupil( pupil );
212template <
typename realT>
218 mxError(
"idealCoronagraph", MXE_PARAMNOTSET,
"file directory (fileDir) not set." );
222 std::string pupilFile = _fileDir +
"/" + cName +
".fits";
224 return loadPupil( pupilFile );
227template <
typename realT>
230 if( pupilPlane.rows() != _realPupil.rows() || pupilPlane.cols() != _realPupil.cols() )
232 mxError(
"idealCoronagraph", MXE_SIZEERR,
"pupilPlane wavefront size does not match realPupil" );
236 Eigen::Map<Eigen::Array<
complexT, -1, -1>> eigWf( pupilPlane.data(), pupilPlane.cols(), pupilPlane.rows() );
237 Eigen::Map<Eigen::Array<
realT, -1, -1>> eigPup( _realPupil.data(), _realPupil.cols(), _realPupil.rows() );
239 eigWf = ( eigWf - ( ( eigWf * eigPup ).sum() / ( eigPup * eigPup ).sum() ) ) * eigPup;
249template <
typename realT>
252 propagate( pupilPlane );
254 m_fi.propagatePupilToFocal( m_focalPlane, pupilPlane );
256 int x0 = 0.5 * ( _wfSz - 1 ) - 0.5 * ( fpIntensity.rows() - 1 );
257 int y0 = 0.5 * ( _wfSz - 1 ) - 0.5 * ( fpIntensity.cols() - 1 );
259 extractIntensityImage( fpIntensity, 0, fpIntensity.rows(), 0, fpIntensity.cols(), m_focalPlane, x0, y0 );
264template <
typename realT>
267 static_cast<void>( pupilPlane );
271template <
typename realT>
274 propagateNC( pupilPlane );
276 m_fi.propagatePupilToFocal( m_focalPlane, pupilPlane );
278 int x0 = 0.5 * ( _wfSz - 1 ) - 0.5 * ( fpIntensity.rows() - 1 );
279 int y0 = 0.5 * ( _wfSz - 1 ) - 0.5 * ( fpIntensity.cols() - 1 );
281 extractIntensityImage( fpIntensity, 0, fpIntensity.rows(), 0, fpIntensity.cols(), m_focalPlane, x0, y0 );
Class to manage interactions with a FITS file.
int read(dataT *data)
Read the contents of the FITS file into an array.
Class to perform Fraunhofer propagation between pupil and focal planes.
Declares and defines a class for Fraunhofer propagation of optical wavefronts.
int padImage(imOutT &imOut, imInT &imIn, unsigned int padSz, typename imOutT::Scalar value)
Pad an image with a constant value.
Utilities for modeling image formation.
std::string _fileDir
The directory where coronagraph files are stored.
Eigen::Array< realT, Eigen::Dynamic, Eigen::Dynamic > imageT
The image type.
int _wfSz
The linear size of the wavefront in pixels.
int propagate(complexFieldT &pupilPlane)
Propagate the given pupil-plane wavefront through the coronagraph to the exit pupil plane.
int loadPupil(const std::string &pupilFile)
Load the real pupil mask from a FITS file.
std::complex< realT > complexT
The complex floating point type.
imagingArray< std::complex< realT >, fftwAllocator< std::complex< realT > >, 0 > complexFieldT
The wavefront complex field type.
int loadCoronagraph(const std::string &cName)
Load the components of the coronagraph (just a pupil) based in its base name.
_realT realT
The real floating point type.
realT m_wholePixel
Determines how the image is centered.
int wfSz()
Get the wavefront size in pixels.
int propagateNC(complexFieldT &pupilPlane)
Propagate the given pupil-plane wavefront without the coronagraph.
int setPupil(imageT &pupil)
Set the real pupil mask.
fraunhoferPropagator< complexFieldT > m_fi
Fraunhofer propagator.