CMS 3D CMS Logo

Matrix.h
Go to the documentation of this file.
1 #ifndef DataFormats_Math_Matrix
2 #define DataFormats_Math_Matrix
3 #include "Math/SMatrix.h"
4 #include "Math/SVector.h"
5 
6 namespace math {
7  template <unsigned int N, unsigned int M>
8  struct Matrix {
9  typedef ROOT::Math::SMatrix<double, N, M> type;
10  };
11 } // namespace math
12 #endif
Definition: Error.h:15
ROOT::Math::SMatrix< double, N, M > type
Definition: Matrix.h:9