mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
fitsUtils.hpp
Go to the documentation of this file.
1/** \file fitsUtils.hpp
2 * \brief Declares and defines utilities to work with FITS files
3 * \ingroup fits_processing_files
4 * \author Jared R. Males (jaredmales@gmail.com)
5 *
6 */
7
8//***********************************************************************//
9// Copyright 2015-2022 Jared R. Males (jaredmales@gmail.com)
10//
11// This file is part of mxlib.
12//
13// mxlib is free software: you can redistribute it and/or modify
14// it under the terms of the GNU General Public License as published by
15// the Free Software Foundation, either version 3 of the License, or
16// (at your option) any later version.
17//
18// mxlib is distributed in the hope that it will be useful,
19// but WITHOUT ANY WARRANTY; without even the implied warranty of
20// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21// GNU General Public License for more details.
22//
23// You should have received a copy of the GNU General Public License
24// along with mxlib. If not, see <http://www.gnu.org/licenses/>.
25//***********************************************************************//
26
27#ifndef ioutils_fits_fitsUtils_hpp
28#define ioutils_fits_fitsUtils_hpp
29
30#include <iostream>
31#include <cstdlib>
32#include <cstring>
33#include <complex>
34
35#include <fitsio.h>
36
37#include "../stringUtils.hpp"
38
39namespace mx
40{
41namespace fits
42{
43
44/// The standard width of the value entry in a header card
45#define stdValWidth ( 20 )
46
47// #define fitsTUNKNOWN (-5000)
48struct fitsUnknownType
49{
50};
51
52// #define fitsTCOMMENT (-5001)
53struct fitsCommentType
54{
55 fitsCommentType()
56 {
57 }
58
59 explicit fitsCommentType( char *v )
60 {
61 static_cast<void>( v );
62 }
63
64 explicit fitsCommentType( const char *v )
65 {
66 static_cast<void>( v );
67 }
68};
69
70// #define fitsTHISTORY (-5002)
71
72struct fitsHistoryType
73{
74 fitsHistoryType()
75 {
76 }
77
78 explicit fitsHistoryType( char *v )
79 {
80 static_cast<void>( v );
81 }
82
83 explicit fitsHistoryType( const char *v )
84 {
85 static_cast<void>( v );
86 }
87};
88
89/** \ingroup fits_utils
90 * @{
91 */
92
93/// Return the cfitsio constant for a given data type.
94/**
95 *
96 * \tparam scalarT is the type
97 *
98 * \returns a constant defined in cfitsio corresponding to the native type
99 * \returns -1 if not a define type in cfitsio
100 *
101 * \ingroup fits_utils
102 */
103template <typename scalarT>
104constexpr int fitsType()
105{
106 return -5000; // This is the same as unknownType
107}
108
109template <>
110constexpr int fitsType<char *>()
111{
112 return TSTRING;
113}
114
115template <>
116constexpr int fitsType<std::string>()
117{
118 return TSTRING;
119}
120
121template <>
122constexpr int fitsType<bool>() // mxlib extension, treated as uchar.
123{
124 return -14002;
125}
126
127template <>
128constexpr int fitsType<char>()
129{
130 return TSBYTE;
131}
132
133template <>
134constexpr int fitsType<unsigned char>()
135{
136 return TBYTE;
137}
138
139template <>
140constexpr int fitsType<short>()
141{
142 return TSHORT;
143}
144
145template <>
146constexpr int fitsType<unsigned short>()
147{
148 return TUSHORT;
149}
150
151template <>
152constexpr int fitsType<int>()
153{
154 return TINT;
155}
156
157template <>
158constexpr int fitsType<unsigned int>()
159{
160 return TUINT;
161}
162
163template <>
164constexpr int fitsType<long>()
165{
166 return TLONG;
167}
168
169template <>
170constexpr int fitsType<unsigned long>()
171{
172 return TULONG;
173}
174
175template <>
176constexpr int fitsType<long long>()
177{
178 return TLONGLONG;
179}
180
181template <>
182constexpr int fitsType<unsigned long long>()
183{
184 return TULONGLONG;
185}
186
187template <>
188constexpr int fitsType<float>()
189{
190 return TFLOAT;
191}
192
193template <>
194constexpr int fitsType<std::complex<float>>()
195{
196 return TCOMPLEX;
197}
198
199template <>
200constexpr int fitsType<double>()
201{
202 return TDOUBLE;
203}
204
205template <>
206constexpr int fitsType<std::complex<double>>()
207{
208 return TDBLCOMPLEX;
209}
210
211template <>
212constexpr int fitsType<fitsUnknownType>()
213{
214 return -5000;
215}
216
217template <>
218constexpr int fitsType<fitsCommentType>()
219{
220 return -5001;
221}
222
223template <>
224constexpr int fitsType<fitsHistoryType>()
225{
226 return -5002;
227}
228
229/** Return the cfitsio BITPIX value for a given data type.
230 *
231 * \tparam scalarT is the type
232 * \retval int > 0 if a constant is defined in cfitsio corresponding to the native type
233 * \retval -1 if not a defined type in cfitsio
234 */
235template <typename scalarT>
236constexpr int fitsBITPIX();
237
238template <>
239constexpr int fitsBITPIX<char>()
240{
241 return SBYTE_IMG;
242}
243
244template <>
245constexpr int fitsBITPIX<signed char>()
246{
247 return SBYTE_IMG;
248}
249
250template <>
251constexpr int fitsBITPIX<unsigned char>()
252{
253 return BYTE_IMG;
254}
255
256template <>
257constexpr int fitsBITPIX<short>()
258{
259 return SHORT_IMG;
260}
261
262template <>
263constexpr int fitsBITPIX<unsigned short>()
264{
265 return USHORT_IMG;
266}
267
268template <>
269constexpr int fitsBITPIX<int>()
270{
271 return LONG_IMG; // Yes, this is right. This returns 32
272}
273
274template <>
275constexpr int fitsBITPIX<unsigned int>()
276{
277 return ULONG_IMG; // Yes, this is right, this returns 40
278}
279
280template <>
281constexpr int fitsBITPIX<long>()
282{
283 return LONGLONG_IMG; // Yes, this is right, this returns 64
284}
285
286template <>
287constexpr int fitsBITPIX<unsigned long>()
288{
289 return ULONGLONG_IMG; // Yes, this is right, this returns 64
290}
291
292template <>
293constexpr int fitsBITPIX<long long>()
294{
295 return LONGLONG_IMG; // Yes, this is right, this returns 64
296}
297
298template <>
299constexpr int fitsBITPIX<unsigned long long>()
300{
301 return ULONGLONG_IMG; // Yes, this is right, this returns 64
302}
303
304template <>
305constexpr int fitsBITPIX<float>()
306{
307 return FLOAT_IMG;
308}
309
310template <>
311constexpr int fitsBITPIX<double>()
312{
313 return DOUBLE_IMG;
314}
315
316/// Strip the apostrophes from a FITS value string
317/** The argument is modified if the first and/or last non-whitespace character is '
318 *
319 * \param s is the string from which to strip apostrophes
320 *
321 * \retval int containing the number of stripped apostrophes
322 */
323int fitsStripApost( std::string &s );
324
325/// Populate a fits header card with the value string copied verbatim
326/**
327 * \param headStr is a c-string which must be 81 characters in length, including the '\n'
328 * \param keyword is the keyword name
329 * \param value is the value string
330 * \param comment is the comment string
331 */
332void fitsPopulateCard( char headStr[81], char *keyword, char *value, char *comment );
333
334/// Write a header card to a file
335/** This is a templatized wrapper for the cfitsio routine fits_write_key.
336 *
337 * \tparam typeT is the type of the value
338 *
339 * \param fptr is a pointer to an open fits file
340 * \param keyword is a c-string containing the keyword
341 * \param value is a pointer to the memory location of the value
342 * \param comment is a c-string, possibly NULL, containing a comment string
343 *
344 * \retval int containing the status returned by the cfitsio routine.
345 *
346 * \ingroup fits_utils
347 */
348template <typename typeT>
349int fits_write_key( fitsfile *fptr, char *keyword, void *value, char *comment )
350{
351 int fstatus = 0;
352
353 fits_write_key( fptr, fitsType<typeT>(), keyword, value, comment, &fstatus );
354
355 return fstatus;
356}
357
358template <>
359int fits_write_key<char *>( fitsfile *fptr, char *keyword, void *value, char *comment );
360
361template <>
362int fits_write_key<std::string>( fitsfile *fptr, char *keyword, void *value, char *comment );
363
364/// Specialization to handle the case bool
365/** This gets converted to unsigned char.
366 */
367template <>
368int fits_write_key<bool>( fitsfile *fptr, char *keyword, void *value, char *comment );
369
370template <>
371int fits_write_key<fitsUnknownType>( fitsfile *fptr, char *keyword, void *value, char *comment );
372
373int fits_write_comment( fitsfile *fptr, char *comment );
374
375int fits_write_history( fitsfile *fptr, char *history );
376
377/// Generate a rich error meesage from a FITS status code.
378void fitsErrText( std::string &explan, ///< [out] the explanatory message
379 const std::string &filename, ///< [in] the FITS file's name which generated the problem
380 int fstatus ///< [in] the cfitstio status code
381);
382///@}
383
384} // namespace fits
385} // namespace mx
386
387#endif // ioutils_fits_fitsUtils_hpp
constexpr int fitsType()
Return the cfitsio constant for a given data type.
int fitsStripApost(std::string &s)
Strip the apostrophes from a FITS value string.
Definition fitsUtils.cpp:34
void fitsErrText(std::string &explan, const std::string &filename, int fstatus)
Generate a rich error meesage from a FITS status code.
int fits_write_key(fitsfile *fptr, char *keyword, void *value, char *comment)
Write a header card to a file.
constexpr int fitsBITPIX()
void fitsPopulateCard(char headStr[81], char *keyword, char *value, char *comment)
Populate a fits header card with the value string copied verbatim.
Definition fitsUtils.cpp:63
int fits_write_key< bool >(fitsfile *fptr, char *keyword, void *value, char *comment)
Specialization to handle the case bool.
The mxlib c++ namespace.
Definition mxError.hpp:106