IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 7766 for trunk/psLib/src/astro


Ignore:
Timestamp:
Jun 29, 2006, 4:20:43 PM (20 years ago)
Author:
Paul Price
Message:

Moved PS_ASSERT functions into appropriate places. Created psAssert.h for general PS_ASSERT functions. Vector-specific assertions went to psVector.h; image-specific assertions went to psImage.h, etc. psConstants.h remains, but only contains specific math constants and functions, as the name implies.

Location:
trunk/psLib/src/astro
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/astro/psCoord.c

    r7079 r7766  
    1010*  @author GLG, MHPCC
    1111*
    12 *  @version $Revision: 1.119 $ $Name: not supported by cvs2svn $
    13 *  @date $Date: 2006-05-06 03:34:21 $
     12*  @version $Revision: 1.120 $ $Name: not supported by cvs2svn $
     13*  @date $Date: 2006-06-30 02:20:06 $
    1414*
    1515*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2222#include "psMemory.h"
    2323#include "psTime.h"
    24 #include "psConstants.h"
     24#include "psAssert.h"
    2525#include "psError.h"
    2626#include "psLogMsg.h"
  • trunk/psLib/src/astro/psCoord.h

    r6874 r7766  
    1111 *  @author GLG, MHPCC
    1212 *
    13  *  @version $Revision: 1.51 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2006-04-17 22:00:03 $
     13 *  @version $Revision: 1.52 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2006-06-30 02:20:06 $
    1515 *
    1616 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    456456);
    457457
     458#define PS_PRINT_PLANE_TRANSFORM(NAME) \
     459{ \
     460    printf("---------------------- Plane Transform ----------------------\n"); \
     461    printf("x:\n"); \
     462    PS_POLY_PRINT_2D(NAME->x); \
     463    printf("y:\n"); \
     464    PS_POLY_PRINT_2D(NAME->y); \
     465} \
     466
    458467/// @}
    459468
  • trunk/psLib/src/astro/psEarthOrientation.c

    r7118 r7766  
    88 *  @author Robert Daniel DeSonia, MHPCC
    99 *
    10  *  @version $Revision: 1.36 $ $Name: not supported by cvs2svn $
    11  *  @date $Date: 2006-05-16 01:08:57 $
     10 *  @version $Revision: 1.37 $ $Name: not supported by cvs2svn $
     11 *  @date $Date: 2006-06-30 02:20:06 $
    1212 *
    1313 *  Copyright 2005 Maui High Performance Computing Center, University of Hawaii
     
    2727#include "psMemory.h"
    2828#include "psCoord.h"
    29 #include "psConstants.h"
     29#include "psAssert.h"
    3030
    3131// Sun's Mass (src: Google's Calculator Service)
  • trunk/psLib/src/astro/psSphereOps.c

    r6534 r7766  
    88 *  @author Dave Robbins, MHPCC
    99 *
    10  *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
    11  *  @date $Date: 2006-03-07 01:53:24 $
     10 *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
     11 *  @date $Date: 2006-06-30 02:20:06 $
    1212 *
    1313 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2222#include "psMemory.h"
    2323#include "psTime.h"
    24 #include "psConstants.h"
     24#include "psAssert.h"
    2525#include "psError.h"
    2626#include "psLogMsg.h"
  • trunk/psLib/src/astro/psTime.c

    r7703 r7766  
    1010 *  @author Ross Harman, MHPCC
    1111 *
    12  *  @version $Revision: 1.89 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2006-06-27 04:13:07 $
     12 *  @version $Revision: 1.90 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2006-06-30 02:20:06 $
    1414 *
    1515 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    3232#include "psMetadataConfig.h"
    3333#include "psLookupTable.h"
    34 #include "psConstants.h"
     34#include "psAssert.h"
    3535#include "psErrorText.h"
    3636
Note: See TracChangeset for help on using the changeset viewer.