Index: trunk/psModules/src/pmObjects.c
===================================================================
--- trunk/psModules/src/pmObjects.c	(revision 3088)
+++ trunk/psModules/src/pmObjects.c	(revision 3089)
@@ -5,6 +5,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-01-25 02:42:27 $
+ *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-01-25 02:45:43 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -114,5 +114,7 @@
                     (image->data.F32[row][col] >  image->data.F32[row+1][col]) &&
                     (image->data.F32[row][col] >= image->data.F32[row+1][col+1])) {
-                // Add peak at location (row, col)
+                if (image->data.F32[row][col] > threashold) {
+                    // Add peak at location (row, col)
+                }
             }
         } else if (col < (image->numCols - 1)) {
@@ -122,5 +124,7 @@
                     (image->data.F32[row][col] >  image->data.F32[row+1][col]) &&
                     (image->data.F32[row][col] >= image->data.F32[row+1][col+1])) {
-                // Add peak at location (row, col)
+                if (image->data.F32[row][col] > threashold) {
+                    // Add peak at location (row, col)
+                }
             }
 
@@ -129,5 +133,7 @@
                     (image->data.F32[row][col] > image->data.F32[row+1][col]) &&
                     (image->data.F32[row][col] >= image->data.F32[row+1][col-1])) {
-                // Add peak at location (row, col)
+                if (image->data.F32[row][col] > threashold) {
+                    // Add peak at location (row, col)
+                }
             }
 
@@ -153,5 +159,7 @@
                     (image->data.F32[row][col] >= image->data.F32[row+1][col]) &&
                     (image->data.F32[row][col] >= image->data.F32[row+1][col+1])) {
-                // Add peak at location (row, col)
+                if (image->data.F32[row][col] > threashold) {
+                    // Add peak at location (row, col)
+                }
             }
         }
@@ -167,5 +175,7 @@
                     (image->data.F32[row][col] >= image->data.F32[row-1][col+1]) &&
                     (image->data.F32[row][col] >  image->data.F32[row][col+1])) {
-                // Add peak at location (row, col)
+                if (image->data.F32[row][col] > threashold) {
+                    // Add peak at location (row, col)
+                }
             }
         } else if (col < (image->numCols - 1)) {
@@ -175,5 +185,7 @@
                     (image->data.F32[row][col] >  image->data.F32[row][col-1]) &&
                     (image->data.F32[row][col] >= image->data.F32[row][col+1])) {
-                // Add peak at location (row, col)
+                if (image->data.F32[row][col] > threashold) {
+                    // Add peak at location (row, col)
+                }
             }
 
@@ -182,5 +194,7 @@
                     (image->data.F32[row][col] >  image->data.F32[row-1][col]) &&
                     (image->data.F32[row][col] >  image->data.F32[row][col-1])) {
-                // Add peak at location (row, col)
+                if (image->data.F32[row][col] > threashold) {
+                    // Add peak at location (row, col)
+                }
             }
         } else {
@@ -226,8 +240,8 @@
 
 /******************************************************************************
-pmSourceRouchClass(source, saturate, SNlim, valid): make a guessat the source
+pmSourceRoughClass(source, saturate, SNlim, valid): make a guessat the source
 classification.
  *****************************************************************************/
-psSource *pmSourceRouchClass(psSource *source,
+psSource *pmSourceRoughClass(psSource *source,
                              psF32 saturate,
                              float SNlim,
@@ -522,5 +536,2 @@
     return(0.0);
 }
-
-
-
