FACT++  1.0
void fits::Table::PrintKeys ( bool  display_all = false) const
inline

Definition at line 356 of file fits.h.

References ___all___, gLog, and FITS::IsReservedKeyWord().

Referenced by fits::PrintKeys().

357  {
358  for (Keys::const_iterator it=keys.cbegin(); it!=keys.cend(); it++)
359  {
360  if (!display_all && FITS::IsReservedKeyWord(it->first))
361  continue;
362 
363  gLog << ___all___ << std::setw(2) << it->second.type << '|' << it->first << '=' << it->second.value << '/' << it->second.comment << '|' << std::endl;
364  }
365  }
static bool IsReservedKeyWord(const std::string &key)
Definition: FITS.h:26
#define gLog
Definition: fits.h:36
Keys keys
Definition: fits.h:118
#define ___all___
Definition: fits.h:39

+ Here is the call graph for this function:

+ Here is the caller graph for this function: