Go to the source code of this file.
◆ operator<<()
std::ostream& operator<< |
( |
std::ostream & |
os, |
|
|
const CSCCFEBData & |
data |
|
) |
| |
Definition at line 311 of file CSCCFEBData.cc.
312 os <<
"printing CFEB data sample by sample " << std::endl;
313 for (
unsigned ilayer = 1; ilayer <= 6; ++ilayer) {
314 for (
unsigned channel = 1; channel <= 16; ++channel) {
315 unsigned strip = channel +
data.boardNumber_ * 16;
316 os <<
"Strip " <<
strip <<
" ";
317 for (
unsigned timeBin = 0; timeBin <
data.nTimeSamples(); ++timeBin) {
318 os <<
data.adcCounts(ilayer, channel, timeBin) <<
" ";
References data, and digitizers_cfi::strip.