Changeset 3500 for trunk/psLib/src/dataIO/psFits.h
- Timestamp:
- Mar 24, 2005, 1:52:25 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/dataIO/psFits.h (modified) (19 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/dataIO/psFits.h
r3476 r3500 7 7 * @author Robert DeSonia, MHPCC 8 8 * 9 * @version $Revision: 1. 9$ $Name: not supported by cvs2svn $10 * @date $Date: 2005-03-2 2 21:52:49$9 * @version $Revision: 1.10 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2005-03-24 23:52:25 $ 11 11 * 12 12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 63 63 */ 64 64 bool psFitsMoveExtName( 65 psFits* fits,///< the psFits object to move65 const psFits* fits, ///< the psFits object to move 66 66 const char* extname ///< the extension name 67 67 ); … … 72 72 */ 73 73 bool psFitsMoveExtNum( 74 psFits* fits,///< the psFits object to move74 const psFits* fits, ///< the psFits object to move 75 75 int extnum, ///< the extension number to move to (zero is primary HDU) 76 76 bool relative ///< if true, extnum is a relative number to the current position … … 83 83 */ 84 84 int psFitsGetExtNum( 85 psFits* fits///< the psFits object85 const psFits* fits ///< the psFits object 86 86 ); 87 87 … … 92 92 */ 93 93 char* psFitsGetExtName( 94 psFits* fits///< the psFits object94 const psFits* fits ///< the psFits object 95 95 ); 96 96 … … 100 100 */ 101 101 bool psFitsSetExtName( 102 psFits* fits,///< the psFits object102 const psFits* fits, ///< the psFits object 103 103 const char* name ///< the extension name 104 104 ); … … 110 110 */ 111 111 int psFitsGetSize( 112 psFits* fits///< the psFits object112 const psFits* fits ///< the psFits object 113 113 ); 114 114 … … 119 119 */ 120 120 psFitsType psFitsGetExtType( 121 psFits* fits///< the psFits object121 const psFits* fits ///< the psFits object 122 122 ); 123 123 … … 143 143 ///< of the cooresponding HDUs. 144 144 145 psFits* fits ///< the psFits object145 const psFits* fits ///< the psFits object 146 146 ); 147 147 … … 152 152 bool psFitsWriteHeader( 153 153 const psMetadata* header, ///< the psMetadata data in which to write 154 psFits* fits///< the psFits object154 const psFits* fits ///< the psFits object 155 155 ); 156 156 … … 161 161 psImage* psFitsReadImage( 162 162 psImage* out, ///< a psImage to recycle. 163 psFits* fits,///< the psFits object163 const psFits* fits, ///< the psFits object 164 164 psRegion region, ///< the region in the FITS image to read 165 165 int z ///< the z-plane in the FITS image cube to read … … 171 171 */ 172 172 bool psFitsWriteImage( 173 psFits* fits,///< the psFits object173 const psFits* fits, ///< the psFits object 174 174 const psMetadata* header, ///< header items for the new HDU. Can be NULL. 175 175 const psImage* input, ///< the image to output … … 183 183 */ 184 184 bool psFitsUpdateImage( 185 psFits* fits,///< the psFits object185 const psFits* fits, ///< the psFits object 186 186 const psImage* input, ///< the image to output 187 187 psRegion region, ///< the region in the FITS image to write … … 195 195 */ 196 196 psMetadata* psFitsReadTableRow( 197 psFits* fits,///< the psFits object197 const psFits* fits, ///< the psFits object 198 198 int row ///< row number to read 199 199 ); … … 206 206 */ 207 207 psArray* psFitsReadTableColumn( 208 psFits* fits,///< the psFits object208 const psFits* fits, ///< the psFits object 209 209 const char* colname ///< the column name 210 210 ); … … 217 217 */ 218 218 psVector* psFitsReadTableColumnNum( 219 psFits* fits,///< the psFits object219 const psFits* fits, ///< the psFits object 220 220 const char* colname ///< the column name 221 221 ); … … 231 231 */ 232 232 psArray* psFitsReadTable( 233 psFits* fits///< the psFits object233 const psFits* fits ///< the psFits object 234 234 ); 235 235 … … 242 242 */ 243 243 bool psFitsWriteTable( 244 psFits* fits,///< the psFits object244 const psFits* fits, ///< the psFits object 245 245 psMetadata* header, ///< header items for the new HDU. Can be NULL. 246 246 psArray* table, … … 258 258 */ 259 259 bool psFitsUpdateTable( 260 psFits* fits,///< the psFits object260 const psFits* fits, ///< the psFits object 261 261 psMetadata* data, 262 262 ///< Array of psMetadata items, which contains the output data items of each row.
Note:
See TracChangeset
for help on using the changeset viewer.
