mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
ADIDerotator.hpp
Go to the documentation of this file.
1/** \file ADIDerotator.hpp
2 * \author Jared R. Males
3 * \brief Defines a generic ADI derotator class.
4 * \ingroup hc_imaging_files
5 *
6 */
7
8#include "../ioutils/fits/fitsHeader.hpp"
9
10#ifndef ADIDerotator_hpp
11 #define ADIDerotator_hpp
12
13 #include "../math/geo.hpp"
14
15namespace mx
16{
17
18namespace improc
19{
20
21/// A generic ADI derotator class.
22/** This class is used to calculate the derotation angle for angular differential imaging.
23 *
24 * \ingroup hc_imaging
25 *
26 */
27template <typename _realT>
29{
30 typedef _realT realT;
31
32 /// Vector of keywords to extract from the fits headers
33 std::vector<std::string> m_keywords;
34
35 /// Vector(s) to hold the keyword values
36 std::vector<realT> m_angles;
37
38 std::string m_angleKeyword; ///< The keyword for the angle attribute. Do not set this directly.
39
40 /// Set the angle keyword
41 /** Populates the kewords vector appropriately.
42 */
43 void angleKeyword( const std::string &akw /**< [in] The angle keyword */ )
44 {
45 m_angleKeyword = akw;
46 m_keywords = { akw };
47 }
48
49 realT m_angleScale{ 0 }; ///< The scale to multiply the angle by
50 realT m_angleConstant{ 0 }; ///< The constant to add to the scaled-angle.
51
53 {
54 }
55
56 /// To allow ADIobservation to check for errors.
57 bool isSetup()
58 {
59 if( ( m_angleKeyword == "" || m_keywords.size() == 0 ) || ( m_angleScale == 0 && m_angleConstant == 0 ) )
60 {
61 return false;
62 }
63
64 return true;
65 }
66
67 /// Method called by ADIobservation to get keyword-values
68 /**
69 * \returns an optional which, if true, contains a vector of the indices of \p heads for which
70 * the extraction of a value for \ref m_angleKeyword failed
71 */
72 std::optional<std::vector<size_t>>
73 extractKeywords( std::vector<fits::fitsHeader> &heads /**< [in] The headers from the images being reduced.*/ )
74 {
75 m_angles.clear();
76 return fits::headersToValues<realT>( m_angles, heads, m_angleKeyword );
77 }
78
79 /// Calculate the derotation angle for a given image number
80 /**
81 * \returns the angle in radians by which to de-rotate the image c.c.w.
82 */
83 realT derotAngle( size_t imno /**< [in] the image number */ ) const
84 {
85 realT derot = m_angleScale * m_angles[imno] + m_angleConstant;
87 return math::dtor( derot );
88 }
89};
90
91///@}
92
93extern template struct ADIDerotator<float>;
94extern template struct ADIDerotator<double>;
95
96} // namespace improc
97} // namespace mx
98
99#endif // ADIDerotator_hpp
constexpr floatT six_fifths()
Return 6/5 in the specified precision.
realT dtor(realT q)
Convert from degrees to radians.
Definition geo.hpp:138
The mxlib c++ namespace.
Definition mxError.hpp:106
A generic ADI derotator class.
std::optional< std::vector< size_t > > extractKeywords(std::vector< fits::fitsHeader > &heads)
Method called by ADIobservation to get keyword-values.
std::vector< realT > m_angles
Vector(s) to hold the keyword values.
bool isSetup()
To allow ADIobservation to check for errors.
std::vector< std::string > m_keywords
Vector of keywords to extract from the fits headers.
realT m_angleScale
The scale to multiply the angle by.
realT derotAngle(size_t imno) const
Calculate the derotation angle for a given image number.
void angleKeyword(const std::string &akw)
Set the angle keyword.
std::string m_angleKeyword
The keyword for the angle attribute. Do not set this directly.
realT m_angleConstant
The constant to add to the scaled-angle.