Belle II Software  release-05-01-25
ECLWaveformData.cc
1 #include <iostream>
2 #include <string>
3 #include <framework/logging/Logger.h>
4 #include <ecl/dbobjects/ECLWaveformData.h>
5 
6 using namespace std;
8 {
9  string line;
10  for (size_t i = 0; i < c_nElements; ++ i) {
11  line += to_string(m_matrixElement[i]);
12  line += ' ';
13  }
14  B2INFO(line);
15 }
Belle2::ECLWaveformData::print
void print() const
print-out function for debugging purpose
Definition: ECLWaveformData.cc:7