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/pmFPARead.h

    r9600 r9949  
    77/// @author Paul Price, IfA
    88///
    9 /// @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
    10 /// @date $Date: 2006-10-17 03:01:24 $
     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
     
    108108                    );
    109109
     110/// Read a FITS table into the cell
     111///
     112/// Given a name, which is combined with the chip and cell to identify the extension name ("NAME_CHIP_CELL"),
     113/// read the FITS table into the cell analysis metadata (with key being the provided name).  The header is
     114/// also read and included in the cell analysis metadata under "name.HEADER".
     115int pmCellReadTable(pmCell *cell,       ///< Cell for which to read table
     116                    psFits *fits,       ///< FITS file from which the table
     117                    const char *name    ///< Specifies the extension name, and target in the analysis metadata
     118                   );
     119
     120/// Read a FITS table into the component cells
     121///
     122/// Iterates over component cells, calling pmCellReadTable.
     123int pmChipReadTable(pmChip *chip,       ///< Cell for which to read table
     124                    psFits *fits,       ///< FITS file from which the table
     125                    const char *name    ///< Specifies the extension name, and target in the analysis metadata
     126                   );
     127
     128/// Read a FITS table into the component cells
     129///
     130/// Iterates over component chips, calling pmChipReadTable.
     131int pmFPAReadTable(pmFPA *fpa,          ///< Cell for which to read table
     132                   psFits *fits,        ///< FITS file from which the table
     133                   const char *name     ///< Specifies the extension name, and target in the analysis metadata
     134                  );
     135
    110136#endif
Note: See TracChangeset for help on using the changeset viewer.