-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcollector.h
87 lines (71 loc) · 2.46 KB
/
collector.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/*
* Copyright (c) 2010 Bucknell University
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation;
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Author: L. Felipe Perrone ([email protected])
*/
#ifndef COLLECTOR_H
#define COLLECTOR_H
#include "ns3/object.h"
// there is one collector for each probe
//
// all metadata (or rather, knowledge) of experiment
// is contained in the simulation client
//
namespace ns3 {
/** This class serves two functions. First, it is a container for
* a collection of samples generated by a probe. Some statistical smarts
* are built into this container.
*
* Second, it dispatches samples to standard output, when the simulation
* run doesn't use the automation framework, or to the EEM Client, when
* it does. A Collector can be configured to pass through all the samples
* received from its probe or to "smooth out" the data by computing
* statistics for moving windows.
*/
class Collector : public Object {
public:
static TypeId GetTypeId (void);
Collector ();
virtual ~Collector ();
/// Running average of stored samples (Welford's one pass algorithm)
double SampleMean();
/// Running variance of stored samples (Welford's one pass algorithm)
double SampleVariance();
/// Number of samples stored
long SampleSize();
/// Summation of all stored samples
double SampleSum();
/// Largest sample value stored
double MaxSample();
/// Smallest sample value stored
double MinSample();
private:
double m_minValue;
double m_maxValue;
long m_nSamples;
double m_sum;
double m_mean;
double m_var;
// the collector needs to know the id of the object that contains the
// probe
//
// the collector needs to know the data type of the metric being
// recorded; do I use template or polymorphism here?
//
}; // class Collector
} // namespace ns3
#endif // COLLECTOR_H