/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DataFormats/MuonReco/interface/MuonIsolation.h
29 строк
1011 B
Shahzad Malik Muzaffar
[RECONSTRUCTION] Changes suggested by new llvm18 clang-format
05 сен 2024, 17:05
05 сен 2024, 17:05
a09aaae
Код
Авторство
О чём код?
#ifndef MuonReco_MuonIsolation_h #define MuonReco_MuonIsolation_h namespace reco { struct MuonIsolation { float sumPt; //!< sum-pt of tracks float emEt; //!< ecal sum-Et float hadEt; //!< hcal sum-Et float hoEt; //!< ho sum-Et int nTracks; //!< number of tracks in the cone (excluding veto region) int nJets; //!< number of jets in the cone float trackerVetoPt; //!< (sum-)pt inside the veto region in r-phi float emVetoEt; //!< ecal sum-et in the veto region in r-phi float hadVetoEt; //!< hcal sum-et in the veto region in r-phi float hoVetoEt; //!< ho sum-et in the veto region in r-phi MuonIsolation() : sumPt(0), emEt(0), hadEt(0), hoEt(0), nTracks(0), nJets(0), trackerVetoPt(0), emVetoEt(0), hadVetoEt(0), hoVetoEt(0) {} }; } // namespace reco #endif