Changeset 1481
- Timestamp:
- Aug 11, 2004, 1:08:37 PM (22 years ago)
- Location:
- trunk/psLib/src/astronomy
- Files:
-
- 2 edited
-
psAstrometry.c (modified) (4 diffs)
-
psAstrometry.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/astronomy/psAstrometry.c
r1480 r1481 8 8 * @author George Gusciora, MHPCC 9 9 * 10 * @version $Revision: 1.1 1$ $Name: not supported by cvs2svn $11 * @date $Date: 2004-08-11 2 2:03:56$10 * @version $Revision: 1.12 $ $Name: not supported by cvs2svn $ 11 * @date $Date: 2004-08-11 23:08:37 $ 12 12 * 13 13 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 19 19 #include "psAstrometry.h" 20 20 #include "psMemory.h" 21 #include "psAbort.h" 21 22 22 23 psExposure* psExposureAlloc(double ra, double dec, double hourAngle, … … 49 50 psGrommit* psGrommitAlloc(const psExposure* exp) 50 51 { 51 // XXX: is this the correct action?52 52 if (exp == NULL) { 53 return(NULL);53 psAbort(__func__, "the 'exp' parameter is NULL\n"); 54 54 } 55 55 … … 83 83 * XXX: The SDRS states this should be a private p_ps() procedure. 84 84 */ 85 void p sGrommitFree(psGrommit* grommit)85 void p_psGrommitFree(psGrommit* grommit) 86 86 { 87 87 psFree(grommit); -
trunk/psLib/src/astronomy/psAstrometry.h
r1479 r1481 8 8 * @author George Gusciora, MHPCC 9 9 * 10 * @version $Revision: 1.1 3$ $Name: not supported by cvs2svn $11 * @date $Date: 2004-08-11 2 2:01:35$10 * @version $Revision: 1.14 $ $Name: not supported by cvs2svn $ 11 * @date $Date: 2004-08-11 23:08:37 $ 12 12 * 13 13 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 243 243 * @return psGrommit* New grommit structure. 244 244 */ 245 psGrommit* psGrommitAlloc( 246 const psExposure* exp ///< the cooresponding exposure structure. 247 ); 245 psGrommit* psGrommitAlloc(const psExposure* exp ///< the cooresponding exposure structure. 246 ); 247 void p_psGrommitFree(psGrommit *grommit); 248 ======= 249 psGrommit* psGrommitAlloc( 250 const psExposure* exp ///< the cooresponding exposure structure. 251 ); 248 252 249 253 /** Find cooresponding cell for given FPA coordinate
Note:
See TracChangeset
for help on using the changeset viewer.
