57 std::vector<float>::const_iterator itr;
58 std::vector<float>::const_iterator itr_end;
62 log << MSG::DEBUG <<
"m_triggerEnergies = {";
63 for(;itr != itr_end; ++itr) {
64 log << MSG::DEBUG << (*itr) <<
",";
66 log << MSG::DEBUG <<
"}" <<
endmsg;
70 log << MSG::DEBUG <<
"m_triggerTimes = {";
71 for(;itr != itr_end; ++itr) {
72 log << MSG::DEBUG << (*itr) <<
",";
74 log << MSG::DEBUG <<
"}" <<
endmsg;
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();