24 std::cout <<
"triggerEnergies = { ";
26 std::cout <<
x <<
" ";
28 std::cout <<
" }" << std::endl;
31 std::cout <<
x <<
" ";
33 std::cout <<
" }" << std::endl;
39 std::stringstream sstream;
40 std::vector<float> counterValues;
41 std::vector<float>::const_iterator itr;
42 std::vector<float>::const_iterator itr_end;
45 itr = counterValues.begin();
46 itr_end = counterValues.end();
47 sstream <<
"triggerEnergies = { ";
48 for(;itr != itr_end; ++itr) {
49 sstream << (*itr) <<
" ";
51 sstream <<
" }" << std::endl;
54 itr = counterValues.begin();
55 itr_end = counterValues.end();
56 sstream <<
"triggerTimes = { ";
57 for(;itr != itr_end; ++itr) {
58 sstream << (*itr) <<
" ";
66 MsgStream&
operator<< (MsgStream&
m,
const TrigT2MbtsBits_v1& trigT2MbtsBits) {
67 return (
m <<
str(trigT2MbtsBits));