#include "DataFormats/L1CaloTrigger/interface/L1CaloMipQuietRegion.h"
Go to the source code of this file.
Functions | |
ostream & | operator<< (ostream &os, const L1CaloMipQuietRegion &rhs) |
ostream& operator<< | ( | ostream & | os, | |
const L1CaloMipQuietRegion & | rhs | |||
) |
Definition at line 43 of file L1CaloMipQuietRegion.cc.
References L1CaloMipQuietRegion::bx(), lat::endl(), L1CaloMipQuietRegion::gctEta(), L1CaloMipQuietRegion::gctPhi(), L1CaloMipQuietRegion::mip(), L1CaloMipQuietRegion::quiet(), L1CaloMipQuietRegion::rctCard(), L1CaloMipQuietRegion::rctCrate(), L1CaloMipQuietRegion::rctEta(), L1CaloMipQuietRegion::rctPhi(), and L1CaloMipQuietRegion::rctRegionIndex().
00044 { 00045 os <<"L1CaloMipQuietRegion:" 00046 << " MIP=" << rhs.mip() 00047 << " Quiet=" << rhs.quiet() << showbase << hex 00048 << "\n " 00049 << " RCT crate=" << rhs.rctCrate() 00050 << " RCT card=" << rhs.rctCard() 00051 << " RCT rgn=" << rhs.rctRegionIndex() 00052 << " RCT eta=" << rhs.rctEta() 00053 << " RCT phi=" << rhs.rctPhi() 00054 << "\n " 00055 << " GCT eta=" << rhs.gctEta() 00056 << " GCT phi=" << rhs.gctPhi() << dec << noshowbase 00057 << "\n BX=" << rhs.bx() 00058 << endl; 00059 return os; 00060 }