Matrix

Macros

Line Code
1 2 3 4 5 6 7 8 9 10 11 12
#ifndef DataFormats_Math_Matrix
#define DataFormats_Math_Matrix
#include "Math/SMatrix.h"
#include "Math/SVector.h"

namespace math {
  template <unsigned int N, unsigned int M>
  struct Matrix {
    typedef ROOT::Math::SMatrix<double, N, M> type;
  };
}  // namespace math
#endif