Index: /trunk/psLib/src/dataManip/psFunctions.c
===================================================================
--- /trunk/psLib/src/dataManip/psFunctions.c	(revision 1341)
+++ /trunk/psLib/src/dataManip/psFunctions.c	(revision 1342)
@@ -7,6 +7,6 @@
  *  polynomials.  It also contains a Gaussian functions.
  *
- *  @version $Revision: 1.17 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-07-29 22:44:34 $
+ *  @version $Revision: 1.18 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-07-29 23:34:24 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -80,9 +80,9 @@
            float mean,
            float sigma,
-           int normal)
+           bool  normal)
 {
     float tmp = 1.0;
 
-    if (normal == 1) {
+    if (normal == true) {
         #ifdef DARWIN
         tmp = 1.0 / (float)sqrt(2.0 * M_PI * (sigma * sigma));
Index: /trunk/psLib/src/dataManip/psFunctions.h
===================================================================
--- /trunk/psLib/src/dataManip/psFunctions.h	(revision 1341)
+++ /trunk/psLib/src/dataManip/psFunctions.h	(revision 1342)
@@ -12,6 +12,6 @@
  *  @author George Gusciora, MHPCC
  *
- *  @version $Revision: 1.10 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-07-29 22:44:34 $
+ *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-07-29 23:34:24 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -34,5 +34,5 @@
            float mean,     ///< Mean for the Gaussian
            float stddev,   ///< Standard deviation for the Gaussian
-           int normal      ///< Indicates whether result should be normalized
+           bool  normal      ///< Indicates whether result should be normalized
           );
 
Index: /trunk/psLib/src/math/psPolynomial.c
===================================================================
--- /trunk/psLib/src/math/psPolynomial.c	(revision 1341)
+++ /trunk/psLib/src/math/psPolynomial.c	(revision 1342)
@@ -7,6 +7,6 @@
  *  polynomials.  It also contains a Gaussian functions.
  *
- *  @version $Revision: 1.17 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-07-29 22:44:34 $
+ *  @version $Revision: 1.18 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-07-29 23:34:24 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -80,9 +80,9 @@
            float mean,
            float sigma,
-           int normal)
+           bool  normal)
 {
     float tmp = 1.0;
 
-    if (normal == 1) {
+    if (normal == true) {
         #ifdef DARWIN
         tmp = 1.0 / (float)sqrt(2.0 * M_PI * (sigma * sigma));
Index: /trunk/psLib/src/math/psPolynomial.h
===================================================================
--- /trunk/psLib/src/math/psPolynomial.h	(revision 1341)
+++ /trunk/psLib/src/math/psPolynomial.h	(revision 1342)
@@ -12,6 +12,6 @@
  *  @author George Gusciora, MHPCC
  *
- *  @version $Revision: 1.10 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-07-29 22:44:34 $
+ *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-07-29 23:34:24 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -34,5 +34,5 @@
            float mean,     ///< Mean for the Gaussian
            float stddev,   ///< Standard deviation for the Gaussian
-           int normal      ///< Indicates whether result should be normalized
+           bool  normal      ///< Indicates whether result should be normalized
           );
 
Index: /trunk/psLib/src/math/psSpline.c
===================================================================
--- /trunk/psLib/src/math/psSpline.c	(revision 1341)
+++ /trunk/psLib/src/math/psSpline.c	(revision 1342)
@@ -7,6 +7,6 @@
  *  polynomials.  It also contains a Gaussian functions.
  *
- *  @version $Revision: 1.17 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-07-29 22:44:34 $
+ *  @version $Revision: 1.18 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-07-29 23:34:24 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -80,9 +80,9 @@
            float mean,
            float sigma,
-           int normal)
+           bool  normal)
 {
     float tmp = 1.0;
 
-    if (normal == 1) {
+    if (normal == true) {
         #ifdef DARWIN
         tmp = 1.0 / (float)sqrt(2.0 * M_PI * (sigma * sigma));
Index: /trunk/psLib/src/math/psSpline.h
===================================================================
--- /trunk/psLib/src/math/psSpline.h	(revision 1341)
+++ /trunk/psLib/src/math/psSpline.h	(revision 1342)
@@ -12,6 +12,6 @@
  *  @author George Gusciora, MHPCC
  *
- *  @version $Revision: 1.10 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-07-29 22:44:34 $
+ *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-07-29 23:34:24 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -34,5 +34,5 @@
            float mean,     ///< Mean for the Gaussian
            float stddev,   ///< Standard deviation for the Gaussian
-           int normal      ///< Indicates whether result should be normalized
+           bool  normal      ///< Indicates whether result should be normalized
           );
 
Index: /trunk/psLib/test/dataManip/tst_psFunc01.c
===================================================================
--- /trunk/psLib/test/dataManip/tst_psFunc01.c	(revision 1341)
+++ /trunk/psLib/test/dataManip/tst_psFunc01.c	(revision 1342)
@@ -26,10 +26,10 @@
 
     for (x = 0.0 ; x < (MY_MEAN * 2.0) ; x+= 1.0) {
-        printf("normal psGaussian(%f) is %f\n", x, psGaussian(x, MY_MEAN, MY_STDEV, 1));
+        printf("normal psGaussian(%f) is %f\n", x, psGaussian(x, MY_MEAN, MY_STDEV, true));
         x = x + 1.0;
     }
 
     for (x = 0.0 ; x < (MY_MEAN * 2.0) ; x+= 1.0) {
-        printf("NON-normal psGaussian(%f) is %f\n", x, psGaussian(x, MY_MEAN, MY_STDEV, 0));
+        printf("NON-normal psGaussian(%f) is %f\n", x, psGaussian(x, MY_MEAN, MY_STDEV, false));
         x = x + 1.0;
     }
