All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
StatEntity.cpp File Reference

Implementation file for class StatEntity. More...

#include <iostream>
#include <sstream>
#include <string>
#include <cmath>
#include <limits>
#include "GaudiKernel/StatEntity.h"
#include "boost/format.hpp"
#include "boost/static_assert.hpp"
#include "boost/algorithm/string/case_conv.hpp"
Include dependency graph for StatEntity.cpp:

Go to the source code of this file.

Macros

#define GAUDIKERNEL_STATENTITY_CPP   1
 

Functions

StatEntity operator+ (const StatEntity &entity, const double value)
 external operator for addition of StatEntity and a number More...
 
StatEntity operator+ (const double value, const StatEntity &entity)
 external operator for addition of StatEntity and a number More...
 
StatEntity operator- (const StatEntity &entity, const double value)
 external operator for subtraction of StatEntity and a number More...
 
StatEntity operator+ (const StatEntity &entity, const StatEntity &value)
 external operator for addition of StatEntity and a number More...
 
std::ostream & operator<< (std::ostream &stream, const StatEntity &entity)
 external printout operator to std::ostream More...
 

Detailed Description

Implementation file for class StatEntity.

Date
26/06/2001
Author
Vanya BELYAEV Ivan..nosp@m.Bely.nosp@m.aev@i.nosp@m.tep..nosp@m.ru

Definition in file StatEntity.cpp.

Macro Definition Documentation

#define GAUDIKERNEL_STATENTITY_CPP   1

Definition at line 5 of file StatEntity.cpp.

Function Documentation

StatEntity operator+ ( const StatEntity entity,
const double  value 
)

external operator for addition of StatEntity and a number

Definition at line 247 of file StatEntity.cpp.

248 { StatEntity aux ( entity ) ; return aux+=value ; }
The basic counter used for Monitoring purposes.
Definition: StatEntity.h:68
StatEntity operator+ ( const double  value,
const StatEntity entity 
)

external operator for addition of StatEntity and a number

Definition at line 252 of file StatEntity.cpp.

253 { return entity + value ; }
StatEntity operator+ ( const StatEntity entity,
const StatEntity value 
)

external operator for addition of StatEntity and a number

Definition at line 262 of file StatEntity.cpp.

263 { StatEntity aux ( entity ) ; return aux+=value ; }
The basic counter used for Monitoring purposes.
Definition: StatEntity.h:68
StatEntity operator- ( const StatEntity entity,
const double  value 
)

external operator for subtraction of StatEntity and a number

Definition at line 257 of file StatEntity.cpp.

258 { StatEntity aux ( entity ) ; return aux-=value ; }
The basic counter used for Monitoring purposes.
Definition: StatEntity.h:68
std::ostream& operator<< ( std::ostream &  stream,
const StatEntity entity 
)

external printout operator to std::ostream

Definition at line 267 of file StatEntity.cpp.

268 { return entity.print ( stream ) ; }
std::ostream & print(std::ostream &o=std::cout) const
printout to std::ostream
Definition: StatEntity.cpp:236