29 std::vector<float>::const_iterator itr;
30 std::vector<float>::const_iterator itr_end;
34 log << MSG::DEBUG <<
"m_triggerEnergies = {";
35 for(;itr != itr_end; ++itr) {
36 log << MSG::DEBUG << (*itr) <<
",";
38 log << MSG::DEBUG <<
"}\n";
42 log << MSG::DEBUG <<
"m_triggerTimes = {";
43 for(;itr != itr_end; ++itr) {
44 log << MSG::DEBUG << (*itr) <<
",";
46 log << MSG::DEBUG <<
"}" <<
endmsg;
51 std::stringstream sstream;
52 std::vector<float> counterValues;
53 std::vector<float>::const_iterator itr;
54 std::vector<float>::const_iterator itr_end;
57 itr = counterValues.begin();
58 itr_end = counterValues.end();
59 sstream <<
"m_triggerEnergies = {";
60 for(;itr != itr_end; ++itr) {
61 sstream << (*itr) <<
",";
66 itr = counterValues.begin();
67 itr_end = counterValues.end();
68 sstream <<
"m_triggerTimes = {";
69 for(;itr != itr_end; ++itr) {
70 sstream << (*itr) <<
", ";