source: trunk/src/WeightedAverager.cc @ 94

Last change on this file since 94 was 94, checked in by Peter, 19 years ago

Weighted averager

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 301 bytes
RevLine 
[94]1// $Id: WeightedAverager.cc 94 2004-06-09 10:24:53Z peter $
2
3#include <sys/types.h>
4
5#include <ostream>
6
7#include "Averager.h"
8#include "WeightedAverager.h"
9
10namespace theplu {
11namespace cpptools{
12 
13
14  WeightedAverager::WeightedAverager(void)
15    : w_(Averager()), wx_(Averager()), wwx_(Averager())
16  {
17  }
18
19
20}} // of namespace cpptools and namespace theplu
Note: See TracBrowser for help on using the repository browser.