IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 7, 2004, 12:42:11 PM (22 years ago)
Author:
Paul Price
Message:

Minor fixes to get things to compile. e.g. need to do "struct psCell"
inside a psChip, since the psCell isn't defined yet.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/archive/pslib/include/psAstrom.h

    r344 r396  
    7777    int nChips;                         ///< Number of Cells assigned
    7878    int nAlloc;                         ///< Number of Cells available
    79     psChip *chips;                      ///< Chips in the Focal Plane Array
     79    struct psChip *chips;               ///< Chips in the Focal Plane Array
    8080
    8181    psMetaDataSet *md;                  ///< FPA-level metadata
     
    9494typedef struct {
    9595    int nCells;                         ///< Number of Cells assigned
    96     psCell *cells;                      ///< Cells in the Chip
     96    struct psCell *cells;               ///< Cells in the Chip
    9797
    9898    psMetaDataSet *md;                  ///< Chip-level metadata
     
    108108    int nReadouts;                      ///< number of readouts in this cell realization; each may have its
    109109                                        ///< own image, objects and overscan.
    110     psReadout *readouts;                ///< Readouts from the cell
     110    struct psReadout *readouts;         ///< Readouts from the cell
    111111    psMetaDataSet *md;                  ///< Cell-level metadata
    112112
     
    115115    psCoordXform *cellToSky;            ///< Quick and Dirty transformations from cell coordinates to sky
    116116
    117     psChip  *parentChip;                ///< chip which contains this cell
     117    struct psChip  *parentChip;         ///< chip which contains this cell
    118118} psCell;
    119119
Note: See TracChangeset for help on using the changeset viewer.