File indexing completed on 2024-04-06 12:29:13
0001 #ifndef _Kinefit_SMATRIX_H_
0002 #define _Kinefit_SMATRIX_H_
0003
0004 #define SMATRIX_USE_CONSTEXPR
0005 #include <Math/SVector.h>
0006 #include <Math/SMatrix.h>
0007
0008 typedef ROOT::Math::SVector<double, 7> AlgebraicVector7;
0009 typedef ROOT::Math::SMatrix<double, 7, 7, ROOT::Math::MatRepSym<double, 7> > AlgebraicSymMatrix77;
0010 typedef ROOT::Math::SMatrix<double, 7, 7, ROOT::Math::MatRepStd<double, 7, 7> > AlgebraicMatrix77;
0011 typedef ROOT::Math::SMatrix<double, 6, 7, ROOT::Math::MatRepStd<double, 6, 7> > AlgebraicMatrix67;
0012 typedef ROOT::Math::SMatrix<double, 7, 6, ROOT::Math::MatRepStd<double, 7, 6> > AlgebraicMatrix76;
0013
0014 #endif