Changeset 4392 for trunk/psLib/src/astronomy
- Timestamp:
- Jun 24, 2005, 4:02:05 PM (21 years ago)
- Location:
- trunk/psLib/src/astronomy
- Files:
-
- 2 edited
-
psAstrometry.c (modified) (8 diffs)
-
psCoord.c (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/astronomy/psAstrometry.c
r4308 r4392 8 8 * @author GLG, MHPCC 9 9 * 10 * @version $Revision: 1. 69$ $Name: not supported by cvs2svn $11 * @date $Date: 2005-06- 17 23:44:21$10 * @version $Revision: 1.70 $ $Name: not supported by cvs2svn $ 11 * @date $Date: 2005-06-25 02:02:04 $ 12 12 * 13 13 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 189 189 } 190 190 191 psMemSetDeallocator(tmp,(psFreeF cn)fixedPatternFree);191 psMemSetDeallocator(tmp,(psFreeFunc)fixedPatternFree); 192 192 193 193 return(tmp); … … 236 236 exp->telescopeName = NULL; 237 237 238 psMemSetDeallocator(exp,(psFreeF cn)exposureFree);238 psMemSetDeallocator(exp,(psFreeFunc)exposureFree); 239 239 240 240 return exp; … … 261 261 *(double *)&obs->tlr = tlr; 262 262 263 psMemSetDeallocator(obs,(psFreeF cn)observatoryFree);263 psMemSetDeallocator(obs,(psFreeFunc)observatoryFree); 264 264 265 265 return obs; … … 302 302 newFPA->chi2 = 0.0f; 303 303 304 psMemSetDeallocator(newFPA,(psFreeF cn)FPAFree);304 psMemSetDeallocator(newFPA,(psFreeFunc)FPAFree); 305 305 306 306 return newFPA; … … 336 336 chip->parent = parentFPA; 337 337 338 psMemSetDeallocator(chip,(psFreeF cn)chipFree);338 psMemSetDeallocator(chip,(psFreeFunc)chipFree); 339 339 340 340 return chip; … … 374 374 cell->parent = parentChip; 375 375 376 psMemSetDeallocator(cell,(psFreeF cn)cellFree);376 psMemSetDeallocator(cell,(psFreeFunc)cellFree); 377 377 378 378 return cell; … … 397 397 readout->metadata = NULL; 398 398 399 psMemSetDeallocator(readout,(psFreeF cn)readoutFree);399 psMemSetDeallocator(readout,(psFreeFunc)readoutFree); 400 400 401 401 return readout; -
trunk/psLib/src/astronomy/psCoord.c
r4330 r4392 10 10 * @author GLG, MHPCC 11 11 * 12 * @version $Revision: 1.7 6$ $Name: not supported by cvs2svn $13 * @date $Date: 2005-06-2 1 03:01:37$12 * @version $Revision: 1.77 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2005-06-25 02:02:04 $ 14 14 * 15 15 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 197 197 psPlane *p = psAlloc(sizeof(psPlane)); 198 198 199 psMemSetDeallocator(p, (psFreeF cn) planeFree);199 psMemSetDeallocator(p, (psFreeFunc) planeFree); 200 200 return(p); 201 201 } … … 211 211 psSphere *s = psAlloc(sizeof(psSphere)); 212 212 213 psMemSetDeallocator(s, (psFreeF cn) sphereFree);213 psMemSetDeallocator(s, (psFreeFunc) sphereFree); 214 214 return(s); 215 215 } … … 230 230 pt->y = psDPolynomial2DAlloc(n1, n2, PS_POLYNOMIAL_ORD); 231 231 232 psMemSetDeallocator(pt, (psFreeF cn) planeTransformFree);232 psMemSetDeallocator(pt, (psFreeFunc) planeTransformFree); 233 233 return(pt); 234 234 } … … 279 279 pt->y = psDPolynomial4DAlloc(n1, n2, n3, n4, PS_POLYNOMIAL_ORD); 280 280 281 psMemSetDeallocator(pt, (psFreeF cn) planeDistortFree);281 psMemSetDeallocator(pt, (psFreeFunc) planeDistortFree); 282 282 return(pt); 283 283 } … … 494 494 p->type = type; 495 495 496 psMemSetDeallocator(p, (psFreeF cn) projectionFree);496 psMemSetDeallocator(p, (psFreeFunc) projectionFree); 497 497 return(p); 498 498 }
Note:
See TracChangeset
for help on using the changeset viewer.
