/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DataFormats/Math/interface/Matrix.h
12 строк
281 B
Cms Build
Clang-Format
11 июн 2019, 11:29
11 июн 2019, 11:29
146bc98
Код
Авторство
О чём код?
#ifndef DataFormats_Math_Matrix #define DataFormats_Math_Matrix #include "Math/SMatrix.h" #include "Math/SVector.h" namespace math { template <unsigned int N, unsigned int M> struct Matrix { typedef ROOT::Math::SMatrix<double, N, M> type; }; } // namespace math #endif