IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 1481


Ignore:
Timestamp:
Aug 11, 2004, 1:08:37 PM (22 years ago)
Author:
gusciora
Message:

...

Location:
trunk/psLib/src/astronomy
Files:
2 edited

Legend:

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

    r1480 r1481  
    88*  @author George Gusciora, MHPCC
    99*
    10 *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
    11 *  @date $Date: 2004-08-11 22:03:56 $
     10*  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
     11*  @date $Date: 2004-08-11 23:08:37 $
    1212*
    1313*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    1919#include "psAstrometry.h"
    2020#include "psMemory.h"
     21#include "psAbort.h"
    2122
    2223psExposure* psExposureAlloc(double ra, double dec, double hourAngle,
     
    4950psGrommit* psGrommitAlloc(const psExposure* exp)
    5051{
    51     // XXX: is this the correct action?
    5252    if (exp == NULL) {
    53         return(NULL);
     53        psAbort(__func__, "the 'exp' parameter is NULL\n");
    5454    }
    5555
     
    8383 * XXX: The SDRS states this should be a private p_ps() procedure.
    8484 */
    85 void psGrommitFree(psGrommit* grommit)
     85void p_psGrommitFree(psGrommit* grommit)
    8686{
    8787    psFree(grommit);
  • trunk/psLib/src/astronomy/psAstrometry.h

    r1479 r1481  
    88*  @author George Gusciora, MHPCC
    99*
    10 *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
    11 *  @date $Date: 2004-08-11 22:01:35 $
     10*  @version $Revision: 1.14 $ $Name: not supported by cvs2svn $
     11*  @date $Date: 2004-08-11 23:08:37 $
    1212*
    1313*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    243243 *  @return psGrommit* New grommit structure.
    244244 */
    245 psGrommit* psGrommitAlloc(
    246     const psExposure* exp              ///< the cooresponding exposure structure.
    247 );
     245psGrommit* psGrommitAlloc(const psExposure* exp        ///< the cooresponding exposure structure.
     246                         );
     247void p_psGrommitFree(psGrommit *grommit);
     248=======
     249    psGrommit* psGrommitAlloc(
     250        const psExposure* exp              ///< the cooresponding exposure structure.
     251    );
    248252
    249253/** Find cooresponding cell for given FPA coordinate
Note: See TracChangeset for help on using the changeset viewer.