FACT++  1.0
int FitsLoader::ListColumnsPlease ( const Event )
private

Lists the loaded column names.

List the columns that are in the loaded Fits table.

Definition at line 486 of file fitsloader.cc.

References fColMap, StateMachineImp::GetCurrentState(), and MessageImp::Message().

Referenced by FitsLoader().

487 {
488  Message("Columns in the loaded table are:");
489  map<string, CCfits::Column*>::iterator it;
490  for (it=fColMap.begin(); it != fColMap.end(); it++)
491  Message(it->first);
492  return GetCurrentState();
493 }
map< string, CCfits::Column * > fColMap
map between the column names and their CCfits objects
Definition: fitsloader.cc:82
int GetCurrentState() const
return the current state of the machine
int Message(const std::string &str)
Definition: MessageImp.h:46

+ Here is the call graph for this function:

+ Here is the caller graph for this function: