#include "AthenaKernel/CLASS_DEF.h"
#include "GaudiKernel/MsgStream.h"
#include <vector>
Go to the source code of this file.
◆ operator<<()
Helper operator for printing the object.
Definition at line 96 of file TrigT2MbtsBits.cxx.
97 return (
m <<
str(trigT2MbtsBits));
◆ str()
Helper function for printing the object.
Definition at line 69 of file TrigT2MbtsBits.cxx.
70 std::stringstream sstream;
71 std::vector<float> counterValues;
72 std::vector<float>::const_iterator itr;
73 std::vector<float>::const_iterator itr_end;
76 itr = counterValues.begin();
77 itr_end = counterValues.end();
78 sstream <<
"m_triggerEnergies = {";
79 for(;itr != itr_end; ++itr) {
80 sstream << (*itr) <<
",";
82 sstream <<
"}" << std::endl;
85 itr = counterValues.begin();
86 itr_end = counterValues.end();
87 sstream <<
"m_triggerTimes = {";
88 for(;itr != itr_end; ++itr) {
89 sstream << (*itr) <<
", ";