IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 704


Ignore:
Timestamp:
May 17, 2004, 7:51:02 AM (22 years ago)
Author:
rhl
Message:

Fixed typos

Location:
trunk/archive/pslib/include
Files:
5 edited

Legend:

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

    r626 r704  
    137137psChip *
    138138psChipInFPA (psChip *out,               ///< Chip to return, or NULL
    139              const psPlaneCoord *coord  ///< coordinate in FPA
    140              const psFPA *fpa,          ///< FPA description
     139             const psPlaneCoord *coord, ///< coordinate in FPA
     140             const psFPA *fpa           ///< FPA description
    141141             );
    142142
     
    144144psCell *
    145145psCellInChip(psCell *out,               ///< Cell to return, or NULL
    146              const psPlaneCoord *coord  ///< coordinate in chip
    147              const psChip *chip,        ///< chip description
     146             const psPlaneCoord *coord, ///< coordinate in chip
     147             const psChip *chip ///< chip description
    148148             );
    149149
     
    151151psCell *
    152152psCellInFPA(psCell *out,                ///< Cell to return, or NULL
    153             const psPlaneCoord *coord   ///< Coordinate in FPA
    154             const psFPA *fpa,           ///< FPA description
     153            const psPlaneCoord *coord,  ///< Coordinate in FPA
     154            const psFPA *fpa            ///< FPA description
    155155            );
    156156
     
    167167psSphereCoord *
    168168psCoordCellToSky(psSphereCoord *out,    ///< Coordinates to return, or NULL
    169                  const psPlaneCoord *coord ///< cell coordinates to transform
    170                  const psCell *cell,    ///< Cell to get coordinates for
     169                 const psPlaneCoord *coord, ///< cell coordinates to transform
     170                 const psCell *cell     ///< Cell to get coordinates for
    171171                 );
    172172
     
    174174psSphereCoord *
    175175psCoordCellToSkyQuick(psSphereCoord *out, ///< Coordinates to return, or NULL
    176                       const psPlaneCoord *coord ///< cell coordinates to transform
    177                       const psCell *cell, ///< Cell description
     176                      const psPlaneCoord *coord,        ///< cell coordinates to transform
     177                      const psCell *cell ///< Cell description
    178178                      );
    179179
     
    181181psPlaneCoord *
    182182psCoordSkyToTP(psPlaneCoord *out,       ///< Coordinates to return, or NULL
    183                const psSphereCoord *coord ///< input Sky coordinate
    184                const psGrommit *grommit, ///< Grommit for fast conversion
     183               const psSphereCoord *coord, ///< input Sky coordinate
     184               const psGrommit *grommit ///< Grommit for fast conversion
    185185               );
    186186
     
    188188psPlaneCoord *
    189189psCoordTPtoFPA(psPlaneCoord *out,       ///< Coordinates to return, or NULL
    190                const psPlaneCoord *coord ///< input TP coordinate
    191                const psFPA *fpa,        ///< FPA description
     190               const psPlaneCoord *coord, ///< input TP coordinate
     191               const psFPA *fpa        ///< FPA description
    192192               );
    193193
     
    195195psPlaneCoord *
    196196psCoordFPAtoChip (psPlaneCoord *out,    ///< Coordinates to return, or NULL
    197                   const psPlaneCoord *coord ///< input FPA coordinate
    198                   const psChip *chip,   ///< Chip of interest
     197                  const psPlaneCoord *coord, ///< input FPA coordinate
     198                  const psChip *chip    ///< Chip of interest
    199199                  );
    200200
     
    202202psPlaneCoord *
    203203psCoordChiptoCell (psPlaneCoord *out,   ///< Coordinates to return, or NULL
    204                    const psPlaneCoord *coord ///< input Chip coordinate
    205                    const psCell *cell,  ///< Cell of interest
     204                   const psPlaneCoord *coord, ///< input Chip coordinate
     205                   const psCell *cell   ///< Cell of interest
    206206                   );
    207207
     
    209209psPlaneCoord *
    210210psCoordCelltoChip (psPlaneCoord *out,   ///< Coordinates to return, or NULL
    211                    const psPlaneCoord *coord ///< input Cell coordinate
    212                    const psCell *cell,  ///< Cell description
     211                   const psPlaneCoord *coord, ///< input Cell coordinate
     212                   const psCell *cell   ///< Cell description
    213213                   );
    214214
     
    216216psPlaneCoord *
    217217psCoordChiptoFPA (psPlaneCoord *out,            ///< Coordinates to return, or NULL
    218                   const psPlaneCoord *coord     ///< input Chip coordinate
    219                   const psChip *chip,   ///< Chip description
     218                  const psPlaneCoord *coord,    ///< input Chip coordinate
     219                  const psChip *chip    ///< Chip description
    220220                  );
    221221
     
    223223psPlaneCoord *
    224224psCoordFPAToTP(psPlaneCoord *out,               ///< Coordinates to return, or NULL
    225                const psPlaneCoord *coord ///< input FPA coordinate
    226                const psFPA *fpa,        ///< FPA description
     225               const psPlaneCoord *coord, ///< input FPA coordinate
     226               const psFPA *fpa         ///< FPA description
    227227               );
    228228
     
    230230psSphereCoord *
    231231psCoordTPtoSky(psSphereCoord *out,      ///< Coordinates to return, or NULL
    232                const psPlaneCoord *coord ///< input TP coordinate
    233                const psGrommit *grommit, ///< Grommit for fast conversion
     232               const psPlaneCoord *coord, ///< input TP coordinate
     233               const psGrommit *grommit ///< Grommit for fast conversion
    234234               );
    235235
     
    237237psPlaneCoord *
    238238psCoordCellToFPA(psPlaneCoord *out,     ///< Coordinates to return, or NULL
    239                  const psPlaneCoord *coord ///< Input cell coordinates
    240                  const psCell *cell,    ///< Cell description
     239                 const psPlaneCoord *coord, ///< Input cell coordinates
     240                 const psCell *cell     ///< Cell description
    241241                 );
    242242
  • trunk/archive/pslib/include/psFFT.h

    r671 r704  
    4242psImage *
    4343psImageComplex(psImage *out,            ///< Image for output (or NULL)
    44                const psImage *real)     ///< real part of image
     44               const psImage *real,     ///< real part of image
    4545               const psImage *imag)     ///< imaginary part of image
    4646;
     
    7979psVector *
    8080psVectorComplex(psVector *out,          ///< Vector for output (or NULL)
    81                const psVector *real)    ///< real part of vector
     81               const psVector *real,    ///< real part of vector
    8282               const psVector *imag)    ///< imaginary part of vector
    8383;
  • trunk/archive/pslib/include/psLib.h

    r671 r704  
    2424
    2525/** @ingroup DataGroup */
    26 # include <psTypes.h>
    27 # include <psVectors.h>
     26# include <psType.h>
     27# include <psVector.h>
    2828# include <psHash.h>
    2929# include <psDlist.h>
  • trunk/archive/pslib/include/psType.h

    r680 r704  
    5858typedef uint64_t       psU64;           
    5959
     60#endif
  • trunk/archive/pslib/include/psVector.h

    r680 r704  
    5757/// Destroy the specified vector
    5858void
    59 psVectorFree(psVector *restrict vector  ///< free this vector
     59psVectorFree(psVector *restrict vector, ///< free this vector
    6060             void (*elemFree)(void *))  ///< destructor for array data
    6161;
Note: See TracChangeset for help on using the changeset viewer.