#include <PerSimStat.h>
Public Member Functions | |
| PerSimStat () | |
| PerSimStat (int in_count, double in_sum, double in_squaredsum) | |
| ~PerSimStat () | |
Public Attributes | |
| int | count |
| Number of times this stat has been incremented. | |
| double | sum |
| Total of x over all counts. | |
| double | squaredsum |
| Total of x^2 over all counts. | |
bv@bnl.gov Tue Sep 2 12:38:33 2008
Definition at line 14 of file PerSimStat.h.
| PerSimStat::PerSimStat | ( | ) |
Definition at line 3 of file PerSimStat.cc.
00004 : count(0) 00005 , sum(0) 00006 , squaredsum(0) 00007 { 00008 }
| PerSimStat::PerSimStat | ( | int | in_count, | |
| double | in_sum, | |||
| double | in_squaredsum | |||
| ) |
Definition at line 10 of file PerSimStat.cc.
00011 : count(in_count) 00012 , sum(in_sum) 00013 , squaredsum(in_squaredsum) 00014 { 00015 }
| PerSimStat::~PerSimStat | ( | ) |
| double PerSimStat::sum |
| double PerSimStat::squaredsum |
1.4.7