/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
PhysicsTools/Heppy/interface/AlphaT.h
26 строк
545 B
Cms Build
Clang-Format
31 май 2019, 14:09
31 май 2019, 14:09
c029a52
Код
Авторство
О чём код?
#ifndef PhysicsTools_Heppy_AlphaT_h #define PhysicsTools_Heppy_AlphaT_h #include <cmath> #include <numeric> #include <vector> /* AlphaT * * Calculates the AlphaT event variable for a given input jet collection * * * 08 Sept 2014 - Ported from ICF code (Mark Baber) */ namespace heppy { struct AlphaT { static double getAlphaT(const std::vector<double>& et, const std::vector<double>& px, const std::vector<double>& py); }; }; // namespace heppy #endif // AlphaT_h