00001 import FWCore.ParameterSet.Config as cms
00002
00003 L2MuonIsolations = cms.EDProducer("L2MuonIsolationProducer",
00004 StandAloneCollectionLabel = cms.InputTag("L2Muons","UpdatedAtVtx"),
00005 IsolatorPSet = cms.PSet(
00006 ComponentName = cms.string( "SimpleCutsIsolator" ),
00007 ConeSizes = cms.vdouble(0.24, 0.24, 0.24, 0.24, 0.24,
00008 0.24, 0.24, 0.24, 0.24, 0.24,
00009 0.24, 0.24, 0.24, 0.24, 0.24,
00010 0.24, 0.24, 0.24, 0.24, 0.24,
00011 0.24, 0.24, 0.24, 0.24, 0.24,
00012 0.24),
00013 Thresholds = cms.vdouble(5.5, 5.5, 5.9, 5.7, 5.1,
00014 4.9, 5.0, 5.0, 5.1, 5.0,
00015 4.8, 4.8, 4.7, 4.7, 3.5,
00016 3.1, 3.5, 3.9, 3.7, 3.7,
00017 3.5, 3.5, 3.2, 3.3, 3.4,
00018 3.4),
00019 EtaBounds = cms.vdouble(0.0435, 0.1305, 0.2175, 0.3045, 0.3915,
00020 0.4785, 0.5655, 0.6525, 0.7395, 0.8265,
00021 0.9135, 1.0005, 1.0875, 1.1745, 1.2615,
00022 1.3485, 1.4355, 1.5225, 1.6095, 1.6965,
00023 1.785, 1.88, 1.9865, 2.1075, 2.247,
00024 2.411)
00025 ),
00026
00027 ExtractorPSet = cms.PSet(
00028 DR_Veto_H = cms.double(0.1),
00029 Vertex_Constraint_Z = cms.bool(False),
00030 Threshold_H = cms.double(0.5),
00031 ComponentName = cms.string('CaloExtractor'),
00032 Threshold_E = cms.double(0.2),
00033 DR_Max = cms.double(1.0),
00034 DR_Veto_E = cms.double(0.07),
00035 Weight_E = cms.double(1.5),
00036 Vertex_Constraint_XY = cms.bool(False),
00037 DepositLabel = cms.untracked.string('EcalPlusHcal'),
00038 CaloTowerCollectionLabel = cms.InputTag("towerMaker"),
00039 Weight_H = cms.double(1.0)
00040 )
00041 )
00042
00043
00044