#include <GaudiKernel/MsgStream.h>
#include <CxxUtils/ArrayHelper.h>
#include <array>
#include <iostream>
#include <memory>
Go to the source code of this file.
◆ operator<<()
Definition at line 22 of file MdtMezzanineCard.cxx.
22 {
23 ostr <<
"MezzId: " <<
static_cast<int>(
map.id()) <<
", ";
24 ostr <<
"nTubeLayer: " <<
static_cast<int>(
map.numTubeLayers()) <<
", ";
25 ostr <<
"tdcToTubeMap: " <<
map.tdcToTubeMap() <<
", ";
26 ostr << "tubeToTdcMap: " << std::endl;
27 for (uint8_t lay =
map.numTubeLayers(); lay > 0; --lay) {
28 if (!(lay % 2))
29 ostr << " ";
30 for (uint8_t tube = 1;
tube <=
map.numTubesPerLayer(); ++
tube) {
32 ostr << std::setw(5)
33 <<
static_cast<int>(
map.tubeToTdcMap()[tubeNum]);
34 }
35 ostr << std::endl;
36 }
37 return ostr;
38}