IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 14, 2004, 9:01:37 AM (22 years ago)
Author:
desonia
Message:

fixed some problems stopping nonLinear from getting into the library.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/pmNonLinear.c

    r2121 r2125  
    55 *  @author George Gusciora, MHPCC
    66 *
    7  *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
    8  *  @date $Date: 2004-10-14 18:26:12 $
     7 *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
     8 *  @date $Date: 2004-10-14 19:01:37 $
    99 *
    1010 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
    1111 *
    1212 */
     13
     14#if HAVE_CONFIG_H
     15#include <config.h>
     16#endif
     17
     18#include<stdio.h>
     19#include<math.h>
    1320
    1421#include "pmNonLinear.h"
     
    2027    int j;
    2128
    22     PS_CHECK_NULL_PTR(in);
    23     PS_CHECK_NULL_PTR(in->image);
    24     PS_CHECK_NULL_PTR(coeff);
     29    PS_CHECK_NULL_PTR_RETURN_NULL(in);
     30    PS_CHECK_NULL_PTR_RETURN_NULL(in->image);
     31    PS_CHECK_NULL_PTR_RETURN_NULL(coeff);
    2532
    2633    for (i=0;i<(in->image)->numRows;i++) {
     
    3744                                const psVector *outFlux)
    3845{
    39     PS_CHECK_NULL_PTR(in);
    40     PS_CHECK_NULL_PTR(in->image);
    41     PS_CHECK_NULL_PTR(inFlux);
    42     PS_CHECK_NULL_PTR(outFlux);
     46    PS_CHECK_NULL_PTR_RETURN_NULL(in);
     47    PS_CHECK_NULL_PTR_RETURN_NULL(in->image);
     48    PS_CHECK_NULL_PTR_RETURN_NULL(inFlux);
     49    PS_CHECK_NULL_PTR_RETURN_NULL(outFlux);
    4350
    4451    int i;
Note: See TracChangeset for help on using the changeset viewer.