IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 26, 2006, 3:50:33 PM (20 years ago)
Author:
Paul Price
Message:

Moving psFitsWriteTable functionality into psFitsInsertTable (the two were virtually identical; this now mirrors psFitsWriteImage and psFitsInsertImage). psFitsInsertImage now writes out the supplied header.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/fits/psFitsTable.h

    r6767 r7230  
    77 *  @author Robert DeSonia, MHPCC
    88 *
    9  *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2006-04-04 19:52:42 $
     9 *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2006-05-27 01:50:33 $
    1111 *
    1212 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    8282bool psFitsWriteTable(
    8383    psFits* fits,                      ///< the psFits object
    84     const psMetadata* header,          ///< header items for the new HDU.  Can be NULL.
    85     const psArray* table
    86     ///< Array of psMetadata items, which contains the output data items of each row.
     84    psMetadata* header,          ///< header items for the new HDU.  Can be NULL.
     85    const psArray* table, ///< Array of psMetadata items, which contains the output data items of each row.
     86    const char *extname                 ///< Extension name
    8787);
    8888
     
    9696bool psFitsInsertTable(
    9797    psFits* fits,                  ///< the psFits object
    98     const psMetadata* header,      ///< header items for the new HDU.  Can be NULL.
    99     const psArray* table,
    100     ///< Array of psMetadata items, which contains the output data items of each row.
    101     bool after
    102     ///< TRUE if insert is done after CHDU, otherwise table is inserted before CHDU
     98    psMetadata* header,      ///< header items for the new HDU.  Can be NULL.
     99    const psArray* table, ///< Array of psMetadata items, which contains the output data items of each row.
     100    const char *extname,                ///< Extension name
     101    bool after    ///< TRUE if insert is done after CHDU, otherwise table is inserted before CHDU
    103102);
    104103
Note: See TracChangeset for help on using the changeset viewer.