Changeset 14868 for trunk/psLib/src/fits/psFits.h
- Timestamp:
- Sep 17, 2007, 11:35:35 AM (19 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/fits/psFits.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/fits/psFits.h
r12554 r14868 4 4 * @author Robert DeSonia, MHPCC 5 5 * 6 * @version $Revision: 1.2 8$ $Name: not supported by cvs2svn $7 * @date $Date: 2007-0 3-23 00:34:40$6 * @version $Revision: 1.29 $ $Name: not supported by cvs2svn $ 7 * @date $Date: 2007-09-17 21:35:35 $ 8 8 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii 9 9 */ … … 34 34 PS_FITS_TYPE_ANY = ANY_HDU ///< Any HDU type 35 35 } psFitsType; 36 37 typedef enum { 38 PS_FITS_COMPRESS_NONE = 0, 39 PS_FITS_COMPRESS_GZIP, 40 PS_FITS_COMPRESS_RICE, 41 PS_FITS_COMPRESS_HCOMPRESS, 42 PS_FITS_COMPRESS_PLIO 43 } psFitsCompressionType; 36 44 37 45 /** FITS file object. … … 73 81 ); 74 82 83 /** Enables/configures FITS compression. 84 * 85 * Note that HCOMPRESS compression is not presently supported. 86 * 87 * @return bool TRUE if successfully configured, otherwise FALSE 88 */ 89 bool psFitsSetCompression( 90 psFits* fits, ///< psFits object to close 91 psFitsCompressionType type, ///< type of compression 92 int ndim, ///< number of dim in tile size array 93 long *tilesize, ///< pointer to an array defining compression tile size 94 int noisebits, ///< noise bits 95 int scale, ///< hcompress scale 96 int smooth ///< hcompress smothing 97 ); 98 75 99 /** Checks the type of a particular pointer. 76 100 *
Note:
See TracChangeset
for help on using the changeset viewer.
