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

    r13214 r15418  
    55 *  @author EAM, IfA
    66 *
    7  *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
    8  *  @date $Date: 2007-05-04 00:54:09 $
     7 *  @version $Revision: 1.4.16.1 $ $Name: not supported by cvs2svn $
     8 *  @date $Date: 2007-10-30 00:59:23 $
    99 *
    1010 *  Copyright 2006 IfA, University of Hawaii
     
    3636    PS_ASSERT_PTR_NON_NULL(view, false);
    3737    PS_ASSERT_PTR_NON_NULL(file, false);
     38    PS_ASSERT_PTR_NON_NULL(config, false);
    3839
    3940    if ((view->readout != -1) || (view->cell != -1)) {
     
    149150}
    150151
     152bool psMemCheckSourcePlotLayout(psPtr ptr)
     153{
     154    PS_ASSERT_PTR(ptr, false);
     155    return ( psMemGetDeallocator(ptr) == (psFreeFunc) pmSourcePlotLayoutFree);
     156}
     157
     158
    151159/* we have three types of plots to produce (maybe more?)
    152160 * for each plot, we need to supply the following information:
Note: See TracChangeset for help on using the changeset viewer.