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/pmSourcePlotPSFModel.c

    r14938 r15418  
    55 *  @author EAM, IfA
    66 *
    7  *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
    8  *  @date $Date: 2007-09-21 00:09:05 $
     7 *  @version $Revision: 1.11.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>
    44 
    45     // plot the sx, sy, sxy as vector field,
    46     // plot the PSF measured sx, sy, sxy as vector field
    47     // pull the sources from the config / file?
    48     bool pmSourcePlotPSFModel (const pmFPAview *view, pmFPAfile *file, const pmConfig *config, pmSourcePlotLayout *layout)
     43# include <kapa.h>
     44
     45// plot the sx, sy, sxy as vector field,
     46// plot the PSF measured sx, sy, sxy as vector field
     47// pull the sources from the config / file?
     48bool pmSourcePlotPSFModel (const pmFPAview *view, pmFPAfile *file, const pmConfig *config,
     49                           pmSourcePlotLayout *layout)
    4950{
     51    PS_ASSERT_PTR_NON_NULL(view, false);
     52    PS_ASSERT_PTR_NON_NULL(file, false);
     53    PS_ASSERT_PTR_NON_NULL(config, false);
     54    PS_ASSERT_PTR_NON_NULL(layout, false);
    5055
    5156    Graphdata graphdata;
Note: See TracChangeset for help on using the changeset viewer.