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

Go to the source code of this file.

Classes

class  RpcFiredChannel

Functions

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

Function Documentation

◆ operator<<() [1/2]

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

Overload of << operator for MsgStream for debug output.

Definition at line 31 of file RpcFiredChannel.cxx.

32 {
33 sl << "RpcFiredChannel: "<<", ";
34 sl << "bcid() = "<< coll.bcid()<<", ";
35 sl << "time() = "<< coll.time()<<", ";
36 sl << "ijk() = "<< coll.ijk()<<", ";
37 sl << "channel() = "<< coll.channel()<<", ";
38 sl << "ovl() = "<< coll.ovl()<<", ";
39 sl << "thr() = "<< coll.thr()<<std::endl;
40 return sl;
41 }
ubit16 bcid() const
ubit16 thr() const
ubit16 channel() const
ubit16 ovl() const
ubit16 ijk() const
ubit16 time() const

◆ operator<<() [2/2]

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

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

Definition at line 44 of file RpcFiredChannel.cxx.

45 {
46 sl << "RpcFiredChannel: "<<", ";
47 sl << "bcid() = "<< coll.bcid()<<", ";
48 sl << "time() = "<< coll.time()<<", ";
49 sl << "ijk() = "<< coll.ijk()<<", ";
50 sl << "channel() = "<< coll.channel()<<", ";
51 sl << "ovl() = "<< coll.ovl()<<", ";
52 sl << "thr() = "<< coll.thr()<<std::endl;
53 return sl;
54 }