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

Go to the source code of this file.

Functions

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

Function Documentation

◆ operator<<() [1/2]

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

Overload of << operator for MsgStream for debug output.

Definition at line 30 of file STGC_RawData.cxx.

31{
32 sl << "STGC_RawData ("<< &data <<") "
33 << ", Strip ID=" << data.identify();
34 return sl;
35}
char data[hepevt_bytes_allocation_ATLAS]
Definition HepEvt.cxx:11

◆ operator<<() [2/2]

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

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

Definition at line 37 of file STGC_RawData.cxx.

38{
39 sl << "STGC_RawData ("<< &data <<") "
40 << ", Strip ID=" << data.identify();
41 return sl;
42}