ATLAS Offline Software
Loading...
Searching...
No Matches
MM_RawData.cxx File Reference
#include "MuonRDO/MM_RawData.h"
#include "GaudiKernel/MsgStream.h"
Include dependency graph for MM_RawData.cxx:

Go to the source code of this file.

Functions

MsgStream & operator<< (MsgStream &sl, const Muon::MM_RawData &data)
 Overload of << operator for MsgStream for debug output.
std::ostream & operator<< (std::ostream &sl, const Muon::MM_RawData &data)
 Overload of << operator for std::ostream for debug output.

Function Documentation

◆ operator<<() [1/2]

MsgStream & operator<< ( MsgStream & sl,
const Muon::MM_RawData & data )

Overload of << operator for MsgStream for debug output.

Definition at line 8 of file MM_RawData.cxx.

9{
10 sl << "MM_RawData ("<< &data <<") "
11 << ", Strip ID=" << data.identify();
12 return sl;
13}
char data[hepevt_bytes_allocation_ATLAS]
Definition HepEvt.cxx:11

◆ operator<<() [2/2]

std::ostream & operator<< ( std::ostream & sl,
const Muon::MM_RawData & data )

Overload of << operator for std::ostream for debug output.

Definition at line 16 of file MM_RawData.cxx.

17{
18 sl << "MM_RawData "
19 << ", Strip ID=" << data.identify();
20 return sl;
21}