ATLAS Offline Software
Loading...
Searching...
No Matches
RpcCoinMatrix.h File Reference
#include "AthContainers/DataVector.h"
#include "MuonRDO/RpcFiredChannel.h"
#include "Identifier/Identifier.h"
Include dependency graph for RpcCoinMatrix.h:

Go to the source code of this file.

Classes

class  RpcCoinMatrix

Functions

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

Function Documentation

◆ operator<<() [1/2]

MsgStream & operator<< ( MsgStream & sl,
const RpcCoinMatrix & coll )

Overload of << operator for MsgStream for debug output.

Definition at line 8 of file RpcCoinMatrix.cxx.

9{
10 sl << "RpcCoinMatrix: "<<", ";
11 sl << "identify() = "<< coll.identify().getString()<<", ";
12 sl << "onlineId() = "<< coll.onlineId()<<", ";
13 sl << "crc() = "<< coll.crc()<<", ";
14 sl << "fel1Id() = "<< coll.fel1Id()<<", ";
15 sl << "febcId() = "<< coll.febcId()<<", ";
16 for (const RpcFiredChannel* p : coll)
17 sl << *p <<", ";
18 sl<<"]"<<std::endl;
19 return sl;
20}
std::string getString() const
Provide a string form of the identifier - hexadecimal.
Identifier identify() const
ubit16 crc() const
ubit16 fel1Id() const
ubit16 onlineId() const
ubit16 febcId() const

◆ operator<<() [2/2]

std::ostream & operator<< ( std::ostream & sl,
const RpcCoinMatrix & coll )

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

Definition at line 23 of file RpcCoinMatrix.cxx.

24{
25 sl << "RpcCoinMatrix: "<<", ";
26 sl << "identify() = "<< coll.identify().getString()<<", ";
27 sl << "onlineId() = "<< coll.onlineId()<<", ";
28 sl << "crc() = "<< coll.crc()<<", ";
29 sl << "fel1Id() = "<< coll.fel1Id()<<", ";
30 sl << "febcId() = "<< coll.febcId()<<", ";
31 for (const RpcFiredChannel* p : coll)
32 sl << *p <<", ";
33 sl<<"]"<<std::endl;
34 return sl;
35}