Changeset 7232
- Timestamp:
- May 26, 2006, 3:59:36 PM (20 years ago)
- Location:
- trunk/psLib/src/fits
- Files:
-
- 4 edited
-
psFitsHeader.c (modified) (3 diffs)
-
psFitsHeader.h (modified) (3 diffs)
-
psFitsImage.c (modified) (2 diffs)
-
psFitsTable.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/fits/psFitsHeader.c
r7229 r7232 7 7 * @author Robert DeSonia, MHPCC 8 8 * 9 * @version $Revision: 1.1 1$ $Name: not supported by cvs2svn $10 * @date $Date: 2006-05-27 01: 49:22$9 * @version $Revision: 1.12 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2006-05-27 01:59:36 $ 11 11 * 12 12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 219 219 220 220 221 bool psFitsWriteHeader(ps Metadata *output, // Metadata that is to be output into the FITS file222 ps Fits *fits // The FITS file handle221 bool psFitsWriteHeader(psFits *fits, // The FITS file handle 222 psMetadata *output // Metadata that is to be output into the FITS file 223 223 ) 224 224 { … … 312 312 } 313 313 314 bool psFitsWriteBlank(psMetadata* output, 315 psFits* fits) 314 bool psFitsWriteBlank(psFits* fits, 315 psMetadata* output 316 ) 316 317 { 317 318 if (!fits) { -
trunk/psLib/src/fits/psFitsHeader.h
r7229 r7232 7 7 * @author Robert DeSonia, MHPCC 8 8 * 9 * @version $Revision: 1. 6$ $Name: not supported by cvs2svn $10 * @date $Date: 2006-05-27 01: 49:22$9 * @version $Revision: 1.7 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2006-05-27 01:59:36 $ 11 11 * 12 12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 47 47 */ 48 48 bool psFitsWriteHeader( 49 ps Metadata* output, ///< the psMetadata data in which to write50 ps Fits* fits ///< the psFits object49 psFits* fits, ///< the psFits object 50 psMetadata* output ///< the psMetadata data in which to write 51 51 ); 52 52 … … 56 56 */ 57 57 bool psFitsWriteBlank( 58 ps Metadata* output, ///< the psMetadata data in which to write59 ps Fits* fits ///< the psFits object58 psFits* fits, ///< the psFits object 59 psMetadata* output ///< the psMetadata data in which to write 60 60 ); 61 61 -
trunk/psLib/src/fits/psFitsImage.c
r7229 r7232 7 7 * @author Robert DeSonia, MHPCC 8 8 * 9 * @version $Revision: 1. 8$ $Name: not supported by cvs2svn $10 * @date $Date: 2006-05-27 01: 49:22$9 * @version $Revision: 1.9 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2006-05-27 01:59:36 $ 11 11 * 12 12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 348 348 } 349 349 350 if (header && !psFitsWriteHeader( header, fits)) {350 if (header && !psFitsWriteHeader(fits, header)) { 351 351 psError(PS_ERR_IO, false, "Unable to write FITS header.\n"); 352 352 return false; -
trunk/psLib/src/fits/psFitsTable.c
r7230 r7232 7 7 * @author Robert DeSonia, MHPCC 8 8 * 9 * @version $Revision: 1. 8$ $Name: not supported by cvs2svn $10 * @date $Date: 2006-05-27 01:5 0:33$9 * @version $Revision: 1.9 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2006-05-27 01:59:36 $ 11 11 * 12 12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 732 732 733 733 // Write header 734 if (header && !psFitsWriteHeader( header, fits)) {734 if (header && !psFitsWriteHeader(fits, header)) { 735 735 psError(PS_ERR_IO, false, "Unable to write FITS header.\n"); 736 736 return false;
Note:
See TracChangeset
for help on using the changeset viewer.
