CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_6_2_7/src/DataFormats/Math/interface/Matrix.h

Go to the documentation of this file.
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