Index: trunk/psLib/src/astronomy/psAstrometry.h
===================================================================
--- trunk/psLib/src/astronomy/psAstrometry.h	(revision 2058)
+++ trunk/psLib/src/astronomy/psAstrometry.h	(revision 2204)
@@ -8,6 +8,6 @@
 *  @author George Gusciora, MHPCC
 *
-*  @version $Revision: 1.29 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2004-10-12 20:53:02 $
+*  @version $Revision: 1.30 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2004-10-27 00:57:30 $
 *
 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -72,6 +72,6 @@
 typedef struct
 {
-    int nX;                            ///< Number of elements in x direction
-    int nY;                            ///< Number of elements in y direction
+    psS32 nX;                            ///< Number of elements in x direction
+    psS32 nY;                            ///< Number of elements in y direction
     double x0;                         ///< X Position of 0,0 corner on focal plane
     double y0;                         ///< Y Position of 0,0 corner on focal plane
@@ -79,8 +79,8 @@
     double yScale;                     ///< Scale of the grid in x direction
     /// XXX: I added the following memvers to facilitate the psFreeing of the x,y data structures.
-    int p_ps_xRows;                    ///< Number of rows in the x member
-    int p_ps_xCols;                    ///< Number of cols in the x member
-    int p_ps_yRows;                    ///< Number of rows in the y member
-    int p_ps_yCols;                    ///< Number of cols in the y member
+    psS32 p_ps_xRows;                    ///< Number of rows in the x member
+    psS32 p_ps_xCols;                    ///< Number of cols in the x member
+    psS32 p_ps_yRows;                    ///< Number of rows in the y member
+    psS32 p_ps_yCols;                    ///< Number of cols in the y member
     double **x;                        ///< The grid of offsets in x
     double **y;                        ///< The grid of offsets in y
@@ -99,8 +99,8 @@
 typedef struct
 {
-    const unsigned int colBins;        ///< Amount of binning in x-dimension
-    const unsigned int rowBins;        ///< Amount of binning in y-dimension
-    const int col0;                    ///< Offset from the left of chip.
-    const int row0;                    ///< Offset from the bottom of chip.
+    const psU32 colBins;        ///< Amount of binning in x-dimension
+    const psU32 rowBins;        ///< Amount of binning in y-dimension
+    const psS32 col0;                    ///< Offset from the left of chip.
+    const psS32 row0;                    ///< Offset from the bottom of chip.
 
     psImage* image;                    ///< Imaging area of readout
@@ -304,5 +304,5 @@
  */
 psFPA* psFPAAlloc(
-    int nChips,                        ///< number of chips in the FPA
+    psS32 nChips,                        ///< number of chips in the FPA
     const psExposure* exp              ///< the exposure information
 );
@@ -317,5 +317,5 @@
  */
 psChip* psChipAlloc(
-    int nCells,                        ///< number of cells in Chip
+    psS32 nCells,                        ///< number of cells in Chip
     psFPA* parentFPA                   ///< parent FPA
 );
@@ -330,5 +330,5 @@
  */
 psCell* psCellAlloc(
-    int nReadouts,                     ///< number of readouts in cell
+    psS32 nReadouts,                     ///< number of readouts in cell
     psChip* parentChip                 ///< parent Chip
 );
@@ -342,6 +342,6 @@
  */
 psReadout* psReadoutAlloc(
-    int col0,                          ///< offset from the left of the cell
-    int row0,                          ///< offset from the bottom of the cell
+    psS32 col0,                          ///< offset from the left of the cell
+    psS32 row0,                          ///< offset from the bottom of the cell
     const psImage* image               ///< image of the readout
 );
