/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
HLTrigger/NGTScouting/python/hltPhotons_cfi.py
27 строк
2 KB
Marco Musich
set skipNonExistingSrc to True in all NGT scouting tables and remove hltTriggerAcceptFilter
25 июн 2025, 21:58
25 июн 2025, 21:58
1f58874
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms from PhysicsTools.NanoAOD.common_cff import * ##################### Tables for final output and docs ########################## hltPhotonTable = cms.EDProducer("HLTPhotonTableProducer", skipNonExistingSrc = cms.bool(True), src = cms.InputTag("hltEgammaPacker"), cut = cms.string(""), name = cms.string("hltPhoton"), doc = cms.string("HLT Photon information"), singleton = cms.bool(False), extension = cms.bool(False), variables = cms.PSet( pt = Var('pt', 'float', precision=10, doc='super-cluster (SC) pt'), eta = Var('eta', 'float', precision=10, doc='SC eta'), phi = Var('phi', 'float', precision=10, doc='SC phi'), m = Var('m', 'float', precision=10, doc='SC mass'), sigmaIetaIeta = Var('sigmaIetaIeta', 'float', precision=10, doc='sigmaIetaIeta of the SC, calculated with full 5x5 region, noise cleaned'), hOverE = Var('hOverE', 'float', precision=10, doc='Energy in HCAL / Energy in ECAL'), ecalIso = Var('ecalIso', 'float', precision=10, doc='Isolation of SC in the ECAL'), hcalIso = Var('hcalIso', 'float', precision=10, doc='Isolation of SC in the HCAL'), r9 = Var('r9', 'float', precision=10, doc='Photon SC r9 as defined in https://twiki.cern.ch/twiki/bin/view/CMSPublic/SWGuideEgammaShowerShape'), sMin = Var('sMin', 'float', precision=10, doc='minor moment of the SC shower shape'), sMaj = Var('sMaj', 'float', precision=10, doc='major moment of the SC shower shape'), seedId = Var('seedId', 'int', doc='ECAL ID of the SC seed'), ) )