IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 8, 2006, 5:08:08 PM (20 years ago)
Author:
Paul Price
Message:

Broad changes to introduce pmHDU, and allow read/write at any level. Modified the camera configuration to use camera config (components of the camera) and format descriptions (FITS file layout).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/rel10_ifa/psModules/src/astrom/pmHDU.h

    r6517 r6552  
    11#ifndef PM_HDU_H
    22#define PM_HDU_H
    3 
    4 #include "pslib.h"
    5 #include "pmFPA.h"
    63
    74// An instance of the FITS Header Data Unit
     
    107    psString extname;                   // The extension name
    118    bool phu;                           // Is this the FITS Primary Header Unit
     9    psMetadata *format;                 // The camera format
    1210    psMetadata *header;                 // The FITS header, or NULL if primary for FITS; or section info
    1311    psArray *images;                    // The pixel data
     
    2119
    2220// Read the HDU
    23 bool pmHDURead(pmHDU *hdu);
    24 
    25 
    26 // Find the HDU in the FPA hierarchy
    27 pmHDU *pmHDUFromFPA(pmFPA *fpa          // FPA for which to find HDU
    28                    );
    29 pmHDU *pmHDUFromChip(pmChip *chip       // Chip for which to find HDU
    30                     );
    31 pmHDU *pmHDUFromCell(pmCell *cell       // Cell for which to find HDU
    32                     );
     21bool pmHDURead(pmHDU *hdu,              // HDU to read
     22               psFits *fits             // FITS file to read from
     23              );
    3324
    3425#endif
Note: See TracChangeset for help on using the changeset viewer.