File indexing completed on 2025-06-04 22:36:16
0001 import FWCore.ParameterSet.Config as cms
0002 from PhysicsTools.NanoAOD.common_cff import *
0003
0004
0005 hltPhotonTable = cms.EDProducer("HLTPhotonTableProducer",
0006 src = cms.InputTag("hltEgammaPacker"),
0007 cut = cms.string(""),
0008 name = cms.string("hltPhoton"),
0009 doc = cms.string("HLT Photon information"),
0010 singleton = cms.bool(False),
0011 extension = cms.bool(False),
0012 variables = cms.PSet(
0013 pt = Var('pt', 'float', precision=10, doc='super-cluster (SC) pt'),
0014 eta = Var('eta', 'float', precision=10, doc='SC eta'),
0015 phi = Var('phi', 'float', precision=10, doc='SC phi'),
0016 m = Var('m', 'float', precision=10, doc='SC mass'),
0017 sigmaIetaIeta = Var('sigmaIetaIeta', 'float', precision=10, doc='sigmaIetaIeta of the SC, calculated with full 5x5 region, noise cleaned'),
0018 hOverE = Var('hOverE', 'float', precision=10, doc='Energy in HCAL / Energy in ECAL'),
0019 ecalIso = Var('ecalIso', 'float', precision=10, doc='Isolation of SC in the ECAL'),
0020 hcalIso = Var('hcalIso', 'float', precision=10, doc='Isolation of SC in the HCAL'),
0021 r9 = Var('r9', 'float', precision=10, doc='Photon SC r9 as defined in https://twiki.cern.ch/twiki/bin/view/CMSPublic/SWGuideEgammaShowerShape'),
0022 sMin = Var('sMin', 'float', precision=10, doc='minor moment of the SC shower shape'),
0023 sMaj = Var('sMaj', 'float', precision=10, doc='major moment of the SC shower shape'),
0024 seedId = Var('seedId', 'int', doc='ECAL ID of the SC seed'),
0025 )
0026 )