Index: trunk/psLib/src/dataManip/psVectorFFT.c
===================================================================
--- trunk/psLib/src/dataManip/psVectorFFT.c	(revision 808)
+++ trunk/psLib/src/dataManip/psVectorFFT.c	(revision 809)
@@ -5,6 +5,6 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-05-28 21:04:34 $
+ *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-05-28 21:07:17 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -160,5 +160,5 @@
 
     /* if not a complex number, this is logically just a copy */
-    if (! IS_PSELEMTYPE_COMPLEX(type)) {
+    if (! PS_IS_PSELEMTYPE_COMPLEX(type)) {
         // Warn user, as this is probably not expected
         psLogMsg(__func__,PS_LOG_WARN,"Real portion of a non-Complex type called called for. "
@@ -219,5 +219,5 @@
 
     /* if not a complex number, this is logically just zeroed image of same size */
-    if (! IS_PSELEMTYPE_COMPLEX(type)) {
+    if (! PS_IS_PSELEMTYPE_COMPLEX(type)) {
         // Warn user, as this is probably not expected
         psLogMsg(__func__,PS_LOG_WARN,"Imaginary portion of a non-Complex type called for. "
@@ -285,5 +285,5 @@
     }
 
-    if (IS_PSELEMTYPE_COMPLEX(type)) {
+    if (PS_IS_PSELEMTYPE_COMPLEX(type)) {
         psError(__func__,"The inputs to psImageComplex can not be complex.");
         return NULL;
@@ -352,5 +352,5 @@
 
     /* if not a complex number, this is logically just a image copy */
-    if (! IS_PSELEMTYPE_COMPLEX(type)) {
+    if (! PS_IS_PSELEMTYPE_COMPLEX(type)) {
         // Warn user, as this is probably not expected
         psLogMsg(__func__,PS_LOG_WARN,"Complex Conjugate of a non-Complex type called for. "
@@ -414,5 +414,5 @@
 
     /* if not a complex number, this is not implemented */
-    if (! IS_PSELEMTYPE_COMPLEX(type)) {
+    if (! PS_IS_PSELEMTYPE_COMPLEX(type)) {
         psError(__func__,"Power Spectrum for non-complex inputs is not implemented.");
         return NULL;
