|
Gaudi Framework, version v23r4 |
| Home | Generated: Mon Sep 17 2012 |
#include "GaudiKernel/IEvtSelector.h"#include "GaudiKernel/Property.h"#include <vector>#include <iostream>

Go to the source code of this file.
Classes | |
| class | EventSelectorDataStream |
| Definition of class EventSelectorDataStream. More... | |
Functions | |
| GAUDI_API MsgStream & | operator<< (MsgStream &s, const EventSelectorDataStream &obj) |
| Output friend for MsgStream. | |
| GAUDI_API std::ostream & | operator<< (std::ostream &s, const EventSelectorDataStream &obj) |
| Output friend for standard I/O. | |
| GAUDI_API MsgStream& operator<< | ( | MsgStream & | s, |
| const EventSelectorDataStream & | obj | ||
| ) |
Output friend for MsgStream.
Definition at line 27 of file EventSelectorDataStream.cpp.
{
s << "Stream:" << obj.name() << " Def:" << obj.definition();
return s;
}
| GAUDI_API std::ostream& operator<< | ( | std::ostream & | s, |
| const EventSelectorDataStream & | obj | ||
| ) |
Output friend for standard I/O.
Definition at line 33 of file EventSelectorDataStream.cpp.
{
s << "Stream:" << obj.name() << " Def:" << obj.definition();
return s;
}