36 std::vector<float>::const_iterator itr;
37 std::vector<float>::const_iterator itr_end;
41 log << MSG::DEBUG <<
"m_triggerEnergies = {";
42 for(;itr != itr_end; ++itr) {
43 log << MSG::DEBUG << (*itr) <<
",";
45 log << MSG::DEBUG <<
"}" <<
endmsg;
49 log << MSG::DEBUG <<
"m_triggerTimes = {";
50 for(;itr != itr_end; ++itr) {
51 log << MSG::DEBUG << (*itr) <<
",";
53 log << MSG::DEBUG <<
"}" <<
endmsg;
58 std::stringstream sstream;
59 std::vector<float> counterValues;
60 std::vector<float>::const_iterator itr;
61 std::vector<float>::const_iterator itr_end;
64 itr = counterValues.begin();
65 itr_end = counterValues.end();
66 sstream <<
"m_triggerEnergies = {";
67 for(;itr != itr_end; ++itr) {
68 sstream << (*itr) <<
",";
73 itr = counterValues.begin();
74 itr_end = counterValues.end();
75 sstream <<
"m_triggerTimes = {";
76 for(;itr != itr_end; ++itr) {
77 sstream << (*itr) <<
", ";