File indexing completed on 2025-02-07 14:23:40
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def IsoPhotonEBSelectorAndSkim(*args, **kwargs):
0004 mod = cms.EDFilter('IsoPhotonEBSelectorAndSkim',
0005 src = cms.InputTag(''),
0006 rho = cms.InputTag('fixedGridRhoFastjetCentralCalo'),
0007 absEtaMin = cms.vdouble(
0008 0,
0009 1,
0010 1.479,
0011 2,
0012 2.2,
0013 2.3,
0014 2.4
0015 ),
0016 absEtaMax = cms.vdouble(
0017 1,
0018 1.479,
0019 2,
0020 2.2,
0021 2.3,
0022 2.4,
0023 5
0024 ),
0025 effectiveAreaValues = cms.vdouble(
0026 0.1703,
0027 0.1715,
0028 0.1213,
0029 0.123,
0030 0.1635,
0031 0.1937,
0032 0.2393
0033 ),
0034 phID = cms.PSet(
0035 full5x5_sigmaIEtaIEtaCut = cms.vdouble(
0036 0.011,
0037 -1
0038 ),
0039 hOverECut = cms.vdouble(
0040 0.1,
0041 -1
0042 ),
0043 relCombIsolationWithEACut = cms.vdouble(
0044 0.05,
0045 -1
0046 )
0047 ),
0048 filter = cms.bool(False),
0049 throwOnMissing = cms.untracked.bool(True),
0050 mightGet = cms.optional.untracked.vstring
0051 )
0052 for a in args:
0053 mod.update_(a)
0054 mod.update_(kwargs)
0055 return mod