00001 #ifndef DataFormats_Math_Matrix 00002 #define DataFormats_Math_Matrix 00003 #include "Math/SMatrix.h" 00004 #include "Math/SVector.h" 00005 00006 namespace math { 00007 template<unsigned int N, unsigned int M> 00008 struct Matrix 00009 { 00010 typedef ROOT::Math::SMatrix<double,N,M> type; 00011 }; 00012 } 00013 #endif