CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
count_t Class Reference

#include <ErrorPropogationTypes.h>

Inheritance diagram for count_t:

Public Member Functions

 count_t ()
 
 count_t (unsigned long n)
 
double error () const
 
unsigned long error2 () const
 
unsigned long operator() () const
 
count_t operator++ ()
 
count_t operator+= (const count_t &R)
 
bool operator< (const count_t &R) const
 
double relative_error () const
 

Private Attributes

unsigned long count
 

Detailed Description

Definition at line 7 of file ErrorPropogationTypes.h.

Constructor & Destructor Documentation

count_t::count_t ( )
inline

Definition at line 16 of file ErrorPropogationTypes.h.

16 : count(0) {}
unsigned long count
count_t::count_t ( unsigned long  n)
inline

Definition at line 17 of file ErrorPropogationTypes.h.

17 : count(n) {}
unsigned long count

Member Function Documentation

double count_t::error ( ) const
inline
unsigned long count_t::error2 ( ) const
inline

Definition at line 22 of file ErrorPropogationTypes.h.

References count.

Referenced by stats_t< T >::operator==().

22 {return count;}
unsigned long count
unsigned long count_t::operator() ( ) const
inline

Definition at line 21 of file ErrorPropogationTypes.h.

References count.

21 {return count;}
unsigned long count
count_t count_t::operator++ ( void  )
inline

Definition at line 19 of file ErrorPropogationTypes.h.

References count.

19 {++count; return *this;}
unsigned long count
count_t count_t::operator+= ( const count_t R)
inline

Definition at line 20 of file ErrorPropogationTypes.h.

References count.

20 {count += R.count; return *this;}
unsigned long count
bool count_t::operator< ( const count_t R) const
inline

Definition at line 18 of file ErrorPropogationTypes.h.

References count.

18 { return count < R.count;}
unsigned long count
double count_t::relative_error ( ) const
inline

Definition at line 24 of file ErrorPropogationTypes.h.

References count, and mathSSE::sqrt().

24 {return 1/sqrt(count);}
T sqrt(T t)
Definition: SSEVec.h:48
unsigned long count

Member Data Documentation

unsigned long count_t::count
private