ATLAS Offline Software
Classes | Functions
IOVCallbackError.h File Reference
#include "GaudiKernel/MsgStream.h"
#include <exception>
#include <string>
#include <iostream>
Include dependency graph for IOVCallbackError.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  IOVCallbackError
 

Functions

std::ostream & operator<< (std::ostream &os, const IOVCallbackError &ge)
 overloaded printout to std::ostream More...
 
std::ostream & operator<< (std::ostream &os, const IOVCallbackError *pge)
 
MsgStream & operator<< (MsgStream &os, const IOVCallbackError &ge)
 overloaded printout to MsgStream
More...
 
MsgStream & operator<< (MsgStream &os, const IOVCallbackError *pge)
 overloaded printout to MsgStream
More...
 

Function Documentation

◆ operator<<() [1/4]

MsgStream& operator<< ( MsgStream &  os,
const IOVCallbackError ge 
)

overloaded printout to MsgStream

Definition at line 61 of file IOVCallbackError.h.

61  {
62  return ge.printOut( os );
63 }

◆ operator<<() [2/4]

MsgStream& operator<< ( MsgStream &  os,
const IOVCallbackError pge 
)

overloaded printout to MsgStream

Definition at line 65 of file IOVCallbackError.h.

65  {
66  return (0 == pge) ?
67  ( os << " IOVCallbackError* points to NULL!" ) : ( os << *pge );
68 }

◆ operator<<() [3/4]

std::ostream& operator<< ( std::ostream &  os,
const IOVCallbackError ge 
)

overloaded printout to std::ostream

Definition at line 53 of file IOVCallbackError.h.

53  {
54  return ge.printOut( os );
55 }

◆ operator<<() [4/4]

std::ostream& operator<< ( std::ostream &  os,
const IOVCallbackError pge 
)

Definition at line 56 of file IOVCallbackError.h.

57 { return (0 == pge) ?
58  ( os << " IOVCallbackError* points to NULL!" ) : ( os << *pge ); }
ReadFromCoolCompare.os
os
Definition: ReadFromCoolCompare.py:231
IOVCallbackError::printOut
virtual std::ostream & printOut(std::ostream &os=std::cerr) const
Definition: IOVCallbackError.h:35