Changeset 2962 for trunk/psLib/src/fileUtils/psFits.h
- Timestamp:
- Jan 12, 2005, 12:17:02 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/fileUtils/psFits.h (modified) (10 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/fileUtils/psFits.h
r2806 r2962 7 7 * @author Robert DeSonia, MHPCC 8 8 * 9 * @version $Revision: 1. 3$ $Name: not supported by cvs2svn $10 * @date $Date: 200 4-12-23 19:13:53$9 * @version $Revision: 1.4 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2005-01-12 22:17:01 $ 11 11 * 12 12 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 37 37 38 38 /** FITS file object. 39 * 39 * 40 40 * This object should be considered opaque to the user; no item in this 41 41 * struct should be accessed directly. … … 51 51 /** Opens a FITS file and allocates the associated psFits object. 52 52 * 53 * @return psFits* new psFits object for the FITS files specified or 53 * @return psFits* new psFits object for the FITS files specified or 54 54 * NULL if the open of the FITS file failed 55 55 */ 56 56 psFits* psFitsAlloc( 57 const char* name, ///< the FITS file name 58 bool readwrite ///< if TRUE, the file is open for read/write. 57 const char* name ///< the FITS file name 59 58 ); 60 59 … … 89 88 /** Get the current extension name. 90 89 * 91 * @return int Current HDU name of the psFits file or NULL if an 90 * @return int Current HDU name of the psFits file or NULL if an 92 91 * error occurred. 93 92 */ … … 96 95 ); 97 96 97 /** Set the current extension's name 98 * 99 * @return bool TRUE if the extension was successfully set, otherwise FALSE. 100 */ 101 bool psFitsSetExtName( 102 psFits* fits, ///< the psFits object 103 const char* name ///< the extension name 104 ); 105 98 106 /** Get the total number of HDUs in the FITS file. 99 107 * 100 * @return int The total number of HDUs in the FITS file or < 0 if an 108 * @return int The total number of HDUs in the FITS file or < 0 if an 101 109 * error occurred. 102 110 */ … … 107 115 /** Get the extension type of the current HDU. 108 116 * 109 * @return psFitsType The type of the current HDU. If PS_FITS_TYPE_UNKNOWN, 117 * @return psFitsType The type of the current HDU. If PS_FITS_TYPE_UNKNOWN, 110 118 * the type could not be determined. 111 119 */ … … 151 159 * @return psImage* the read image or NULL if there was an error. 152 160 */ 153 psImage* psFitsReadImage Section(161 psImage* psFitsReadImage( 154 162 psImage* out, ///< a psImage to recycle. 155 163 psFits* fits, ///< the psFits object … … 182 190 * PS_FITS_TYPE_BINARY_TABLE or PS_FITS_TYPE_ASCII_TABLE. 183 191 * 184 * @return psArray* Array of data items for the specified column or NULL 192 * @return psArray* Array of data items for the specified column or NULL 185 193 * if an error occurred. 186 194 */ … … 207 215 * @return psArray* Array of psMetadata items, which contains the output 208 216 * data items of each row. 209 * 217 * 210 218 * @see psFitsReadTableRow 211 219 */ … … 218 226 * 219 227 * @return bool TRUE if the write was successful, otherwise FALSE 220 * 228 * 221 229 * @see psFitsReadTableRow 222 230 */
Note:
See TracChangeset
for help on using the changeset viewer.
