27#ifndef ioutils_fits_fitsUtils_hpp
28#define ioutils_fits_fitsUtils_hpp
37#include "../stringUtils.hpp"
45#define stdValWidth ( 20 )
59 explicit fitsCommentType(
char *v )
61 static_cast<void>( v );
64 explicit fitsCommentType(
const char *v )
66 static_cast<void>( v );
78 explicit fitsHistoryType(
char *v )
80 static_cast<void>( v );
83 explicit fitsHistoryType(
const char *v )
85 static_cast<void>( v );
103template <
typename scalarT>
110constexpr int fitsType<char *>()
116constexpr int fitsType<std::string>()
122constexpr int fitsType<bool>()
128constexpr int fitsType<char>()
134constexpr int fitsType<unsigned char>()
140constexpr int fitsType<short>()
146constexpr int fitsType<unsigned short>()
152constexpr int fitsType<int>()
158constexpr int fitsType<unsigned int>()
164constexpr int fitsType<long>()
170constexpr int fitsType<unsigned long>()
176constexpr int fitsType<long long>()
182constexpr int fitsType<unsigned long long>()
188constexpr int fitsType<float>()
194constexpr int fitsType<std::complex<float>>()
200constexpr int fitsType<double>()
206constexpr int fitsType<std::complex<double>>()
212constexpr int fitsType<fitsUnknownType>()
218constexpr int fitsType<fitsCommentType>()
224constexpr int fitsType<fitsHistoryType>()
235template <
typename scalarT>
239constexpr int fitsBITPIX<char>()
245constexpr int fitsBITPIX<signed char>()
251constexpr int fitsBITPIX<unsigned char>()
257constexpr int fitsBITPIX<short>()
263constexpr int fitsBITPIX<unsigned short>()
269constexpr int fitsBITPIX<int>()
275constexpr int fitsBITPIX<unsigned int>()
281constexpr int fitsBITPIX<long>()
287constexpr int fitsBITPIX<unsigned long>()
289 return ULONGLONG_IMG;
293constexpr int fitsBITPIX<long long>()
299constexpr int fitsBITPIX<unsigned long long>()
301 return ULONGLONG_IMG;
305constexpr int fitsBITPIX<float>()
311constexpr int fitsBITPIX<double>()
332void fitsPopulateCard(
char headStr[81],
char *keyword,
char *value,
char *comment );
348template <
typename typeT>
353 fits_write_key( fptr, fitsType<typeT>(), keyword, value, comment, &fstatus );
359int fits_write_key<char *>( fitsfile *fptr,
char *keyword,
void *value,
char *comment );
362int fits_write_key<std::string>( fitsfile *fptr,
char *keyword,
void *value,
char *comment );
371int fits_write_key<fitsUnknownType>( fitsfile *fptr,
char *keyword,
void *value,
char *comment );
373int fits_write_comment( fitsfile *fptr,
char *comment );
375int fits_write_history( fitsfile *fptr,
char *history );
379 const std::string &filename,
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.
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.
int fits_write_key< bool >(fitsfile *fptr, char *keyword, void *value, char *comment)
Specialization to handle the case bool.