48 std::vector<float>::const_iterator itr;
49 std::vector<float>::const_iterator itr_end;
53 log << MSG::DEBUG <<
"m_triggerEnergies = {";
54 for(;itr != itr_end; ++itr) {
55 log << MSG::DEBUG << (*itr) <<
",";
57 log << MSG::DEBUG <<
"}" <<
endmsg;
61 log << MSG::DEBUG <<
"m_triggerTimes = {";
62 for(;itr != itr_end; ++itr) {
63 log << MSG::DEBUG << (*itr) <<
",";
65 log << MSG::DEBUG <<
"}" <<
endmsg;
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) <<
", ";