Belle II Software  release-08-01-10
ECLWaveformData.cc
1 /**************************************************************************
2  * basf2 (Belle II Analysis Software Framework) *
3  * Author: The Belle II Collaboration *
4  * *
5  * See git log for contributors and copyright holders. *
6  * This file is licensed under LGPL-3.0, see LICENSE.md. *
7  **************************************************************************/
8 
9 /* Own header. */
10 #include <ecl/dbobjects/ECLWaveformData.h>
11 
12 /* Basf2 headers. */
13 #include <framework/logging/Logger.h>
14 
15 /* C++ headers. */
16 #include <iostream>
17 #include <string>
18 
19 using namespace std;
20 
22 {
23  string line;
24  for (size_t i = 0; i < c_nElements; ++ i) {
25  line += to_string(m_matrixElement[i]);
26  line += ' ';
27  }
28  B2INFO(line);
29 }
void print() const
print-out function for debugging purpose