IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Nov 13, 2006, 12:15:05 PM (19 years ago)
Author:
Paul Price
Message:

Adding functions to read/write tables within the FPA hierarchy (specifically, in the analysis metadata within the cell) from/to FITS files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/camera/pmFPAWrite.h

    r9717 r9949  
    77/// @author Paul Price, IfA
    88///
    9 /// @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
    10 /// @date $Date: 2006-10-24 00:23:46 $
     9/// @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
     10/// @date $Date: 2006-11-13 22:15:05 $
    1111///
    1212/// Copyright 2005-2006 Institute for Astronomy, University of Hawaii
     
    6767               );
    6868
     69/// Write a FITS table from the cell's analysis metadata.
     70///
     71/// The FITS table (a psArray of psMetadatas) from the cell's analysis metadata (under "name") is written to
     72/// the FITS file, at an extension specified by the name, chip name and cell name ("NAME_CHIP_CELL").  If a
     73/// header is present in the analysis metadata ("name.HEADER"), then it is written also.
     74int pmCellWriteTable(psFits *fits,      ///< FITS file to which to write
     75                     const pmCell *cell, ///< Cell containing FITS table in the analysis metadata
     76                     const char *name   ///< Name for the table data, and the extension name
     77                    );
     78
     79int pmChipWriteTable(psFits *fits,      ///< FITS file to which to write
     80                     const pmChip *chip, ///< Chip containing cells with tables to write
     81                     const char *name   ///< Name for the table data, and the extension name
     82                    );
     83
     84int pmFPAWriteTable(psFits *fits,       ///< FITS file to which to write
     85                    const pmFPA *fpa,   ///< FPA containing cells with tables to write
     86                    const char *name    ///< Name for the table data, and the extension name
     87                   );
     88
    6989#endif
Note: See TracChangeset for help on using the changeset viewer.