CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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  {
10  typedef ROOT::Math::SMatrix<double,N,M> type;
11  };
12 }
13 #endif
ROOT::Math::SMatrix< double, N, M > type
Definition: Matrix.h:10