Changeset 6767 for trunk/psLib/src/fits/psFitsTable.h
- Timestamp:
- Apr 4, 2006, 9:52:55 AM (20 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/fits/psFitsTable.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/fits/psFitsTable.h
r5511 r6767 7 7 * @author Robert DeSonia, MHPCC 8 8 * 9 * @version $Revision: 1. 1$ $Name: not supported by cvs2svn $10 * @date $Date: 200 5-11-14 22:18:30$9 * @version $Revision: 1.2 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2006-04-04 19:52:42 $ 11 11 * 12 12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 72 72 ); 73 73 74 /** Writes a whole FITS table. The current HDU type must be either75 * PS_FITS_TYPE_BINARY_TABLE or PS_FITS_TYPE_ASCII_TABLE.74 /** Writes a whole FITS table. A new HDU of the type BINTABLE is appended 75 * to the file. 76 76 * 77 77 * @return bool TRUE if the write was successful, otherwise FALSE 78 78 * 79 * @see psFitsReadTableRow 79 * @see psFitsReadTable 80 * @see psFitsInsertTable 80 81 */ 81 82 bool psFitsWriteTable( … … 84 85 const psArray* table 85 86 ///< Array of psMetadata items, which contains the output data items of each row. 87 ); 88 89 /** Inserts a whole FITS table. A new HDU of the type BINTABLE is inserted either 90 * before or after, depending on the AFTER parameter, the current HDU. 91 * 92 * @return bool TRUE if the insert/write was successful, otherwise FALSE 93 * 94 * @see psFitsWriteTable 95 */ 96 bool psFitsInsertTable( 97 psFits* fits, ///< the psFits object 98 const psMetadata* header, ///< header items for the new HDU. Can be NULL. 99 const psArray* table, 100 ///< Array of psMetadata items, which contains the output data items of each row. 101 bool after 102 ///< TRUE if insert is done after CHDU, otherwise table is inserted before CHDU 86 103 ); 87 104 … … 94 111 */ 95 112 bool psFitsUpdateTable( 96 psFits* fits, ///< the psFits object113 psFits* fits, ///< the psFits object 97 114 const psMetadata* data, 98 115 ///< Array of psMetadata items, which contains the output data items of each row.
Note:
See TracChangeset
for help on using the changeset viewer.
