Stat.h File Reference
#include <string>
#include "GaudiKernel/StatEntity.h"
Go to the source code of this file.
Function Documentation
| GAUDI_API Stat operator+ |
( |
const Stat & |
stat, |
|
|
const Stat & |
value | |
|
) |
| | |
external operator for addition of Stat and Stat
Definition at line 231 of file Stat.cpp.
00232 { Stat s( stat ) ; s += value ; return s ; }
| GAUDI_API Stat operator+ |
( |
const double |
value, |
|
|
const Stat & |
stat | |
|
) |
| | |
external operator for addition of Stat and a number
Definition at line 227 of file Stat.cpp.
00228 { Stat s( stat ) ; s += value ; return s ; }
| GAUDI_API Stat operator+ |
( |
const Stat & |
stat, |
|
|
const double |
value | |
|
) |
| | |
external operator for addition of Stat and a number
Definition at line 217 of file Stat.cpp.
00218 { Stat s( stat ) ; s += value ; return s ; }
| GAUDI_API Stat operator- |
( |
const Stat & |
stat, |
|
|
const double |
value | |
|
) |
| | |
external operator for subtraction of Stat and a number
Definition at line 222 of file Stat.cpp.
00223 { Stat s( stat ) ; s -= value ; return s ; }