#include "MuonRDO/RpcPad.h"
#include "GaudiKernel/MsgStream.h"
Go to the source code of this file.
|
| MsgStream & | operator<< (MsgStream &sl, const RpcPad &coll) |
| | Overload of << operator for MsgStream for debug output.
|
| std::ostream & | operator<< (std::ostream &sl, const RpcPad &coll) |
| | Overload of << operator for std::ostream for debug output.
|
◆ operator<<() [1/2]
| MsgStream & operator<< |
( |
MsgStream & | sl, |
|
|
const RpcPad & | coll ) |
Overload of << operator for MsgStream for debug output.
Definition at line 8 of file RpcPad.cxx.
9{
10 sl << "RpcPad: ";
12 sl <<
"status() = "<< coll.
status()<<
", ";
13 sl <<
"errorCode() = "<< coll.
errorCode()<<
", ";
14 sl <<
"onlineId() = "<< coll.
onlineId()<<
", ";
15 sl <<
"sector() = "<< coll.
sector()<<
", CoinMatrices = [";
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 RpcPad & | coll ) |
Overload of << operator for std::ostream for debug output.
Definition at line 23 of file RpcPad.cxx.
24{
25 sl << "RpcPad: ";
27 sl <<
"status() = "<< coll.
status()<<
", ";
28 sl <<
"errorCode() = "<< coll.
errorCode()<<
", ";
29 sl <<
"onlineId() = "<< coll.
onlineId()<<
", ";
30 sl <<
"sector() = "<< coll.
sector()<<
", CoinMatrices = [";
33 sl <<"]"<<std::endl;
34 return sl;
35}