#include "MuonRDO/RpcCoinMatrix.h"
#include "GaudiKernel/MsgStream.h"
Go to the source code of this file.
|
| 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.
|
◆ 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: "<<", ";
12 sl <<
"onlineId() = "<< coll.
onlineId()<<
", ";
13 sl <<
"crc() = "<< coll.
crc()<<
", ";
14 sl <<
"fel1Id() = "<< coll.
fel1Id()<<
", ";
15 sl <<
"febcId() = "<< coll.
febcId()<<
", ";
18 sl<<"]"<<std::endl;
19 return sl;
20}
std::string getString() const
Provide a string form of the identifier - hexadecimal.
Identifier identify() 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: "<<", ";
27 sl <<
"onlineId() = "<< coll.
onlineId()<<
", ";
28 sl <<
"crc() = "<< coll.
crc()<<
", ";
29 sl <<
"fel1Id() = "<< coll.
fel1Id()<<
", ";
30 sl <<
"febcId() = "<< coll.
febcId()<<
", ";
33 sl<<"]"<<std::endl;
34 return sl;
35}