IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 28, 2004, 11:07:17 AM (22 years ago)
Author:
desonia
Message:

Added mask related things and fixed coding style issues in psType.h

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/dataManip/psFFT.c

    r808 r809  
    55 *  @author Robert DeSonia, MHPCC
    66 *
    7  *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
    8  *  @date $Date: 2004-05-28 21:04:34 $
     7 *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
     8 *  @date $Date: 2004-05-28 21:07:17 $
    99 *
    1010 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    160160
    161161    /* if not a complex number, this is logically just a copy */
    162     if (! IS_PSELEMTYPE_COMPLEX(type)) {
     162    if (! PS_IS_PSELEMTYPE_COMPLEX(type)) {
    163163        // Warn user, as this is probably not expected
    164164        psLogMsg(__func__,PS_LOG_WARN,"Real portion of a non-Complex type called called for. "
     
    219219
    220220    /* if not a complex number, this is logically just zeroed image of same size */
    221     if (! IS_PSELEMTYPE_COMPLEX(type)) {
     221    if (! PS_IS_PSELEMTYPE_COMPLEX(type)) {
    222222        // Warn user, as this is probably not expected
    223223        psLogMsg(__func__,PS_LOG_WARN,"Imaginary portion of a non-Complex type called for. "
     
    285285    }
    286286
    287     if (IS_PSELEMTYPE_COMPLEX(type)) {
     287    if (PS_IS_PSELEMTYPE_COMPLEX(type)) {
    288288        psError(__func__,"The inputs to psImageComplex can not be complex.");
    289289        return NULL;
     
    352352
    353353    /* if not a complex number, this is logically just a image copy */
    354     if (! IS_PSELEMTYPE_COMPLEX(type)) {
     354    if (! PS_IS_PSELEMTYPE_COMPLEX(type)) {
    355355        // Warn user, as this is probably not expected
    356356        psLogMsg(__func__,PS_LOG_WARN,"Complex Conjugate of a non-Complex type called for. "
     
    414414
    415415    /* if not a complex number, this is not implemented */
    416     if (! IS_PSELEMTYPE_COMPLEX(type)) {
     416    if (! PS_IS_PSELEMTYPE_COMPLEX(type)) {
    417417        psError(__func__,"Power Spectrum for non-complex inputs is not implemented.");
    418418        return NULL;
Note: See TracChangeset for help on using the changeset viewer.