The Gaudi Framework  master (181af51f)
Loading...
Searching...
No Matches
EventContext.cpp File Reference
Include dependency graph for EventContext.cpp:

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &os, const EventContext &ctx)
 
std::ostream & operator<< (std::ostream &os, const EventContext *c)
 

Function Documentation

◆ operator<<() [1/2]

std::ostream & operator<< ( std::ostream & os,
const EventContext & ctx )

Definition at line 13 of file EventContext.cpp.

13{ return os << fmt::format( "{}", ctx ); }

◆ operator<<() [2/2]

std::ostream & operator<< ( std::ostream & os,
const EventContext * c )

Definition at line 15 of file EventContext.cpp.

15 {
16 if ( c ) { return os << fmt::format( "{}", *c ); }
17 return os << "INVALID";
18}