Belle II Software development
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
19using 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}
Float_t m_matrixElement[c_nElements]
the matrix elements
static const size_t c_nElements
number of independent matrix elements
void print() const
print-out function for debugging purpose
STL namespace.