File indexing completed on 2025-07-03 00:42:28
0001 import FWCore.ParameterSet.Config as cms
0002 from PhysicsTools.NanoAOD.common_cff import *
0003
0004
0005 hltElectronTable = cms.EDProducer("HLTElectronTableProducer",
0006 skipNonExistingSrc = cms.bool(True),
0007 src = cms.InputTag("hltEgammaPacker"),
0008 cut = cms.string(""),
0009 name = cms.string("hltElectron"),
0010 doc = cms.string("HLT Electron information"),
0011 singleton = cms.bool(False),
0012 extension = cms.bool(False),
0013 variables = cms.PSet(
0014 pt = Var('pt', 'float', precision=10, doc='super-cluster (SC) pt'),
0015 eta = Var('eta', 'float', precision=10, doc='SC eta'),
0016 phi = Var('phi', 'float', precision=10, doc='SC phi'),
0017 m = Var('m', 'float', precision=10, doc='SC mass'),
0018 dEtaIn = Var('dEtaIn', 'float', precision=10, doc='#Delta#eta(SC seed, track pixel seed)'),
0019 dPhiIn = Var('dPhiIn', 'float', precision=10, doc='#Delta#phi(SC seed, track pixel seed)'),
0020 sigmaIetaIeta = Var('sigmaIetaIeta', 'float', precision=10, doc='sigmaIetaIeta of the SC, calculated with full 5x5 region, noise cleaned'),
0021 hOverE = Var('hOverE', 'float', precision=10, doc='Energy in HCAL / Energy in ECAL'),
0022 ooEMOop = Var('ooEMOop', 'float', precision=10, doc='1/E(SC) - 1/p(track momentum)'),
0023 missingHits = Var('missingHits', 'int', doc='missing hits in the tracker'),
0024 ecalIso = Var('ecalIso', 'float', precision=10, doc='Isolation of SC in the ECAL'),
0025 hcalIso = Var('hcalIso', 'float', precision=10, doc='Isolation of SC in the HCAL'),
0026 trackIso = Var('trackIso', 'float', precision=10, doc='Isolation of electron track in the tracker'),
0027 r9 = Var('r9', 'float', precision=10, doc='ELectron SC r9 as defined in https://twiki.cern.ch/twiki/bin/view/CMSPublic/SWGuideEgammaShowerShape'),
0028 sMin = Var('sMin', 'float', precision=10, doc='minor moment of the SC shower shape'),
0029 sMaj = Var('sMaj', 'float', precision=10, doc='major moment of the SC shower shape'),
0030 seedId = Var('seedId', 'int', doc='ECAL ID of the SC seed'),
0031 )
0032 )