IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 22, 2007, 11:40:47 AM (19 years ago)
Author:
magnier
Message:

adding user-definable fits->extword to psFits

File:
1 edited

Legend:

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

    r11248 r12549  
    44 * @author Robert DeSonia, MHPCC
    55 *
    6  * @version $Revision: 1.26 $ $Name: not supported by cvs2svn $
    7  * @date $Date: 2007-01-23 22:47:23 $
     6 * @version $Revision: 1.27 $ $Name: not supported by cvs2svn $
     7 * @date $Date: 2007-03-22 21:40:47 $
    88 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
    99 */
     
    4343typedef struct
    4444{
    45     fitsfile* fd;                      ///< the CFITSIO fits files handle.
    46     bool writable;                     ///< Is the file writable?
     45    fitsfile* fd;                       ///< the CFITSIO fits files handle.
     46    bool writable;                      ///< Is the file writable?
     47    char *extword;                      ///< user-specified word to name extensions (NULL implies EXTNAME)
    4748}
    4849psFits;
     
    8485);
    8586
     87// move to the first HDU where extword == extname.  this is equivalent to fits_movnam_hdu() for
     88// a user-defined word in place of EXTNAME
     89bool p_psFitsMoveExtName_UserKey(const psFits *fits,
     90                                 const char *extname,
     91                                 const char *extword);
    8692
    8793/** Moves the FITS HDU to the specified extension name.
Note: See TracChangeset for help on using the changeset viewer.