IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 29, 2007, 2:59:23 PM (19 years ago)
Author:
gusciora
Message:

Adding several changes to the objects directory. Most of these changes are
mere additions of PS_ASSERTs to the beginning of psModule functions to ensure
that input parameters are correct.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branch_20071023/psModules/src/objects/pmSourcePlotMoments.c

    r14938 r15418  
    55 *  @author EAM, IfA
    66 *
    7  *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
    8  *  @date $Date: 2007-09-21 00:09:05 $
     7 *  @version $Revision: 1.9.6.1 $ $Name: not supported by cvs2svn $
     8 *  @date $Date: 2007-10-30 00:59:23 $
    99 *
    1010 *  Copyright 2006 IfA, University of Hawaii
     
    4141// this variable is defined in psmodules.h if ohana-config is found
    4242# if (HAVE_KAPA)
    43     # include <kapa.h>
     43# include <kapa.h>
    4444
    45     // plot the sx, sy moments plane (faint and bright sources)
    46     bool pmSourcePlotMoments (const pmFPAview *view, pmFPAfile *file, const pmConfig *config, pmSourcePlotLayout *layout)
     45// plot the sx, sy moments plane (faint and bright sources)
     46bool pmSourcePlotMoments (const pmFPAview *view, pmFPAfile *file, const pmConfig *config,
     47                          pmSourcePlotLayout *layout)
    4748{
     49    PS_ASSERT_PTR_NON_NULL(view, false);
     50    PS_ASSERT_PTR_NON_NULL(file, false);
     51    PS_ASSERT_PTR_NON_NULL(config, false);
     52    PS_ASSERT_PTR_NON_NULL(layout, false);
    4853
    4954    Graphdata graphdata;
Note: See TracChangeset for help on using the changeset viewer.