Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003
00004
00005 isoDeposits = cms.EDProducer(
00006 "CandIsoDepositProducer",
00007 src = cms.InputTag(""),
00008 MultipleDepositsFlag = cms.bool(False),
00009 trackType = cms.string('candidate'),
00010 ExtractorPSet = cms.PSet(
00011 Diff_z = cms.double(99999.99),
00012 ComponentName = cms.string('CandViewExtractor'),
00013 DR_Max = cms.double(1.0),
00014 Diff_r = cms.double(99999.99),
00015 inputCandView = cms.InputTag(""),
00016 DR_Veto = cms.double(1e-05),
00017 DepositLabel = cms.untracked.string('')
00018 )
00019 )