Index: /trunk/archive/pslib/include/psStats.h
===================================================================
--- /trunk/archive/pslib/include/psStats.h	(revision 356)
+++ /trunk/archive/pslib/include/psStats.h	(revision 357)
@@ -9,30 +9,25 @@
 /** statistics which may be calculated */
 typedef enum {
-    PS_STAT_SAMPLE_MEAN           = 0x0000001,
-    PS_STAT_SAMPLE_MEDIAN         = 0x0000002,
-    PS_STAT_SAMPLE_MODE           = 0x0000004,
-    PS_STAT_SAMPLE_STDEV          = 0x0000008,
-    PS_STAT_SAMPLE_UQ 		  = 0x0000010, 
-    PS_STAT_SAMPLE_LQ 		  = 0x0000020,
-    PS_STAT_ROBUST_MEAN           = 0x0000040,
-    PS_STAT_ROBUST_MEAN_ERROR     = 0x0000080,
-    PS_STAT_ROBUST_MEAN_NVALUES   = 0x0000100,
-    PS_STAT_ROBUST_MEDIAN         = 0x0000200,
-    PS_STAT_ROBUST_MEDIAN_ERROR   = 0x0000400,
-    PS_STAT_ROBUST_MEDIAN_NVALUES = 0x0000800,
-    PS_STAT_ROBUST_MODE           = 0x0001000,
-    PS_STAT_ROBUST_MODE_ERROR     = 0x0002000,
-    PS_STAT_ROBUST_MODE_NVALUES   = 0x0004000,
-    PS_STAT_ROBUST_STDEV          = 0x0008000,
-    PS_STAT_ROBUST_UQ 		  = 0x0010000, 
-    PS_STAT_ROBUST_LQ 		  = 0x0020000,
-    PS_STAT_CLIPPED_MEAN          = 0x0040000,
-    PS_STAT_CLIPPED_MEAN_ERROR    = 0x0080000,
-    PS_STAT_CLIPPED_MEAN_NVALUES  = 0x0100000,
-    PS_STAT_CLIPPED_MEAN_NSIGMA   = 0x0200000,
-    PS_STAT_CLIPPED_STDEV         = 0x0400000,
-    PS_STAT_MAX     		  = 0x0800000,     
-    PS_STAT_MIN     		  = 0x1000000,
-    PS_STAT_NVALUES 		  = 0x2000000
+    PS_STAT_SAMPLE_MEAN           = 0x000001,
+    PS_STAT_SAMPLE_MEDIAN         = 0x000002,
+    PS_STAT_SAMPLE_STDEV          = 0x000004,
+    PS_STAT_SAMPLE_UQ 		  = 0x000008, 
+    PS_STAT_SAMPLE_LQ 		  = 0x000010,
+    PS_STAT_ROBUST_MEAN           = 0x000020,
+    PS_STAT_ROBUST_MEAN_NVALUES   = 0x000040,
+    PS_STAT_ROBUST_MEDIAN         = 0x000080,
+    PS_STAT_ROBUST_MEDIAN_NVALUES = 0x000100,
+    PS_STAT_ROBUST_MODE           = 0x000200,
+    PS_STAT_ROBUST_MODE_NVALUES   = 0x000400,
+    PS_STAT_ROBUST_STDEV          = 0x000800,
+    PS_STAT_ROBUST_UQ 		  = 0x001000, 
+    PS_STAT_ROBUST_LQ 		  = 0x002000,
+    PS_STAT_CLIPPED_MEAN          = 0x004000,
+    PS_STAT_CLIPPED_MEAN_NVALUES  = 0x008000,
+    PS_STAT_CLIPPED_MEAN_NSIGMA   = 0x010000,
+    PS_STAT_CLIPPED_STDEV         = 0x020000,
+    PS_STAT_MAX     		  = 0x040000,     
+    PS_STAT_MIN     		  = 0x080000,
+    PS_STAT_NVALUES 		  = 0x100000
 } psStatsOptions;    			  
 
@@ -41,16 +36,12 @@
     double sampleMean;			///< formal mean of sample
     double sampleMedian;		///< formal median of sample
-    double sampleMode;			///< Formal mode of sample
     double sampleStdev;			///< standard deviation of sample
     double sampleUQ;			///< upper quartile of sample
     double sampleLQ;			///< lower quartile of sample
     double robustMean;			///< robust mean of array
-    double robustMeanError;		///< error on robust mean
     int    robustMeanNvalues;		///< number of measurements used for robust mean
     double robustMedian;		///< robust median of array
-    double robustMedianError;		///< error on robust median
     int    robustMedianNvalues;		///< number of measurements used for robust median
     double robustMode;			///< Robust mode of array
-    double robustModeErr;		///< Error in robust mode
     int    robustModeNvalues;		///< Number of measurements used for robust mode
     double robustStdev;			///< robust standard deviation of array
@@ -58,5 +49,4 @@
     double robustLQ;			///< robust lower quartile
     double clippedMean;			///< Nsigma clipped mean
-    double clippedMeanError;		///< error on clipped mean
     int    clippedMeanNvalues;		///< number of data points used for clipped mean
     double clippedStdev;		///< standard deviation after clipping
