IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 19, 2009, 12:38:16 PM (17 years ago)
Author:
Paul Price
Message:

Done with development of mechanism to automatically publish detections: merging branches/pap_mops (r24510) into trunk

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/psLib/src/fits/psFitsTable.h

    r15248 r24512  
    9090);
    9191
     92/// Write an empty table
     93bool psFitsWriteTableEmpty(
     94    psFits *fits,                       ///< FITS file pointer
     95    const psMetadata *header,           ///< Header to write
     96    const psMetadata *columns,          ///< Column definitions; no data used except name,type
     97    const char *extname                 ///< Extension name for table
     98    );
     99
    92100/** Inserts a whole FITS table. A new HDU of the type BINTABLE is inserted either
    93101 *  before or after, depending on the AFTER parameter, the current HDU.
     
    104112    bool after    ///< TRUE if insert is done after CHDU, otherwise table is inserted before CHDU
    105113);
     114
     115/// Insert an empty table
     116bool psFitsInsertTableEmpty(
     117    psFits *fits,              ///< FITS file pointer
     118    const psMetadata *header,  ///< Header to write
     119    const psMetadata *columns, ///< Column definitions; no data used except name,type
     120    const char *extname,       ///< Extension name for table
     121    bool after                 ///< Insert after current HDU?
     122    );
     123
    106124
    107125/** Updates a FITS table.  The current HDU type must be either
Note: See TracChangeset for help on using the changeset viewer.