FACT++  1.0
template<typename T >
CompressedFitsFile::HeaderEntry::HeaderEntry ( const string &  k,
const T &  val,
const string &  comm 
)
inline

Regular constructor.

Parameters
keythe name of the keyword entry
valueits value
commentan optionnal comment to be placed after the value

Definition at line 45 of file fitsDecompressor.cc.

47  : _key(k),
48  _value(""),
49  _comment(comm),
50  _fitsString("")
51  {
52  setValue(val);
53  }
string _comment
the comment associated to the header entry
string _value
the value of the header entry
string _key
the key (name) of the header entry
string _fitsString
the string that will be written to the fits file