Belle II Software development
Matrix.h
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#pragma once
9
10// #include <Eigen/Core>
11// namespace Belle2 {
12// namespace TrackFindingCDC {
13// template <class T, int M, int N>
14// using Matrix = Eigen::Matrix<T, M, N>;
15// }
16// }
17
18#include <tracking/trackFindingCDC/numerics/PlainMatrix.h>
19namespace Belle2 {
24 namespace TrackFindingCDC {
25 template <class T, int M, int N>
26 using Matrix = PlainMatrix<T, M, N>;
27 }
29}
Abstract base class for different kinds of events.