Changeset 704
- Timestamp:
- May 17, 2004, 7:51:02 AM (22 years ago)
- Location:
- trunk/archive/pslib/include
- Files:
-
- 5 edited
-
psAstrom.h (modified) (14 diffs)
-
psFFT.h (modified) (2 diffs)
-
psLib.h (modified) (1 diff)
-
psType.h (modified) (1 diff)
-
psVector.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/archive/pslib/include/psAstrom.h
r626 r704 137 137 psChip * 138 138 psChipInFPA (psChip *out, ///< Chip to return, or NULL 139 const psPlaneCoord *coord ///< coordinate in FPA140 const psFPA *fpa ,///< FPA description139 const psPlaneCoord *coord, ///< coordinate in FPA 140 const psFPA *fpa ///< FPA description 141 141 ); 142 142 … … 144 144 psCell * 145 145 psCellInChip(psCell *out, ///< Cell to return, or NULL 146 const psPlaneCoord *coord ///< coordinate in chip147 const psChip *chip ,///< chip description146 const psPlaneCoord *coord, ///< coordinate in chip 147 const psChip *chip ///< chip description 148 148 ); 149 149 … … 151 151 psCell * 152 152 psCellInFPA(psCell *out, ///< Cell to return, or NULL 153 const psPlaneCoord *coord ///< Coordinate in FPA154 const psFPA *fpa ,///< FPA description153 const psPlaneCoord *coord, ///< Coordinate in FPA 154 const psFPA *fpa ///< FPA description 155 155 ); 156 156 … … 167 167 psSphereCoord * 168 168 psCoordCellToSky(psSphereCoord *out, ///< Coordinates to return, or NULL 169 const psPlaneCoord *coord ///< cell coordinates to transform170 const psCell *cell ,///< Cell to get coordinates for169 const psPlaneCoord *coord, ///< cell coordinates to transform 170 const psCell *cell ///< Cell to get coordinates for 171 171 ); 172 172 … … 174 174 psSphereCoord * 175 175 psCoordCellToSkyQuick(psSphereCoord *out, ///< Coordinates to return, or NULL 176 const psPlaneCoord *coord ///< cell coordinates to transform177 const psCell *cell ,///< Cell description176 const psPlaneCoord *coord, ///< cell coordinates to transform 177 const psCell *cell ///< Cell description 178 178 ); 179 179 … … 181 181 psPlaneCoord * 182 182 psCoordSkyToTP(psPlaneCoord *out, ///< Coordinates to return, or NULL 183 const psSphereCoord *coord ///< input Sky coordinate184 const psGrommit *grommit ,///< Grommit for fast conversion183 const psSphereCoord *coord, ///< input Sky coordinate 184 const psGrommit *grommit ///< Grommit for fast conversion 185 185 ); 186 186 … … 188 188 psPlaneCoord * 189 189 psCoordTPtoFPA(psPlaneCoord *out, ///< Coordinates to return, or NULL 190 const psPlaneCoord *coord ///< input TP coordinate191 const psFPA *fpa ,///< FPA description190 const psPlaneCoord *coord, ///< input TP coordinate 191 const psFPA *fpa ///< FPA description 192 192 ); 193 193 … … 195 195 psPlaneCoord * 196 196 psCoordFPAtoChip (psPlaneCoord *out, ///< Coordinates to return, or NULL 197 const psPlaneCoord *coord ///< input FPA coordinate198 const psChip *chip ,///< Chip of interest197 const psPlaneCoord *coord, ///< input FPA coordinate 198 const psChip *chip ///< Chip of interest 199 199 ); 200 200 … … 202 202 psPlaneCoord * 203 203 psCoordChiptoCell (psPlaneCoord *out, ///< Coordinates to return, or NULL 204 const psPlaneCoord *coord ///< input Chip coordinate205 const psCell *cell ,///< Cell of interest204 const psPlaneCoord *coord, ///< input Chip coordinate 205 const psCell *cell ///< Cell of interest 206 206 ); 207 207 … … 209 209 psPlaneCoord * 210 210 psCoordCelltoChip (psPlaneCoord *out, ///< Coordinates to return, or NULL 211 const psPlaneCoord *coord ///< input Cell coordinate212 const psCell *cell ,///< Cell description211 const psPlaneCoord *coord, ///< input Cell coordinate 212 const psCell *cell ///< Cell description 213 213 ); 214 214 … … 216 216 psPlaneCoord * 217 217 psCoordChiptoFPA (psPlaneCoord *out, ///< Coordinates to return, or NULL 218 const psPlaneCoord *coord ///< input Chip coordinate219 const psChip *chip ,///< Chip description218 const psPlaneCoord *coord, ///< input Chip coordinate 219 const psChip *chip ///< Chip description 220 220 ); 221 221 … … 223 223 psPlaneCoord * 224 224 psCoordFPAToTP(psPlaneCoord *out, ///< Coordinates to return, or NULL 225 const psPlaneCoord *coord ///< input FPA coordinate226 const psFPA *fpa ,///< FPA description225 const psPlaneCoord *coord, ///< input FPA coordinate 226 const psFPA *fpa ///< FPA description 227 227 ); 228 228 … … 230 230 psSphereCoord * 231 231 psCoordTPtoSky(psSphereCoord *out, ///< Coordinates to return, or NULL 232 const psPlaneCoord *coord ///< input TP coordinate233 const psGrommit *grommit ,///< Grommit for fast conversion232 const psPlaneCoord *coord, ///< input TP coordinate 233 const psGrommit *grommit ///< Grommit for fast conversion 234 234 ); 235 235 … … 237 237 psPlaneCoord * 238 238 psCoordCellToFPA(psPlaneCoord *out, ///< Coordinates to return, or NULL 239 const psPlaneCoord *coord ///< Input cell coordinates240 const psCell *cell ,///< Cell description239 const psPlaneCoord *coord, ///< Input cell coordinates 240 const psCell *cell ///< Cell description 241 241 ); 242 242 -
trunk/archive/pslib/include/psFFT.h
r671 r704 42 42 psImage * 43 43 psImageComplex(psImage *out, ///< Image for output (or NULL) 44 const psImage *real )///< real part of image44 const psImage *real, ///< real part of image 45 45 const psImage *imag) ///< imaginary part of image 46 46 ; … … 79 79 psVector * 80 80 psVectorComplex(psVector *out, ///< Vector for output (or NULL) 81 const psVector *real )///< real part of vector81 const psVector *real, ///< real part of vector 82 82 const psVector *imag) ///< imaginary part of vector 83 83 ; -
trunk/archive/pslib/include/psLib.h
r671 r704 24 24 25 25 /** @ingroup DataGroup */ 26 # include <psType s.h>27 # include <psVector s.h>26 # include <psType.h> 27 # include <psVector.h> 28 28 # include <psHash.h> 29 29 # include <psDlist.h> -
trunk/archive/pslib/include/psType.h
r680 r704 58 58 typedef uint64_t psU64; 59 59 60 #endif -
trunk/archive/pslib/include/psVector.h
r680 r704 57 57 /// Destroy the specified vector 58 58 void 59 psVectorFree(psVector *restrict vector ///< free this vector59 psVectorFree(psVector *restrict vector, ///< free this vector 60 60 void (*elemFree)(void *)) ///< destructor for array data 61 61 ;
Note:
See TracChangeset
for help on using the changeset viewer.
