Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-02-07 14:23:52

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def HLTEgammaGenericQuadraticEtaFilter(*args, **kwargs):
0004   mod = cms.EDFilter('HLTEgammaGenericQuadraticEtaFilter',
0005     saveTags = cms.bool(True),
0006     candTag = cms.InputTag('hltEGIsolFilter'),
0007     varTag = cms.InputTag('hltEGIsol'),
0008     rhoTag = cms.InputTag(''),
0009     energyLowEdges = cms.vdouble(0),
0010     lessThan = cms.bool(True),
0011     useEt = cms.bool(True),
0012     useAbs = cms.bool(False),
0013     etaBoundaryEB12 = cms.double(1),
0014     etaBoundaryEE12 = cms.double(2),
0015     thrRegularEB1 = cms.vdouble(4),
0016     thrRegularEE1 = cms.vdouble(6),
0017     thrOverEEB1 = cms.vdouble(0.002),
0018     thrOverEEE1 = cms.vdouble(0.002),
0019     thrOverE2EB1 = cms.vdouble(0),
0020     thrOverE2EE1 = cms.vdouble(0),
0021     thrRegularEB2 = cms.vdouble(6),
0022     thrRegularEE2 = cms.vdouble(4),
0023     thrOverEEB2 = cms.vdouble(0.002),
0024     thrOverEEE2 = cms.vdouble(0.002),
0025     thrOverE2EB2 = cms.vdouble(0),
0026     thrOverE2EE2 = cms.vdouble(0),
0027     ncandcut = cms.int32(1),
0028     doRhoCorrection = cms.bool(False),
0029     rhoMax = cms.double(99999999),
0030     rhoScale = cms.double(1),
0031     effectiveAreas = cms.vdouble(
0032       0,
0033       0
0034     ),
0035     absEtaLowEdges = cms.vdouble(
0036       0,
0037       1.479
0038     ),
0039     l1EGCand = cms.InputTag('hltL1IsoRecoEcalCandidate'),
0040     mightGet = cms.optional.untracked.vstring
0041   )
0042   for a in args:
0043     mod.update_(a)
0044   mod.update_(kwargs)
0045   return mod