The Gaudi Framework  master (b9786168)
Loading...
Searching...
No Matches
EventSelectorDataStream.cpp File Reference
Include dependency graph for EventSelectorDataStream.cpp:

Go to the source code of this file.

Functions

MsgStreamoperator<< (MsgStream &s, const EventSelectorDataStream &obj)
 Output friend for MsgStream.
 
std::ostream & operator<< (std::ostream &s, const EventSelectorDataStream &obj)
 Output friend for standard I/O.
 

Function Documentation

◆ operator<<() [1/2]

MsgStream & operator<< ( MsgStream & s,
const EventSelectorDataStream & obj )

Output friend for MsgStream.

Definition at line 21 of file EventSelectorDataStream.cpp.

21 {
22 return s << "Stream:" << obj.name() << " Def:" << obj.definition();
23}
const std::string & name() const
Retrieve stream name.
const std::string & definition() const
Retrieve definition string.

◆ operator<<() [2/2]

std::ostream & operator<< ( std::ostream & s,
const EventSelectorDataStream & obj )

Output friend for standard I/O.

Definition at line 26 of file EventSelectorDataStream.cpp.

26 {
27 return s << "Stream:" << obj.name() << " Def:" << obj.definition();
28}