IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 4406


Ignore:
Timestamp:
Jun 27, 2005, 3:40:27 PM (21 years ago)
Author:
jhoblitt
Message:

datatype changes to synchronize with pslib

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/doc/pslib/psLibSDRS.tex

    r4403 r4406  
    1 %%% $Id: psLibSDRS.tex,v 1.299 2005-06-28 00:41:37 jhoblitt Exp $
     1%%% $Id: psLibSDRS.tex,v 1.300 2005-06-28 01:40:27 jhoblitt Exp $
    22\documentclass[panstarrs,spec]{panstarrs}
    33
     
    15271527typedef struct {
    15281528    psErrorCode code;                  ///< An error code
    1529     const char *descrip;               ///< the associated description
     1529    const char *description;           ///< the associated description
    15301530} psErrorDescription;
    15311531\end{datatype}
     
    53655365    PS_FFT_FORWARD = 0,                 ///< psImageFFT/psVectorFFT should perform a forward FFT.
    53665366    PS_FFT_REVERSE = 1,                 ///< psImageFFT/psVectorFFT should perform a reverse FFT.
    5367     PS_FFT_REAL_RESULT = 2              ///< psImageFFT/psVectorFFT should return a real image. This is valid
     5367    PS_FFT_REAL_RESULT = 4              ///< psImageFFT/psVectorFFT should return a real image. This is valid
    53685368                                        ///< for only reverse FFT, i.e., the psImageFFT/psVectorFFT flag
    53695369                                        ///< parameter should appear as PS_FFT_REVERSE+PS_FFT_REAL_RESULT.
     
    54375437typedef struct {
    54385438    psImage *image;                     ///< Kernel data, in the form of an image
    5439     int xMin, yMin;                     ///< Most negative indices
    5440     int xMax, yMax;                     ///< Most positive indices
     5439    int xMin;                           ///< Most negative indices
     5440    int yMin;                           ///< Most negative indices
     5441    int xMax;                           ///< Most positive indices
     5442    int yMax;                           ///< Most positive indices
    54415443    float **kernel;                     ///< Pointer to the kernel data
    54425444    float **p_kernelRows;               ///< Pointer to the rows of the kernel data
     
    65546556\begin{datatype}
    65556557typedef struct {
    6556     int nX, nY;                         ///< Number of elements in x and y
    6557     double x0, y0;                      ///< Position of 0,0 corner on focal plane
    6558     double xScale, yScale;              ///< Scale of the grid
    6559     double **x, **y;                    ///< The grid of offsets in x and y
     6558    int nX;                             ///< Number of elements in x
     6559    int nY;                             ///< Number of elements in y
     6560    double x0;                          ///< Position of 0,0 corner on focal plane
     6561    double y0;                          ///< Position of 0,0 corner on focal plane
     6562    double xScale;                      ///< Scale of the grid
     6563    double yScale;                      ///< Scale of the grid
     6564    double **x;                         ///< The grid of offsets in x
     6565    double **y;                         ///< The grid of offsets in y
    65606566} psFixedPattern;
    65616567\end{datatype}
     
    65956601\begin{datatype}
    65966602typedef struct {
    6597     double R, D;                         ///< coordinates of projection center
    6598     double Xs, Ys;                       ///< plate-scale in X and Y directions
    6599     psProjectionType type;               ///< projection type
     6603    double R;                           ///< coordinates of projection center
     6604    double D;                           ///< coordinates of projection center
     6605    double Xs;                          ///< plate-scale in X and Y directions
     6606    double Ys;                          ///< plate-scale in X and Y directions
     6607    psProjectionType type;              ///< projection type
    66006608} psProjection;
    66016609\end{datatype}
Note: See TracChangeset for help on using the changeset viewer.