File indexing completed on 2023-03-17 11:20:39
0001 import FWCore.ParameterSet.Config as cms
0002
0003
0004 from RecoMuon.MuonIsolationProducers.muIsoResultInputBlocks_cfi import *
0005 from RecoMuon.MuonIsolationProducers.muIsolatorBlocks_cfi import *
0006 muIsoResultM2T = cms.EDProducer("MuIsoTrackResultProducer",
0007 IsolatorByDepositR03,
0008 VetoPSet = cms.PSet(
0009 SelectAll = cms.bool(True)
0010 ),
0011 RemoveOtherVetos = cms.bool(True),
0012 InputMuIsoDeposits = cms.VPSet(cms.PSet(
0013 UnweightedInputTkDeps
0014 ),
0015 cms.PSet(
0016 UnweightedInputTowEcalDeps
0017 ),
0018 cms.PSet(
0019 UnweightedInputTowHcalDeps
0020 ))
0021 )
0022
0023
0024