mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
|
Class to manage the three components of a FITS header card.
Since FITS does not provide the type in keyword=value pairs in a FITS header, it is up to the user to determine the type. Futhermore, since we want to read values from files, type must be set at runtime. The result is that we must be able to accept a string, which is converted to a given type on demand at determined at runtime.
Conversion from string to native type, or vice versa, only occurs when needed. So if you set the value to, say, a double, the value is not converted to string format unless specifically requested. If the write function is called when in this state, the cfitsio routine is called directly. This converson only on demand is most important for values read from a file, then written to another file. In this case, no conversion to its double (etc) representation. occurs.
Note that because of the checks to determine the type and appropriate return values, accessing the value in a card is possibly slower than accessing a variable due to various if statements. This means that you should typically do so once and use a local variable for repeated use.
Definition at line 56 of file fitsHeaderCard.hpp.
#include <ioutils/fits/fitsHeaderCard.hpp>
Classes | |
union | values |
The native type is held in a union. More... | |
Public Member Functions | |
Constructors | |
fitsHeaderCard () | |
Basic c'tor. | |
fitsHeaderCard (const std::string &k, const std::string &v, const std::string &c="") | |
Construct from the three components for a value of string type. | |
fitsHeaderCard (const std::string &k, const std::string &v, const int &type, const std::string &c="") | |
Construct from the three components, when already in a string format. | |
fitsHeaderCard (const std::string &k, fitsCommentType v, const std::string &c) | |
Construct from the three components, when it's really a comment card. | |
fitsHeaderCard (const std::string &k, fitsHistoryType v, const std::string &c) | |
Construct from the three components, when it's really a history card. | |
fitsHeaderCard (const std::string &k) | |
Construct from just keyword, when value's type is unknown. | |
fitsHeaderCard (const std::string &k, const int type) | |
Construct from just keyword, when value's type known. | |
template<typename typeT > | |
fitsHeaderCard (const std::string &k, const typeT v, const std::string &c="") | |
Construct from the three components for a char. | |
fitsHeaderCard (const fitsHeaderCard &card) | |
Copy constructor. | |
fitsHeaderCard & | operator= (const fitsHeaderCard &card) |
Assignment. | |
Accessors | |
const std::string & | keyword () const |
Get the keyword. | |
void | keyword (const std::string &kw) |
Set the keyword. | |
int | type () const |
Get the type. | |
void | type (const int &t) |
Set the type. | |
template<typename typeT > | |
typeT | value () |
Get the value. | |
std::string | String () |
Get the value as a string. | |
char | Char () |
Get the value as a char. | |
unsigned char | UChar () |
Get the value as an unsigned char. | |
short | Short () |
Get the value as a short. | |
unsigned short | UShort () |
Get the value as an unsigned short. | |
int | Int () |
Get the value as a int. | |
unsigned int | UInt () |
Get the value as an unsigned int. | |
long | Long () |
Get the value as a long. | |
unsigned long | ULong () |
Get the value as an unsigned long. | |
long long | LongLong () |
Get the value as a long long. | |
unsigned long long | ULongLong () |
Get the value as an unsigned long long. | |
float | Float () |
Get the value as a float. | |
std::complex< float > | complexFloat () |
Get the value as a std::complex<float> | |
double | Double () |
Get the value as a double. | |
std::complex< double > | complexDouble () |
Get the value as a std::complex<double> | |
void | value (const char *v) |
Set the value to a char * string. | |
void | value (const std::string &v) |
Set the value to a std::string. | |
void | value (const char &v) |
Set the value to a char. | |
void | value (const unsigned char &v) |
Set the value to an unsigned char. | |
void | value (const short int &v) |
Set the value to a short int. | |
void | value (const unsigned short int &v) |
Set the value to an unsigned short int. | |
void | value (const int &v) |
Set the value to an int. | |
void | value (const unsigned int &v) |
Set the value to an unsigned int. | |
void | value (const long &v) |
Set the value to a long int. | |
void | value (const unsigned long int &v) |
Set the value to an unsigned long int. | |
void | value (const long long &v) |
Set the value to a long long int. | |
void | value (const unsigned long long int &v) |
Set the value to an unsigned long long int. | |
void | value (const float &v) |
Set the value to a float. | |
void | value (const std::complex< float > &v) |
Set the value to a complex float. | |
void | value (const double &v) |
Set the value to a double. | |
void | value (const std::complex< double > &v) |
Set the value to a complex double. | |
const std::string & | comment () |
Get the comment. | |
void | comment (const std::string &c) |
Set the comment. | |
Output | |
int | write (fitsfile *fptr) |
Protected Member Functions | |
Converters | |
void | convertToString () |
Convert from the type to a string. | |
template<typename typeT > | |
void | convertFromString () |
Convert from string to the type. | |
template<typename typeT > | |
typeT | convertedValue () |
Get the value from its type converted to a different type. | |
void | convertValue (int newtype) |
Convert the value from its type to a different type. | |
Protected Attributes | |
std::string | m_keyword |
The keyword. | |
int | m_type { fitsType<fitsUnknownType>() } |
The FITS type of the value, and indicates which member of m_values to access. | |
std::stringstream | m_valueStr |
The value in string form. | |
bool | m_valueGood { false } |
Flag indicating if the value is valid. | |
bool | m_valueStrGood { false } |
Flag indicating if the value string is valid. | |
std::string | m_comment |
The comment. | |
|
inline |
Basic c'tor.
Definition at line 108 of file fitsHeaderCard.hpp.
mx::fits::fitsHeaderCard::fitsHeaderCard | ( | const std::string & | k, |
const std::string & | v, | ||
const std::string & | c = "" |
||
) |
Construct from the three components for a value of string type.
[in] | k | the keyword |
[in] | v | the value string |
[in] | c | the comment |
Definition at line 34 of file fitsHeaderCard.cpp.
References m_comment, m_keyword, m_type, m_valueGood, m_valueStr, and m_valueStrGood.
mx::fits::fitsHeaderCard::fitsHeaderCard | ( | const std::string & | k, |
const std::string & | v, | ||
const int & | type, | ||
const std::string & | c = "" |
||
) |
Construct from the three components, when already in a string format.
Use this when the value is not a string
[in] | k | the keyword |
[in] | v | the value string |
[in] | type | the type of the value |
[in] | c | the comment |
Definition at line 44 of file fitsHeaderCard.cpp.
References m_comment, m_keyword, m_type, m_valueGood, m_valueStr, m_valueStrGood, and type().
mx::fits::fitsHeaderCard::fitsHeaderCard | ( | const std::string & | k, |
fitsCommentType | v, | ||
const std::string & | c | ||
) |
Construct from the three components, when it's really a comment card.
This overload is provided to facilitate handling of comments when re-writing the file.
[in] | k | the keyword |
[in] | v | an object of type fitsCommentType |
[in] | c | the comment |
Definition at line 54 of file fitsHeaderCard.cpp.
References m_comment, m_keyword, m_type, m_valueGood, and m_valueStrGood.
mx::fits::fitsHeaderCard::fitsHeaderCard | ( | const std::string & | k, |
fitsHistoryType | v, | ||
const std::string & | c | ||
) |
Construct from the three components, when it's really a history card.
This overload is provided to facilitate handling of history when re-writing the file.
[in] | k | the keyword |
[in] | v | an object of type fitsHistoryType |
[in] | c | the comment |
Definition at line 63 of file fitsHeaderCard.cpp.
References m_comment, m_keyword, m_type, m_valueGood, and m_valueStrGood.
|
explicit |
Construct from just keyword, when value's type is unknown.
[in] | k | the keyword |
Definition at line 72 of file fitsHeaderCard.cpp.
References m_keyword.
mx::fits::fitsHeaderCard::fitsHeaderCard | ( | const std::string & | k, |
const int | type | ||
) |
Construct from just keyword, when value's type known.
[in] | k | the keyword |
[in] | type | the type |
Definition at line 77 of file fitsHeaderCard.cpp.
mx::fits::fitsHeaderCard::fitsHeaderCard | ( | const std::string & | k, |
const typeT | v, | ||
const std::string & | c = "" |
||
) |
Construct from the three components for a char.
[in] | k | they keyword |
[in] | v | the value |
[in] | c | the comment |
Definition at line 483 of file fitsHeaderCard.hpp.
mx::fits::fitsHeaderCard::fitsHeaderCard | ( | const fitsHeaderCard & | card | ) |
Copy constructor.
Definition at line 83 of file fitsHeaderCard.cpp.
References m_comment, m_keyword, m_type, m_valueGood, m_valueStr, and m_valueStrGood.
char mx::fits::fitsHeaderCard::Char | ( | ) |
Get the value as a char.
This calls value<char>().
if | the value can't be converted to char |
Definition at line 898 of file fitsHeaderCard.cpp.
const std::string & mx::fits::fitsHeaderCard::comment | ( | ) |
Get the comment.
Definition at line 1168 of file fitsHeaderCard.cpp.
References m_comment.
void mx::fits::fitsHeaderCard::comment | ( | const std::string & | c | ) |
Set the comment.
[in] | c | the new comment |
Definition at line 1173 of file fitsHeaderCard.cpp.
References m_comment.
std::complex< double > mx::fits::fitsHeaderCard::complexDouble | ( | ) |
Get the value as a std::complex<double>
This calls value<std::complex<double>>().
if | the value can't be converted to std::complex<double> |
Definition at line 963 of file fitsHeaderCard.cpp.
std::complex< float > mx::fits::fitsHeaderCard::complexFloat | ( | ) |
Get the value as a std::complex<float>
This calls value<std::complex<float>>().
if | the value can't be converted to std::complex<float> |
Definition at line 953 of file fitsHeaderCard.cpp.
|
protected |
Get the value from its type converted to a different type.
Definition at line 435 of file fitsHeaderCard.cpp.
References mx::fits::fitsHeaderCard::values::Char, mx::fits::fitsHeaderCard::values::Double, mx::fits::fitsHeaderCard::values::Float, mx::fits::fitsHeaderCard::values::Int, mx::fits::fitsHeaderCard::values::Long, mx::fits::fitsHeaderCard::values::LongLong, m_keyword, m_type, mx::fits::fitsHeaderCard::values::Short, mx::fits::fitsHeaderCard::values::UChar, mx::fits::fitsHeaderCard::values::UInt, mx::fits::fitsHeaderCard::values::ULong, mx::fits::fitsHeaderCard::values::ULongLong, and mx::fits::fitsHeaderCard::values::UShort.
|
protected |
Convert from string to the type.
This populates the appropriate union field and sets m_valueGood so that this conversion only occurs once.
|
protected |
Convert from the type to a string.
This populates m_valueStr and sets m_valueStrGood so that this conversion only occurs once.
Definition at line 107 of file fitsHeaderCard.cpp.
References mx::fits::fitsHeaderCard::values::Char, mx::fits::fitsHeaderCard::values::complexDouble, mx::fits::fitsHeaderCard::values::complexFloat, mx::fits::fitsHeaderCard::values::Double, mx::fits::fitsHeaderCard::values::Float, mx::fits::fitsHeaderCard::values::Int, mx::fits::fitsHeaderCard::values::Long, mx::fits::fitsHeaderCard::values::LongLong, m_keyword, m_type, m_valueGood, m_valueStr, m_valueStrGood, mx::fits::fitsHeaderCard::values::Short, mx::fits::fitsHeaderCard::values::UChar, mx::fits::fitsHeaderCard::values::UInt, mx::fits::fitsHeaderCard::values::ULong, mx::fits::fitsHeaderCard::values::ULongLong, and mx::fits::fitsHeaderCard::values::UShort.
Referenced by convertValue().
|
protected |
Convert the value from its type to a different type.
[in] | newtype | the new type |
Definition at line 526 of file fitsHeaderCard.cpp.
References mx::fits::fitsHeaderCard::values::Char, convertToString(), mx::fits::fitsHeaderCard::values::Double, mx::fits::fitsHeaderCard::values::Float, mx::fits::fitsHeaderCard::values::Int, mx::fits::fitsHeaderCard::values::Long, mx::fits::fitsHeaderCard::values::LongLong, m_keyword, m_type, m_valueGood, mx::fits::fitsHeaderCard::values::Short, mx::fits::fitsHeaderCard::values::UChar, mx::fits::fitsHeaderCard::values::UInt, mx::fits::fitsHeaderCard::values::ULong, mx::fits::fitsHeaderCard::values::ULongLong, and mx::fits::fitsHeaderCard::values::UShort.
Referenced by type().
double mx::fits::fitsHeaderCard::Double | ( | ) |
Get the value as a double.
This calls value<double>().
if | the value can't be converted to double |
Definition at line 958 of file fitsHeaderCard.cpp.
float mx::fits::fitsHeaderCard::Float | ( | ) |
Get the value as a float.
This calls value<float>().
if | the value can't be converted to float |
Definition at line 948 of file fitsHeaderCard.cpp.
int mx::fits::fitsHeaderCard::Int | ( | ) |
Get the value as a int.
This calls value<int>().
if | the value can't be converted to int |
Definition at line 918 of file fitsHeaderCard.cpp.
const std::string & mx::fits::fitsHeaderCard::keyword | ( | ) | const |
Get the keyword.
Definition at line 635 of file fitsHeaderCard.cpp.
References m_keyword.
Referenced by mx::fits::fitsHeader::append(), mx::fits::fitsHeader::insert_after(), and mx::fits::fitsHeader::insert_before().
void mx::fits::fitsHeaderCard::keyword | ( | const std::string & | kw | ) |
Set the keyword.
[in] | kw | the new keyword |
Definition at line 640 of file fitsHeaderCard.cpp.
References m_keyword.
long mx::fits::fitsHeaderCard::Long | ( | ) |
Get the value as a long.
This calls value<long>().
if | the value can't be converted to long |
Definition at line 928 of file fitsHeaderCard.cpp.
long long mx::fits::fitsHeaderCard::LongLong | ( | ) |
Get the value as a long long.
This calls value<long long>().
if | the value can't be converted to long long |
Definition at line 938 of file fitsHeaderCard.cpp.
fitsHeaderCard & mx::fits::fitsHeaderCard::operator= | ( | const fitsHeaderCard & | card | ) |
Assignment.
Definition at line 94 of file fitsHeaderCard.cpp.
References m_comment, m_keyword, m_type, m_valueGood, m_valueStr, and m_valueStrGood.
short mx::fits::fitsHeaderCard::Short | ( | ) |
Get the value as a short.
This calls value<short>().
if | the value can't be converted to short |
Definition at line 908 of file fitsHeaderCard.cpp.
std::string mx::fits::fitsHeaderCard::String | ( | ) |
Get the value as a string.
This calls value<string>().
if | the value can't be converted to a string |
Definition at line 893 of file fitsHeaderCard.cpp.
int mx::fits::fitsHeaderCard::type | ( | ) | const |
Get the type.
Definition at line 1123 of file fitsHeaderCard.cpp.
References m_type.
Referenced by fitsHeaderCard(), fitsHeaderCard(), mx::fits::fitsHeader::append(), mx::fits::fitsHeader::insert_after(), and mx::fits::fitsHeader::insert_before().
void mx::fits::fitsHeaderCard::type | ( | const int & | t | ) |
Set the type.
If this is a change in type and the native type is set in m_value (indicated by m_valueGood == true) then it is converted to the new type. Otherwise, no conversion occurs.
[in] | t | the new type |
Definition at line 1128 of file fitsHeaderCard.cpp.
References convertValue(), m_type, m_valueGood, and m_valueStrGood.
unsigned char mx::fits::fitsHeaderCard::UChar | ( | ) |
Get the value as an unsigned char.
This calls value<unsigned char>().
if | the value can't be converted to unsigned char |
Definition at line 903 of file fitsHeaderCard.cpp.
unsigned int mx::fits::fitsHeaderCard::UInt | ( | ) |
Get the value as an unsigned int.
This calls value<unsigned int>().
if | the value can't be converted to unsigned int |
Definition at line 923 of file fitsHeaderCard.cpp.
unsigned long mx::fits::fitsHeaderCard::ULong | ( | ) |
Get the value as an unsigned long.
This calls value<unsigned long>().
if | the value can't be converted to unsigned long |
Definition at line 933 of file fitsHeaderCard.cpp.
unsigned long long mx::fits::fitsHeaderCard::ULongLong | ( | ) |
Get the value as an unsigned long long.
This calls value<unsigned long long>().
if | the value can't be converted to unsigned long long |
Definition at line 943 of file fitsHeaderCard.cpp.
unsigned short mx::fits::fitsHeaderCard::UShort | ( | ) |
Get the value as an unsigned short.
This calls value<unsigned short>().
if | the value can't be converted to unsigned short |
Definition at line 913 of file fitsHeaderCard.cpp.
typeT mx::fits::fitsHeaderCard::value | ( | ) |
Get the value.
Returns the value as typeT. Conversions occur automatically if necessary.
if | the value can't be converted to typeT |
Referenced by fitsHeaderCard().
void mx::fits::fitsHeaderCard::value | ( | const char & | v | ) |
Set the value to a char.
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
[in] | v | a char |
Definition at line 1011 of file fitsHeaderCard.cpp.
References mx::fits::fitsHeaderCard::values::Char, m_type, m_valueGood, and m_valueStrGood.
void mx::fits::fitsHeaderCard::value | ( | const char * | v | ) |
Set the value to a char * string.
[in] | v | a character string |
Definition at line 968 of file fitsHeaderCard.cpp.
References m_type, m_valueGood, m_valueStr, and m_valueStrGood.
void mx::fits::fitsHeaderCard::value | ( | const double & | v | ) |
Set the value to a double.
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
[in] | v | a double |
Definition at line 1107 of file fitsHeaderCard.cpp.
References mx::fits::fitsHeaderCard::values::Double, m_type, m_valueGood, and m_valueStrGood.
void mx::fits::fitsHeaderCard::value | ( | const float & | v | ) |
Set the value to a float.
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
[in] | v | a float |
Definition at line 1091 of file fitsHeaderCard.cpp.
References mx::fits::fitsHeaderCard::values::Float, m_type, m_valueGood, and m_valueStrGood.
void mx::fits::fitsHeaderCard::value | ( | const int & | v | ) |
Set the value to an int.
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
[in] | v | an int |
Definition at line 1043 of file fitsHeaderCard.cpp.
References mx::fits::fitsHeaderCard::values::Int, m_type, m_valueGood, and m_valueStrGood.
void mx::fits::fitsHeaderCard::value | ( | const long & | v | ) |
Set the value to a long int.
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
[in] | v | a long int |
Definition at line 1059 of file fitsHeaderCard.cpp.
References mx::fits::fitsHeaderCard::values::Long, m_type, m_valueGood, and m_valueStrGood.
void mx::fits::fitsHeaderCard::value | ( | const long long & | v | ) |
Set the value to a long long int.
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
[in] | v | a long long int |
Definition at line 1075 of file fitsHeaderCard.cpp.
References mx::fits::fitsHeaderCard::values::LongLong, m_type, m_valueGood, and m_valueStrGood.
void mx::fits::fitsHeaderCard::value | ( | const short int & | v | ) |
Set the value to a short int.
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
[in] | v | a short int |
Definition at line 1027 of file fitsHeaderCard.cpp.
References m_type, m_valueGood, m_valueStrGood, and mx::fits::fitsHeaderCard::values::Short.
void mx::fits::fitsHeaderCard::value | ( | const std::complex< double > & | v | ) |
Set the value to a complex double.
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
[in] | v | a complex double |
Definition at line 1115 of file fitsHeaderCard.cpp.
References mx::fits::fitsHeaderCard::values::complexDouble, m_type, m_valueGood, and m_valueStrGood.
void mx::fits::fitsHeaderCard::value | ( | const std::complex< float > & | v | ) |
Set the value to a complex float.
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
[in] | v | a complex float |
Definition at line 1099 of file fitsHeaderCard.cpp.
References mx::fits::fitsHeaderCard::values::complexFloat, m_type, m_valueGood, and m_valueStrGood.
void mx::fits::fitsHeaderCard::value | ( | const std::string & | v | ) |
Set the value to a std::string.
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
[in] | v | a std::string |
Definition at line 990 of file fitsHeaderCard.cpp.
References m_type, m_valueGood, m_valueStr, and m_valueStrGood.
void mx::fits::fitsHeaderCard::value | ( | const unsigned char & | v | ) |
Set the value to an unsigned char.
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
[in] | v | an unsigned char |
Definition at line 1019 of file fitsHeaderCard.cpp.
References m_type, m_valueGood, m_valueStrGood, and mx::fits::fitsHeaderCard::values::UChar.
void mx::fits::fitsHeaderCard::value | ( | const unsigned int & | v | ) |
Set the value to an unsigned int.
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
[in] | v | an unsigned int |
Definition at line 1051 of file fitsHeaderCard.cpp.
References m_type, m_valueGood, m_valueStrGood, and mx::fits::fitsHeaderCard::values::UInt.
void mx::fits::fitsHeaderCard::value | ( | const unsigned long int & | v | ) |
Set the value to an unsigned long int.
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
[in] | v | an unsigned long int |
Definition at line 1067 of file fitsHeaderCard.cpp.
References m_type, m_valueGood, m_valueStrGood, and mx::fits::fitsHeaderCard::values::ULong.
void mx::fits::fitsHeaderCard::value | ( | const unsigned long long int & | v | ) |
Set the value to an unsigned long long int.
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
[in] | v | an unsigned long long int |
Definition at line 1083 of file fitsHeaderCard.cpp.
References m_type, m_valueGood, m_valueStrGood, and mx::fits::fitsHeaderCard::values::ULongLong.
void mx::fits::fitsHeaderCard::value | ( | const unsigned short int & | v | ) |
Set the value to an unsigned short int.
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
[in] | v | an unsigned short int |
int mx::fits::fitsHeaderCard::write | ( | fitsfile * | fptr | ) |
Writes this card to a FITS file, using mx::improc::fits_write_key<typename typeT>(fitsfile * fptr, char * keyword, void * value, char * comment).
Definition at line 1178 of file fitsHeaderCard.cpp.
References mx::fits::fitsHeaderCard::values::Char, mx::fits::fitsHeaderCard::values::Double, mx::fits::fitsHeaderCard::values::Float, mx::fits::fitsHeaderCard::values::Int, mx::fits::fitsHeaderCard::values::Long, mx::fits::fitsHeaderCard::values::LongLong, m_comment, m_keyword, m_type, m_valueStr, m_valueStrGood, mx::fits::fitsHeaderCard::values::Short, mx::fits::fitsHeaderCard::values::UChar, mx::fits::fitsHeaderCard::values::UInt, mx::fits::fitsHeaderCard::values::ULong, mx::fits::fitsHeaderCard::values::ULongLong, and mx::fits::fitsHeaderCard::values::UShort.
|
protected |
The comment.
Definition at line 99 of file fitsHeaderCard.hpp.
Referenced by fitsHeaderCard(), fitsHeaderCard(), fitsHeaderCard(), fitsHeaderCard(), fitsHeaderCard(), fitsHeaderCard(), comment(), comment(), operator=(), and write().
|
protected |
The keyword.
Definition at line 61 of file fitsHeaderCard.hpp.
Referenced by fitsHeaderCard(), fitsHeaderCard(), fitsHeaderCard(), fitsHeaderCard(), fitsHeaderCard(), fitsHeaderCard(), fitsHeaderCard(), fitsHeaderCard(), convertedValue(), convertToString(), convertValue(), keyword(), keyword(), operator=(), and write().
|
protected |
The FITS type of the value, and indicates which member of m_values to access.
Definition at line 64 of file fitsHeaderCard.hpp.
Referenced by fitsHeaderCard(), fitsHeaderCard(), fitsHeaderCard(), fitsHeaderCard(), fitsHeaderCard(), fitsHeaderCard(), convertedValue(), convertToString(), convertValue(), operator=(), type(), type(), value(), value(), value(), value(), value(), value(), value(), value(), value(), value(), value(), value(), value(), value(), value(), and write().
|
protected |
Flag indicating if the value is valid.
Definition at line 95 of file fitsHeaderCard.hpp.
Referenced by fitsHeaderCard(), fitsHeaderCard(), fitsHeaderCard(), fitsHeaderCard(), fitsHeaderCard(), convertToString(), convertValue(), operator=(), type(), value(), value(), value(), value(), value(), value(), value(), value(), value(), value(), value(), value(), value(), value(), and value().
|
protected |
The value in string form.
Definition at line 93 of file fitsHeaderCard.hpp.
Referenced by fitsHeaderCard(), fitsHeaderCard(), fitsHeaderCard(), convertToString(), operator=(), value(), value(), and write().
|
protected |
Flag indicating if the value string is valid.
Definition at line 96 of file fitsHeaderCard.hpp.
Referenced by fitsHeaderCard(), fitsHeaderCard(), fitsHeaderCard(), fitsHeaderCard(), fitsHeaderCard(), convertToString(), operator=(), type(), value(), value(), value(), value(), value(), value(), value(), value(), value(), value(), value(), value(), value(), value(), value(), and write().