/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CondFormats/SiPixelTransient/interface/SiPixelUtils.h
22 строки
1 KB
Ernesto Migliore
Fix logic to check presence of a big pixel in Ph2 IT
24 апр 2024, 18:00
24 апр 2024, 18:00
7b84dbd
Код
Авторство
О чём код?
#ifndef CondFormats_SiPixelTransient_SiPixelUtils_h #define CondFormats_SiPixelTransient_SiPixelUtils_h namespace siPixelUtils { float generic_position_formula(int size, //!< Size of this projection. int q_f, //!< Charge in the first pixel. int q_l, //!< Charge in the last pixel. float upper_edge_first_pix, //!< As the name says. float lower_edge_last_pix, //!< As the name says. float lorentz_shift, //!< L-width float theThickness, //detector thickness float cot_angle, //!< cot of alpha_ or beta_ float pitch, //!< thePitchX or thePitchY float pitchfraction_first, //!< true if the first is big float pitchfraction_last, //!< true if the last is big float eff_charge_cut_low, //!< Use edge if > W_eff (in pix) &&& float eff_charge_cut_high, //!< Use edge if < W_eff (in pix) &&& float size_cut //!< Use edge when size == cuts ); } // namespace siPixelUtils #endif