Changeset 7540
- Timestamp:
- Jun 13, 2006, 12:28:02 PM (20 years ago)
- Location:
- trunk/psLib/src/fits
- Files:
-
- 5 edited
-
psFitsHeader.c (modified) (4 diffs)
-
psFitsHeader.h (modified) (3 diffs)
-
psFitsImage.c (modified) (3 diffs)
-
psFitsImage.h (modified) (3 diffs)
-
psFitsTable.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/fits/psFitsHeader.c
r7297 r7540 7 7 * @author Robert DeSonia, MHPCC 8 8 * 9 * @version $Revision: 1.2 1$ $Name: not supported by cvs2svn $10 * @date $Date: 2006-06- 02 20:59:57$9 * @version $Revision: 1.22 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2006-06-13 22:28:02 $ 11 11 * 12 12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 246 246 247 247 static bool fitsWriteHeader(psFits *fits, // The FITS file handle 248 psMetadata *output, // Metadata that is to be output into the FITS file248 const psMetadata *output, // Metadata that is to be output into the FITS file 249 249 bool keyStarts // Write out the key starts? 250 250 ) … … 387 387 388 388 bool psFitsWriteHeader(psFits *fits, 389 psMetadata *output389 const psMetadata *output 390 390 ) 391 391 { … … 404 404 405 405 bool psFitsWriteBlank(psFits* fits, 406 psMetadata* output406 const psMetadata* output 407 407 ) 408 408 { -
trunk/psLib/src/fits/psFitsHeader.h
r7232 r7540 7 7 * @author Robert DeSonia, MHPCC 8 8 * 9 * @version $Revision: 1. 7$ $Name: not supported by cvs2svn $10 * @date $Date: 2006-0 5-27 01:59:36$9 * @version $Revision: 1.8 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2006-06-13 22:28:02 $ 11 11 * 12 12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 48 48 bool psFitsWriteHeader( 49 49 psFits* fits, ///< the psFits object 50 psMetadata* output///< the psMetadata data in which to write50 const psMetadata* output ///< the psMetadata data in which to write 51 51 ); 52 52 … … 57 57 bool psFitsWriteBlank( 58 58 psFits* fits, ///< the psFits object 59 psMetadata* output///< the psMetadata data in which to write59 const psMetadata* output ///< the psMetadata data in which to write 60 60 ); 61 61 -
trunk/psLib/src/fits/psFitsImage.c
r7232 r7540 7 7 * @author Robert DeSonia, MHPCC 8 8 * 9 * @version $Revision: 1. 9$ $Name: not supported by cvs2svn $10 * @date $Date: 2006-0 5-27 01:59:36$9 * @version $Revision: 1.10 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2006-06-13 22:28:02 $ 11 11 * 12 12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 277 277 278 278 bool psFitsWriteImage(psFits* fits, 279 psMetadata* header,279 const psMetadata* header, 280 280 const psImage* input, 281 281 int numZPlanes, … … 289 289 290 290 bool psFitsInsertImage(psFits* fits, 291 psMetadata* header,291 const psMetadata* header, 292 292 const psImage* input, 293 293 int numZPlanes, -
trunk/psLib/src/fits/psFitsImage.h
r6874 r7540 7 7 * @author Robert DeSonia, MHPCC 8 8 * 9 * @version $Revision: 1. 3$ $Name: not supported by cvs2svn $10 * @date $Date: 2006-0 4-17 22:00:03$9 * @version $Revision: 1.4 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2006-06-13 22:28:02 $ 11 11 * 12 12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 43 43 bool psFitsWriteImage( 44 44 psFits* fits, ///< the psFits object 45 psMetadata* header,///< header items for the new HDU. Can be NULL.45 const psMetadata* header, ///< header items for the new HDU. Can be NULL. 46 46 const psImage* input, ///< the image to output 47 47 int depth, ///< the number of z-planes of the FITS image data cube … … 56 56 bool psFitsInsertImage( 57 57 psFits* fits, ///< the psFits object 58 psMetadata* header,///< header items for the new HDU. Can be NULL.58 const psMetadata* header, ///< header items for the new HDU. Can be NULL. 59 59 const psImage* input, ///< the image to output 60 60 int depth, ///< the number of z-planes of the FITS image data cube -
trunk/psLib/src/fits/psFitsTable.h
r7465 r7540 7 7 * @author Robert DeSonia, MHPCC 8 8 * 9 * @version $Revision: 1. 4$ $Name: not supported by cvs2svn $10 * @date $Date: 2006-06-1 0 00:07:10$9 * @version $Revision: 1.5 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2006-06-13 22:28:02 $ 11 11 * 12 12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 82 82 bool psFitsWriteTable( 83 83 psFits* fits, ///< the psFits object 84 psMetadata* header, ///< header items for the new HDU. Can be NULL.84 const psMetadata* header, ///< header items for the new HDU. Can be NULL. 85 85 const psArray* table, ///< Array of psMetadata items, which contains the output data items of each row. 86 86 const char *extname ///< Extension name … … 96 96 bool psFitsInsertTable( 97 97 psFits* fits, ///< the psFits object 98 psMetadata* header, ///< header items for the new HDU. Can be NULL.98 const psMetadata* header, ///< header items for the new HDU. Can be NULL. 99 99 const psArray* table, ///< Array of psMetadata items, which contains the output data items of each row. 100 100 const char *extname, ///< Extension name
Note:
See TracChangeset
for help on using the changeset viewer.
