Index: trunk/psModules/src/pmObjects.c
===================================================================
--- trunk/psModules/src/pmObjects.c	(revision 3089)
+++ trunk/psModules/src/pmObjects.c	(revision 3231)
@@ -5,6 +5,6 @@
  *  @author GLG, MHPCC
  *
- *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-01-25 02:45:43 $
+ *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-02-15 23:59:05 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -114,5 +114,5 @@
                     (image->data.F32[row][col] >  image->data.F32[row+1][col]) &&
                     (image->data.F32[row][col] >= image->data.F32[row+1][col+1])) {
-                if (image->data.F32[row][col] > threashold) {
+                if (image->data.F32[row][col] > threshold) {
                     // Add peak at location (row, col)
                 }
@@ -124,5 +124,5 @@
                     (image->data.F32[row][col] >  image->data.F32[row+1][col]) &&
                     (image->data.F32[row][col] >= image->data.F32[row+1][col+1])) {
-                if (image->data.F32[row][col] > threashold) {
+                if (image->data.F32[row][col] > threshold) {
                     // Add peak at location (row, col)
                 }
@@ -133,5 +133,5 @@
                     (image->data.F32[row][col] > image->data.F32[row+1][col]) &&
                     (image->data.F32[row][col] >= image->data.F32[row+1][col-1])) {
-                if (image->data.F32[row][col] > threashold) {
+                if (image->data.F32[row][col] > threshold) {
                     // Add peak at location (row, col)
                 }
@@ -159,5 +159,5 @@
                     (image->data.F32[row][col] >= image->data.F32[row+1][col]) &&
                     (image->data.F32[row][col] >= image->data.F32[row+1][col+1])) {
-                if (image->data.F32[row][col] > threashold) {
+                if (image->data.F32[row][col] > threshold) {
                     // Add peak at location (row, col)
                 }
@@ -175,5 +175,5 @@
                     (image->data.F32[row][col] >= image->data.F32[row-1][col+1]) &&
                     (image->data.F32[row][col] >  image->data.F32[row][col+1])) {
-                if (image->data.F32[row][col] > threashold) {
+                if (image->data.F32[row][col] > threshold) {
                     // Add peak at location (row, col)
                 }
@@ -185,5 +185,5 @@
                     (image->data.F32[row][col] >  image->data.F32[row][col-1]) &&
                     (image->data.F32[row][col] >= image->data.F32[row][col+1])) {
-                if (image->data.F32[row][col] > threashold) {
+                if (image->data.F32[row][col] > threshold) {
                     // Add peak at location (row, col)
                 }
@@ -194,5 +194,5 @@
                     (image->data.F32[row][col] >  image->data.F32[row-1][col]) &&
                     (image->data.F32[row][col] >  image->data.F32[row][col-1])) {
-                if (image->data.F32[row][col] > threashold) {
+                if (image->data.F32[row][col] > threshold) {
                     // Add peak at location (row, col)
                 }
