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

Go to the source code of this file.

Classes

class  Muon::STGC_RawData

Namespaces

namespace  Muon
 NRpcCablingAlg reads raw condition data and writes derived condition data to the condition store.

Functions

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

Function Documentation

◆ operator<<() [1/2]

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

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 & coll )

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}