Feathercoin  0.5.0
P2P Digital Currency
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros
Public Member Functions | Private Types | Private Member Functions | Private Attributes | Static Private Attributes | List of all members
leveldb::Histogram Class Reference

#include <histogram.h>

Public Member Functions

 Histogram ()
 
 ~Histogram ()
 
void Clear ()
 
void Add (double value)
 
void Merge (const Histogram &other)
 
std::string ToString () const
 

Private Types

enum  { kNumBuckets = 154 }
 

Private Member Functions

double Median () const
 
double Percentile (double p) const
 
double Average () const
 
double StandardDeviation () const
 

Private Attributes

double min_
 
double max_
 
double num_
 
double sum_
 
double sum_squares_
 
double buckets_ [kNumBuckets]
 

Static Private Attributes

static const double kBucketLimit [kNumBuckets]
 

Detailed Description

Definition at line 12 of file histogram.h.

Member Enumeration Documentation

anonymous enum
private
Enumerator
kNumBuckets 

Definition at line 30 of file histogram.h.

Constructor & Destructor Documentation

leveldb::Histogram::Histogram ( )
inline

Definition at line 14 of file histogram.h.

leveldb::Histogram::~Histogram ( )
inline

Definition at line 15 of file histogram.h.

Member Function Documentation

void leveldb::Histogram::Add ( double  value)

Definition at line 44 of file histogram.cc.

double leveldb::Histogram::Average ( ) const
private

Definition at line 94 of file histogram.cc.

void leveldb::Histogram::Clear ( )

Definition at line 33 of file histogram.cc.

double leveldb::Histogram::Median ( ) const
private

Definition at line 69 of file histogram.cc.

void leveldb::Histogram::Merge ( const Histogram other)

Definition at line 58 of file histogram.cc.

double leveldb::Histogram::Percentile ( double  p) const
private

Definition at line 73 of file histogram.cc.

double leveldb::Histogram::StandardDeviation ( ) const
private

Definition at line 99 of file histogram.cc.

std::string leveldb::Histogram::ToString ( ) const

Definition at line 105 of file histogram.cc.

Member Data Documentation

double leveldb::Histogram::buckets_[kNumBuckets]
private

Definition at line 32 of file histogram.h.

const double leveldb::Histogram::kBucketLimit
staticprivate
Initial value:
= {
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 14, 16, 18, 20, 25, 30, 35, 40, 45,
50, 60, 70, 80, 90, 100, 120, 140, 160, 180, 200, 250, 300, 350, 400, 450,
500, 600, 700, 800, 900, 1000, 1200, 1400, 1600, 1800, 2000, 2500, 3000,
3500, 4000, 4500, 5000, 6000, 7000, 8000, 9000, 10000, 12000, 14000,
16000, 18000, 20000, 25000, 30000, 35000, 40000, 45000, 50000, 60000,
70000, 80000, 90000, 100000, 120000, 140000, 160000, 180000, 200000,
250000, 300000, 350000, 400000, 450000, 500000, 600000, 700000, 800000,
900000, 1000000, 1200000, 1400000, 1600000, 1800000, 2000000, 2500000,
3000000, 3500000, 4000000, 4500000, 5000000, 6000000, 7000000, 8000000,
9000000, 10000000, 12000000, 14000000, 16000000, 18000000, 20000000,
25000000, 30000000, 35000000, 40000000, 45000000, 50000000, 60000000,
70000000, 80000000, 90000000, 100000000, 120000000, 140000000, 160000000,
180000000, 200000000, 250000000, 300000000, 350000000, 400000000,
450000000, 500000000, 600000000, 700000000, 800000000, 900000000,
1000000000, 1200000000, 1400000000, 1600000000, 1800000000, 2000000000,
2500000000.0, 3000000000.0, 3500000000.0, 4000000000.0, 4500000000.0,
5000000000.0, 6000000000.0, 7000000000.0, 8000000000.0, 9000000000.0,
1e200,
}

Definition at line 31 of file histogram.h.

double leveldb::Histogram::max_
private

Definition at line 25 of file histogram.h.

double leveldb::Histogram::min_
private

Definition at line 24 of file histogram.h.

double leveldb::Histogram::num_
private

Definition at line 26 of file histogram.h.

double leveldb::Histogram::sum_
private

Definition at line 27 of file histogram.h.

double leveldb::Histogram::sum_squares_
private

Definition at line 28 of file histogram.h.


The documentation for this class was generated from the following files: