Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003
00004 from RecoMuon.MuonIsolationProducers.muIsoResultInputBlocks_cfi import *
00005 from RecoMuon.MuonIsolationProducers.muIsolatorBlocks_cfi import *
00006 muIsoResultM2T = cms.EDProducer("MuIsoTrackResultProducer",
00007 IsolatorByDepositR03,
00008 VetoPSet = cms.PSet(
00009 SelectAll = cms.bool(True)
00010 ),
00011 RemoveOtherVetos = cms.bool(True),
00012 InputMuIsoDeposits = cms.VPSet(cms.PSet(
00013 UnweightedInputTkDeps
00014 ),
00015 cms.PSet(
00016 UnweightedInputTowEcalDeps
00017 ),
00018 cms.PSet(
00019 UnweightedInputTowHcalDeps
00020 ))
00021 )
00022
00023
00024