#include <iostream>
#include <set>
#include <vector>
#include "RegSelLUT/ZRObject.h"
#include "RegSelLUT/RegSelModule.h"
Go to the source code of this file.
◆ operator<<()
| std::ostream & operator<< |
( |
std::ostream & | s, |
|
|
const RegSelROB & | r ) |
|
inline |
Definition at line 64 of file RegSelROB.h.
64 {
65 return s <<
"[ robID 0x" << std::hex <<
r.robID() << std::dec
66 <<
"\tr: " <<
r.rMin() <<
" " <<
r.rMax()
67 <<
"\tz: " <<
r.zMin() <<
" " <<
r.zMax()
68 <<
"\tphi: " <<
r.phiMin() <<
" " <<
r.phiMax()
69 <<
"\teta: " <<
r.etaMin() <<
" " <<
r.etaMax()
70 <<
"\tsize " <<
r.size() <<
" ]";
71
72}