/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DataFormats/MuonReco/interface/MuonPFIsolation.h
25 строк
1022 B
Cms Build
Clang-Format
03 июн 2019, 06:49
03 июн 2019, 06:49
ff00363
Код
Авторство
О чём код?
#ifndef MuonReco_MuonPFIsolation_h #define MuonReco_MuonPFIsolation_h namespace reco { struct MuonPFIsolation { float sumChargedHadronPt; //!< sum-pt of charged Hadron float sumChargedParticlePt; //!< sum-pt of charged Particles(inludes e/mu) float sumNeutralHadronEt; //!< sum pt of neutral hadrons float sumPhotonEt; //!< sum pt of PF photons float sumNeutralHadronEtHighThreshold; //!< sum pt of neutral hadrons with a higher threshold float sumPhotonEtHighThreshold; //!< sum pt of PF photons with a higher threshold float sumPUPt; //!< sum pt of charged Particles not from PV (for Pu corrections) MuonPFIsolation() : sumChargedHadronPt(0), sumChargedParticlePt(0), sumNeutralHadronEt(0), sumPhotonEt(0), sumNeutralHadronEtHighThreshold(0), sumPhotonEtHighThreshold(0), sumPUPt(0) {} }; } // namespace reco #endif