1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
import FWCore.ParameterSet.Config as cms
from PhysicsTools.NanoAOD.common_cff import *
##################### Tables for final output and docs ##########################
hltPhotonTable = cms.EDProducer("HLTPhotonTableProducer",
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'),
)
)
|