FACT++  1.0
void PrintUsage ( )

Definition at line 1068 of file fitsdump.cc.

Referenced by main().

1069 {
1070  cout <<
1071  "fitsdump is a tool to dump data from a FITS table as ascii.\n"
1072  "\n"
1073  "Usage: fitsdump [OPTIONS] fitsfile col col ... \n"
1074  " or: fitsdump [OPTIONS]\n"
1075  "\n"
1076  "Addressing a column:\n"
1077  " ColumnName: Will address all fields of a column\n"
1078  " ColumnName[n]: Will address the n-th field of a column (starts with 0)\n"
1079  " ColumnName[n1:n2]: Will address all fields between n1 and including n2\n"
1080 #ifdef HAVE_ROOT
1081  "\n"
1082  "Selecting a column:\n"
1083  " Commandline option: --filter\n"
1084  " Explanation: Such a selection is evaluated using TFormula, hence, every "
1085  "mathematical operation allowed in TFormula is allowed there, too. "
1086  "The reference is the column index as printed in the output stream, "
1087  "starting with 1. The index 0 is reserved for the row number.\n"
1088 #endif
1089  ;
1090  cout << endl;
1091 }

+ Here is the caller graph for this function: