IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 16, 2006, 3:29:02 PM (20 years ago)
Author:
Paul Price
Message:

Documenting pmFPAHeader.[ch]

File:
1 edited

Legend:

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

    r7017 r9592  
     1/// @file pmFPAHeader.h
     2///
     3/// @brief Functions read FITS headers for FPA components
     4///
     5/// @ingroup Camera
     6///
     7/// @author Paul Price, IfA
     8///
     9/// @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
     10/// @date $Date: 2006-10-17 01:29:02 $
     11///
     12/// Copyright 2005-2006 Institute for Astronomy, University of Hawaii
     13///
     14
    115#ifndef PM_FPA_HEADER_H
    216#define PM_FPA_HEADER_H
    317
    4 bool pmCellReadHeader(pmCell *cell,     // Cell for which to read header
    5                       psFits *fits      // FITS file handle
    6                      );
    7 bool pmChipReadHeader(pmChip *chip,     // Chip for which to read header
    8                       psFits *fits      // FITS file handle
    9                      );
    10 bool pmFPAReadHeader(pmFPA *fpa,        // FPA for which to read header
    11                      psFits *fits       // FITS file handle
     18/// Read the FITS header (and ingest concepts) for an FPA, if it exists at this level
     19///
     20/// Returns false if there was a problem.  Returns true if it successfully read the header, or if the header
     21/// was already there.  No iteration to lower levels is performed.
     22bool pmFPAReadHeader(pmFPA *fpa,        ///< FPA for which to read header
     23                     psFits *fits       ///< FITS file handle
    1224                    );
    1325
     26/// Read the FITS header (and ingest concepts) for a chip, if it exists at this level
     27///
     28/// Returns false if there was a problem.  Returns true if it successfully read the header, or if the header
     29/// was already there.  No iteration to lower levels is performed.
     30bool pmChipReadHeader(pmChip *chip,     ///< Chip for which to read header
     31                      psFits *fits      ///< FITS file handle
     32                     );
     33
     34/// Read the FITS header (and ingest concepts) for a cell, if it exists at this level
     35///
     36/// Returns false if there was a problem.  Returns true if it successfully read the header, or if the header
     37/// was already there.  No iteration to lower levels is performed.
     38bool pmCellReadHeader(pmCell *cell,     ///< Cell for which to read header
     39                      psFits *fits      ///< FITS file handle
     40                     );
     41
    1442#endif
Note: See TracChangeset for help on using the changeset viewer.