Stats module and example merged in.
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/*
* Copyright (c) 2008 Drexel 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: Joe Kopena (tjkopena@cs.drexel.edu)
*/
#ifndef __TIME_DATA_CALCULATORS_H__
#define __TIME_DATA_CALCULATORS_H__
#include "ns3/nstime.h"
#include "data-calculator.h"
#include "data-output-interface.h"
namespace ns3 {
//------------------------------------------------------------
//--------------------------------------------
/**
* Unfortunately, templating the base MinMaxAvgTotalCalculator to
* operate over Time values isn't straightforward. The main issues
* are setting the maximum value, which can be worked around easily
* as it done here, and dividing to get the average, which is not as
* easily worked around.
*/
class TimeMinMaxAvgTotalCalculator : public DataCalculator {
public:
TimeMinMaxAvgTotalCalculator();
virtual ~TimeMinMaxAvgTotalCalculator();
void Update(const Time i);
virtual void Output(DataOutputCallback &callback) const;
protected:
virtual void DoDispose(void);
uint32_t m_count;
Time m_total, m_min, m_max;
// end class TimeMinMaxAvgTotalCalculator
};
// end namespace ns3
};
#endif // __TIME_DATA_CALCULATORS_H__