#include <boost/cstdint.hpp>
#include <iostream>
Go to the source code of this file.
Classes | |
class | CSCRPCDigi |
Digi for RPC data coming thru RAT-ALCT-DDU. More... | |
Functions | |
std::ostream & | operator<< (std::ostream &o, const CSCRPCDigi &digi) |
std::ostream& operator<< | ( | std::ostream & | o, | |
const CSCRPCDigi & | digi | |||
) | [inline] |
Definition at line 54 of file CSCRPCDigi.h.
References CSCRPCDigi::getBXN(), CSCRPCDigi::getPad(), CSCRPCDigi::getRpc(), and CSCRPCDigi::getTbin().
00054 { 00055 return o << " RPC = " << digi.getRpc() << " Pad = "<< digi.getPad() 00056 << " Tbin = " << digi.getTbin() << " Bxn = " << digi.getBXN(); 00057 }