#include <string>Include dependency graph for GaudiHistoID.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Namespaces | |
| namespace | GaudiAlg |
Classes | |
| class | GaudiAlg::ID |
| ID class for Histogram and Ntuples. More... | |
Defines | |
| #define | GAUDIALG_GAUDIHISTOID_H 1 |
Functions | |
| std::ostream & | operator<< (std::ostream &str, const GaudiAlg::ID &id) |
| Operator overloading for ostream. | |
| #define GAUDIALG_GAUDIHISTOID_H 1 |
Definition at line 16 of file GaudiHistoID.h.
| std::ostream& operator<< | ( | std::ostream & | str, | |
| const GaudiAlg::ID & | id | |||
| ) | [inline] |
Operator overloading for ostream.
Definition at line 139 of file GaudiHistoID.h.
00140 { 00141 if ( id.numeric() ) { str << id.numericID(); } 00142 else if ( id.literal() ) { str << id.literalID(); } 00143 else { str << "UNDEFINED"; } 00144 return str; 00145 }
1.4.7