summaryrefslogtreecommitdiff
path: root/ace/Basic_Stats.h
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-11-01 22:17:39 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-11-01 22:17:39 +0000
commit4cdff4b3e2dbc73b00e671ef638d71d6d854e0ac (patch)
tree97236ece363cff48fd287c780db4290da39b02cb /ace/Basic_Stats.h
parent7b6368ec78831d127f38eb7b630c21f98faf6a83 (diff)
downloadATCD-4cdff4b3e2dbc73b00e671ef638d71d6d854e0ac.tar.gz
ChangeLogTag:Wed Nov 1 14:11:48 2000 Carlos O'Ryan <coryan@uci.edu>
Diffstat (limited to 'ace/Basic_Stats.h')
-rw-r--r--ace/Basic_Stats.h30
1 files changed, 16 insertions, 14 deletions
diff --git a/ace/Basic_Stats.h b/ace/Basic_Stats.h
index da7e0dd1acf..722c92ae355 100644
--- a/ace/Basic_Stats.h
+++ b/ace/Basic_Stats.h
@@ -1,17 +1,14 @@
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// ace
-//
-// = FILENAME
-// Basic_Stats.h
-//
-// = AUTHOR
-// Carlos O'Ryan <coryan@uci.edu>
-//
-// ============================================================================
+
+//=============================================================================
+/**
+ * @file Basic_Stats.h
+ *
+ * $Id$
+ *
+ * @author Carlos O'Ryan <coryan@uci.edu>
+ */
+//=============================================================================
+
#ifndef ACE_BASIC_STATS_H
#define ACE_BASIC_STATS_H
@@ -65,14 +62,19 @@ private:
/// The minimum value
ACE_UINT64 min_;
+
/// The number of the sample that had the minimum value
ACE_UINT32 min_at_;
+
/// The maximum value
ACE_UINT64 max_;
+
/// The number of the sample that had the maximum value
ACE_UINT32 max_at_;
+
/// The sum of all the values
ACE_UINT64 sum_;
+
/// The sum of the square of all the values
ACE_UINT64 sum2_;
};