Gaudi Framework, version v22r2

Home   Generated: Tue May 10 2011
Defines | 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.

Defines

#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.Belyaev@itep.ru

Definition in file StatEntity.cpp.


Define 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 ) ; }
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Defines

Generated at Tue May 10 2011 18:54:25 for Gaudi Framework, version v22r2 by Doxygen version 1.7.2 written by Dimitri van Heesch, © 1997-2004