mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
pupil.hpp
Go to the documentation of this file.
1/** \file pupil.hpp
2 * \author Jared R. Males (jaredmales@gmail.com)
3 * \brief Utilities for specifying pupils.
4 * \ingroup mxAO_files
5 *
6 */
7
8#ifndef pupil_hpp
9#define pupil_hpp
10
11#include <mx/ioutils/fits/fitsFile.hpp>
12#include <mx/improc/eigenImage.hpp>
13
14#include <mx/wfp/imagingUtils.hpp>
15
16#include <mx/sigproc/signalWindows.hpp>
17
18#include "aoPaths.hpp"
19
20namespace mx
21{
22
23namespace AO
24{
25
26/// Generate a circular pupil and saves it to disk
27template <typename realT>
28void circularPupil( const std::string &pupilName,
29 realT pupilDiamPixels,
30 realT pupilDiamMeters,
31 realT centralObs = 0,
32 realT overscan = 0 )
33{
34 using namespace mx::improc;
35 using namespace mx::wfp;
36 using namespace mx::sigproc;
37
38 /*Create pupil*/
40
41 pup.resize( pupilDiamPixels, pupilDiamPixels );
42
43 wfp::circularPupil( pup, centralObs, 0, overscan );
44
45 fits::fitsHeader phead;
46 phead.append( "SCALE", pupilDiamMeters / pupilDiamPixels, "Scale in m/pix" );
47 phead.append( "PUPILD", pupilDiamMeters, "Physical diameter of pupil image [m]" );
48 phead.append( "CENTOBS", centralObs, "Central obscuration ratio" );
49 phead.append( "OVERSCAN", overscan, "Fractional pixel overscan" );
50
52
53 std::string fName = mx::AO::path::pupil::pupilFile( pupilName, true );
54
55 ff.write( fName, pup, phead );
56}
57
58/// Generates a circular apodized pupil and saves it to disk
59/** Apodization is with a Tukey window.
60 */
61template <typename realT>
62void circularApodizedPupil( const std::string &pupilName,
63 int pupilDiamPixels,
64 realT pupilDiamMeters,
65 realT tukeyAlpha,
66 realT centralObs = 0,
67 realT overScan = 0 )
68{
69
70 using namespace mx::improc;
71 using namespace mx::wfp;
72 using namespace mx::sigproc;
73
74 /*Create pupil*/
75 Eigen::Array<realT, -1, -1> pup;
76
77 pup.resize( pupilDiamPixels, pupilDiamPixels );
78
79 realT cen = 0.5 * ( pupilDiamPixels - 1.0 );
80
81 if( centralObs == 0 )
82 {
83 window::tukey2d<realT>( pup.data(), pupilDiamPixels, pupilDiamPixels + overScan, tukeyAlpha, cen, cen );
84 }
85 else
86 {
87 window::tukey2dAnnulus<realT>(
88 pup.data(), pupilDiamPixels, pupilDiamPixels + overScan, centralObs, tukeyAlpha, cen, cen );
89 }
90
91 fits::fitsHeader phead;
92 phead.append( "SCALE", pupilDiamMeters / pupilDiamPixels, "Scale in m/pix" );
93 phead.append( "PUPILD", pupilDiamMeters, "Physical diameter of pupil image [m]" );
94 phead.append( "CENTOBS", centralObs, "Central obscuration ratio" );
95 phead.append( "TUKALPHA", tukeyAlpha, "Tukey window alpha parameter" );
96 phead.append( "OVERSCAN", overScan, "Apodization overscan" );
97
99
100 std::string fName = mx::AO::path::pupil::pupilFile( pupilName, true );
101
102 ff.write( fName, pup, phead );
103}
104
105} // namespace AO
106} // namespace mx
107
108#endif //__basis_hpp__
Standardized paths for the mx::AO system.
Class to manage interactions with a FITS file.
Definition fitsFile.hpp:52
int write(const dataT *im, int d1, int d2, int d3, fitsHeader *head)
Write the contents of a raw array to the FITS file.
Class to manage a complete fits header.
void append(const fitsHeaderCard &card)
Append a fitsHeaderCard to the end of the header.
Eigen::Array< scalarT, -1, -1 > eigenImage
Definition of the eigenImage type, which is an alias for Eigen::Array.
int circularPupil(arrayT &m, typename arrayT::Scalar eps=0, typename arrayT::Scalar rad=0, typename arrayT::Scalar overscan=0)
Fill in an Eigen-like array with a circular pupil mask.
The mxlib c++ namespace.
Definition mxError.hpp:106
void circularPupil(const std::string &pupilName, realT pupilDiamPixels, realT pupilDiamMeters, realT centralObs=0, realT overscan=0)
Generate a circular pupil and saves it to disk.
Definition pupil.hpp:28
void circularApodizedPupil(const std::string &pupilName, int pupilDiamPixels, realT pupilDiamMeters, realT tukeyAlpha, realT centralObs=0, realT overScan=0)
Generates a circular apodized pupil and saves it to disk.
Definition pupil.hpp:62