IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 11, 2004, 3:23:20 PM (22 years ago)
Author:
desonia
Message:

doxygen cleanup.

File:
1 edited

Legend:

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

    r1489 r1496  
    88*  @author George Gusciora, MHPCC
    99*
    10 *  @version $Revision: 1.18 $ $Name: not supported by cvs2svn $
    11 *  @date $Date: 2004-08-11 23:33:44 $
     10*  @version $Revision: 1.19 $ $Name: not supported by cvs2svn $
     11*  @date $Date: 2004-08-12 01:23:20 $
    1212*
    1313*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    4444typedef struct
    4545{
    46     const double latitude;      ///< geodetic latitude (radians)
    47     const double sinLat;        ///< sine of geodetic latitude
    48     const double cosLat;        ///< cosine of geodetic latitude
    49     const double abberationMag; ///< magnitude of diurnal aberration vector
    50     const double height;        ///< height (HM)
    51     const double temperature;   ///< ambient temperature (TDK)
    52     const double pressure;      ///< pressure (PMB)
    53     const double humidity;      ///< relative humidity (RH)
    54     const double wavelength;    ///< wavelength (WL)
    55     const double lapseRate;     ///< lapse rate (TLR)
    56     const double refractA;      ///< refraction constant A (radians)
    57     const double refractB;      ///< refraction constant B (radians)
    58     const double longitudeOffset; ///< longitude + ... (radians)
    59     const double siderealTime;  ///< local apparent sidereal time (radians)
     46    const double latitude;             ///< geodetic latitude (radians)
     47    const double sinLat;               ///< sine of geodetic latitude
     48    const double cosLat;               ///< cosine of geodetic latitude
     49    const double abberationMag;        ///< magnitude of diurnal aberration vector
     50    const double height;               ///< height (HM)
     51    const double temperature;          ///< ambient temperature (TDK)
     52    const double pressure;             ///< pressure (PMB)
     53    const double humidity;             ///< relative humidity (RH)
     54    const double wavelength;           ///< wavelength (WL)
     55    const double lapseRate;            ///< lapse rate (TLR)
     56    const double refractA;             ///< refraction constant A (radians)
     57    const double refractB;             ///< refraction constant B (radians)
     58    const double longitudeOffset;      ///< longitude + ... (radians)
     59    const double siderealTime;         ///< local apparent sidereal time (radians)
    6060}
    6161psGrommit;
     
    7272typedef struct
    7373{
    74     int nX;                     ///< Number of elements in x direction
    75     int nY;                     ///< Number of elements in y direction
    76     double x0;                  ///< X Position of 0,0 corner on focal plane
    77     double y0;                  ///< Y Position of 0,0 corner on focal plane
    78     double xScale;              ///< Scale of the grid in x direction
    79     double yScale;              ///< Scale of the grid in x direction
    80     double **x;                 ///< The grid of offsets in x
    81     double **y;                 ///< The grid of offsets in y
     74    int nX;                            ///< Number of elements in x direction
     75    int nY;                            ///< Number of elements in y direction
     76    double x0;                         ///< X Position of 0,0 corner on focal plane
     77    double y0;                         ///< Y Position of 0,0 corner on focal plane
     78    double xScale;                     ///< Scale of the grid in x direction
     79    double yScale;                     ///< Scale of the grid in x direction
     80    double **x;                        ///< The grid of offsets in x
     81    double **y;                        ///< The grid of offsets in y
    8282}
    8383psFixedPattern;
     
    9494typedef struct
    9595{
    96     const unsigned int colBins; ///< Amount of binning in x-dimension
    97     const unsigned int rowBins; ///< Amount of binning in y-dimension
    98     const int col0;             ///< Offset from the left of chip.
    99     const int row0;             ///< Offset from the bottom of chip.
    100 
    101     psImage* image;             ///< imaging area of Readout
    102     psList* objects;            ///< objects derived from Readout
    103     psMetadata* metadata;       ///< readout-level metadata
     96    const unsigned int colBins;        ///< Amount of binning in x-dimension
     97    const unsigned int rowBins;        ///< Amount of binning in y-dimension
     98    const int col0;                    ///< Offset from the left of chip.
     99    const int row0;                    ///< Offset from the bottom of chip.
     100
     101    psImage* image;                    ///< imaging area of Readout
     102    psList* objects;                   ///< objects derived from Readout
     103    psMetadata* metadata;              ///< readout-level metadata
    104104}
    105105psReadout;
     
    116116typedef struct psCell
    117117{
    118     psArray* readouts;          ///< readouts from the cell
    119     psMetadata* metadata;       ///< cell-level metadata
    120 
    121     psPlaneTransform* toChip;   ///< transformations from cell to chip coordinates
    122     psPlaneTransform* fromChip; ///< transformations from chip to cell coordinates
    123     psPlaneTransform* toFPA;    ///< transformations from cell to FPA coordinates
    124     psPlaneTransform* toTP;     ///< transformations from cell to tangent plane coordinates
    125 
    126     struct psChip* parent;      ///< chip in which contains this cell
     118    psArray* readouts;                 ///< readouts from the cell
     119    psMetadata* metadata;              ///< cell-level metadata
     120
     121    psPlaneTransform* toChip;          ///< transformations from cell to chip coordinates
     122    psPlaneTransform* fromChip;        ///< transformations from chip to cell coordinates
     123    psPlaneTransform* toFPA;           ///< transformations from cell to FPA coordinates
     124    psPlaneTransform* toTP;            ///< transformations from cell to tangent plane coordinates
     125
     126    struct psChip* parent;             ///< chip in which contains this cell
    127127}
    128128psCell;
     
    138138typedef struct psChip
    139139{
    140     psArray* cells;             ///< cells in the chip
    141     psMetadata* metadata;       ///< chip-level metadata
    142 
    143     psPlaneTransform* toFPA;    ///< transformation from chip to FPA coordinates
    144     psPlaneTransform* fromFPA;  ///< transformation from FPA to chip coordinates
    145 
    146     struct psFPA* parent;       ///< FPA which contains this chip
     140    psArray* cells;                    ///< cells in the chip
     141    psMetadata* metadata;              ///< chip-level metadata
     142
     143    psPlaneTransform* toFPA;           ///< transformation from chip to FPA coordinates
     144    psPlaneTransform* fromFPA;         ///< transformation from FPA to chip coordinates
     145
     146    struct psFPA* parent;              ///< FPA which contains this chip
    147147}
    148148psChip;
Note: See TracChangeset for help on using the changeset viewer.