ATLAS Offline Software
Loading...
Searching...
No Matches
ShowRequest.h File Reference
#include "GaudiKernel/MsgStream.h"
#include <iostream>
#include <sstream>
Include dependency graph for ShowRequest.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  ShowRequest< Type >

Functions

template<class Type>
std::ostream & operator<< (std::ostream &stream, const ShowRequest< Type > &print)
template<class Type>
MsgStream & operator<< (MsgStream &stream, const ShowRequest< Type > &print)

Function Documentation

◆ operator<<() [1/2]

template<class Type>
MsgStream & operator<< ( MsgStream & stream,
const ShowRequest< Type > & print )

Definition at line 34 of file ShowRequest.h.

34 {
35 std::ostringstream display;
36 print.m_object->Print(display, print.m_detail);
37 stream << display.str();
38 return stream;
39}
void print(char *figname, TCanvas *c1)
display
Definition pyroot.py:42

◆ operator<<() [2/2]

template<class Type>
std::ostream & operator<< ( std::ostream & stream,
const ShowRequest< Type > & print )

Definition at line 27 of file ShowRequest.h.

27 {
28 std::ostringstream display;
29 print.m_object->Print(display, print.m_detail);
30 stream << display.str();
31 return stream;
32}