IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 26, 2004, 2:57:34 PM (22 years ago)
Author:
desonia
Message:

converted native C types to ps Types, where practical.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/astronomy/psAstrometry.h

    r2058 r2204  
    88*  @author George Gusciora, MHPCC
    99*
    10 *  @version $Revision: 1.29 $ $Name: not supported by cvs2svn $
    11 *  @date $Date: 2004-10-12 20:53:02 $
     10*  @version $Revision: 1.30 $ $Name: not supported by cvs2svn $
     11*  @date $Date: 2004-10-27 00:57:30 $
    1212*
    1313*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    7272typedef struct
    7373{
    74     int nX;                            ///< Number of elements in x direction
    75     int nY;                            ///< Number of elements in y direction
     74    psS32 nX;                            ///< Number of elements in x direction
     75    psS32 nY;                            ///< Number of elements in y direction
    7676    double x0;                         ///< X Position of 0,0 corner on focal plane
    7777    double y0;                         ///< Y Position of 0,0 corner on focal plane
     
    7979    double yScale;                     ///< Scale of the grid in x direction
    8080    /// XXX: I added the following memvers to facilitate the psFreeing of the x,y data structures.
    81     int p_ps_xRows;                    ///< Number of rows in the x member
    82     int p_ps_xCols;                    ///< Number of cols in the x member
    83     int p_ps_yRows;                    ///< Number of rows in the y member
    84     int p_ps_yCols;                    ///< Number of cols in the y member
     81    psS32 p_ps_xRows;                    ///< Number of rows in the x member
     82    psS32 p_ps_xCols;                    ///< Number of cols in the x member
     83    psS32 p_ps_yRows;                    ///< Number of rows in the y member
     84    psS32 p_ps_yCols;                    ///< Number of cols in the y member
    8585    double **x;                        ///< The grid of offsets in x
    8686    double **y;                        ///< The grid of offsets in y
     
    9999typedef struct
    100100{
    101     const unsigned int colBins;        ///< Amount of binning in x-dimension
    102     const unsigned int rowBins;        ///< Amount of binning in y-dimension
    103     const int col0;                    ///< Offset from the left of chip.
    104     const int row0;                    ///< Offset from the bottom of chip.
     101    const psU32 colBins;        ///< Amount of binning in x-dimension
     102    const psU32 rowBins;        ///< Amount of binning in y-dimension
     103    const psS32 col0;                    ///< Offset from the left of chip.
     104    const psS32 row0;                    ///< Offset from the bottom of chip.
    105105
    106106    psImage* image;                    ///< Imaging area of readout
     
    304304 */
    305305psFPA* psFPAAlloc(
    306     int nChips,                        ///< number of chips in the FPA
     306    psS32 nChips,                        ///< number of chips in the FPA
    307307    const psExposure* exp              ///< the exposure information
    308308);
     
    317317 */
    318318psChip* psChipAlloc(
    319     int nCells,                        ///< number of cells in Chip
     319    psS32 nCells,                        ///< number of cells in Chip
    320320    psFPA* parentFPA                   ///< parent FPA
    321321);
     
    330330 */
    331331psCell* psCellAlloc(
    332     int nReadouts,                     ///< number of readouts in cell
     332    psS32 nReadouts,                     ///< number of readouts in cell
    333333    psChip* parentChip                 ///< parent Chip
    334334);
     
    342342 */
    343343psReadout* psReadoutAlloc(
    344     int col0,                          ///< offset from the left of the cell
    345     int row0,                          ///< offset from the bottom of the cell
     344    psS32 col0,                          ///< offset from the left of the cell
     345    psS32 row0,                          ///< offset from the bottom of the cell
    346346    const psImage* image               ///< image of the readout
    347347);
Note: See TracChangeset for help on using the changeset viewer.