/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DataFormats/Math/interface/LorentzVector.h
33 строки
2 KB
Andrea Bocci
Use #include <...> for external headers
04 дек 2024, 20:37
Не верифицирован
04 дек 2024, 20:37
24e374e
Код
Авторство
О чём код?
#ifndef Math_LorentzVector_h #define Math_LorentzVector_h #include <Math/PtEtaPhiE4D.h> #include <Math/PtEtaPhiM4D.h> #include <Math/LorentzVector.h> namespace math { /// Lorentz vector with cartesian internal representation typedef ROOT::Math::LorentzVector<ROOT::Math::PtEtaPhiM4D<double> > PtEtaPhiMLorentzVectorD; /// Lorentz vector with cartesian internal representation typedef ROOT::Math::LorentzVector<ROOT::Math::PtEtaPhiE4D<double> > PtEtaPhiELorentzVectorD; /// Lorentz vector with cylindrical internal representation using pseudorapidity typedef ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<double> > XYZTLorentzVectorD; /// Lorentz vector with cylindrical internal representation using pseudorapidity /// Lorentz vector with cartesian internal representation typedef ROOT::Math::LorentzVector<ROOT::Math::PtEtaPhiM4D<float> > PtEtaPhiMLorentzVectorF; /// Lorentz vector with cartesian internal representation typedef ROOT::Math::LorentzVector<ROOT::Math::PtEtaPhiE4D<float> > PtEtaPhiELorentzVectorF; /// Lorentz vector with cylindrical internal representation using pseudorapidity typedef ROOT::Math::LorentzVector<ROOT::Math::PxPyPzE4D<float> > XYZTLorentzVectorF; /// Lorentz vector with cartesian internal representation typedef PtEtaPhiMLorentzVectorD PtEtaPhiMLorentzVector; /// Lorentz vector with cartesian internal representation typedef PtEtaPhiELorentzVectorD PtEtaPhiELorentzVector; /// Lorentz vector with cylindrical internal representation using pseudorapidity typedef XYZTLorentzVectorD XYZTLorentzVector; } // namespace math #endif