File indexing completed on 2023-05-05 02:46:59
0001 import FWCore.ParameterSet.Config as cms
0002
0003 hltL2MuonIsolations = cms.EDProducer('L2MuonIsolationProducer',
0004 StandAloneCollectionLabel = cms.InputTag('hltL2MuonCandidates'),
0005 ExtractorPSet = cms.PSet(
0006 DR_Veto_H = cms.double(0.1),
0007 Vertex_Constraint_Z = cms.bool(False),
0008 Threshold_H = cms.double(0.5),
0009 ComponentName = cms.string('CaloExtractor'),
0010 Threshold_E = cms.double(0.2),
0011 DR_Max = cms.double(1),
0012 DR_Veto_E = cms.double(0.07),
0013 Weight_E = cms.double(1.5),
0014 Vertex_Constraint_XY = cms.bool(False),
0015 DepositLabel = cms.untracked.string('EcalPlusHcal'),
0016 CaloTowerCollectionLabel = cms.InputTag('towerMaker'),
0017 Weight_H = cms.double(1)
0018 ),
0019 IsolatorPSet = cms.PSet(
0020 ConeSizesRel = cms.vdouble(0.3),
0021 EffAreaSFEndcap = cms.double(1),
0022 CutAbsoluteIso = cms.bool(True),
0023 AndOrCuts = cms.bool(True),
0024 RhoSrc = cms.InputTag('hltKT6CaloJetsForMuons', 'rho'),
0025 ConeSizes = cms.vdouble(0.3),
0026 ComponentName = cms.string('CutsIsolatorWithCorrection'),
0027 ReturnRelativeSum = cms.bool(False),
0028 RhoScaleBarrel = cms.double(1),
0029 EffAreaSFBarrel = cms.double(1),
0030 CutRelativeIso = cms.bool(False),
0031 EtaBounds = cms.vdouble(2.411),
0032 Thresholds = cms.vdouble(99999999),
0033 ReturnAbsoluteSum = cms.bool(True),
0034 EtaBoundsRel = cms.vdouble(2.411),
0035 ThresholdsRel = cms.vdouble(99999999),
0036 RhoScaleEndcap = cms.double(1),
0037 RhoMax = cms.double(99999999),
0038 UseRhoCorrection = cms.bool(True)
0039 ),
0040 WriteIsolatorFloat = cms.bool(False),
0041 mightGet = cms.optional.untracked.vstring
0042 )