Gaudi Framework, version v25r0

Home   Generated: Mon Feb 17 2014
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Macros | Functions
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
 
StatEntity operator+ (const double value, const StatEntity &entity)
 external operator for addition of StatEntity and a number
 
StatEntity operator- (const StatEntity &entity, const double value)
 external operator for subtraction of StatEntity and a number
 
StatEntity operator+ (const StatEntity &entity, const StatEntity &value)
 external operator for addition of StatEntity and a number
 
std::ostreamoperator<< (std::ostream &stream, const StatEntity &entity)
 external printout operator to std::ostream
 

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.

{ StatEntity aux ( entity ) ; return aux+=value ; }
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.

{ 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.

{ StatEntity aux ( entity ) ; return aux+=value ; }
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.

{ StatEntity aux ( entity ) ; return aux-=value ; }
std::ostream& operator<< ( std::ostream stream,
const StatEntity entity 
)

external printout operator to std::ostream

Definition at line 267 of file StatEntity.cpp.

{ return entity.print ( stream ) ; }

Generated at Mon Feb 17 2014 14:37:54 for Gaudi Framework, version v25r0 by Doxygen version 1.8.2 written by Dimitri van Heesch, © 1997-2004