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