EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
EigenMatrixTypedefs.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file EigenMatrixTypedefs.h
1 #pragma once
2 
3 #include <Eigen/Dense>
4 
5 namespace genfit {
6  typedef double Precision;
7 
8  typedef Precision Scalar;
9 
10  typedef Eigen::Matrix<Precision, 3, 1> Vector3;
11  typedef Eigen::Matrix<Precision, 5, 1> Vector5;
12  typedef Eigen::Matrix<Precision, 6, 1> Vector6;
13  typedef Eigen::Matrix<Precision, 7, 1> Vector7;
14 
15  typedef Eigen::Matrix<Precision, 3, 3> Matrix3x3;
16  typedef Eigen::Matrix<Precision, 4, 4> Matrix4x4;
17  typedef Eigen::Matrix<Precision, 5, 5> Matrix5x5;
18  typedef Eigen::Matrix<Precision, 6, 6> Matrix6x6;
19  typedef Eigen::Matrix<Precision, 7, 7> Matrix7x7;
20 
21  typedef Eigen::Matrix<Precision, Eigen::Dynamic, 1> VectorDynamic;
22  typedef Eigen::Matrix<Precision, Eigen::Dynamic, Eigen::Dynamic> MatrixDynamic;
23 
29 }