Belle II Software  release-06-01-15
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 #include <iostream>
9 #include <string>
10 #include <framework/logging/Logger.h>
11 #include <ecl/dbobjects/ECLWaveformData.h>
12 
13 using namespace std;
15 {
16  string line;
17  for (size_t i = 0; i < c_nElements; ++ i) {
18  line += to_string(m_matrixElement[i]);
19  line += ' ';
20  }
21  B2INFO(line);
22 }
void print() const
print-out function for debugging purpose