CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/CommonTools/ParticleFlow/python/Isolation/isoDeposits_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # template isodeposit producer
00004 # for now, used both for electrons and musons, but can be specialised
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), #(0.2)
00012     ComponentName = cms.string('CandViewExtractor'),
00013     DR_Max = cms.double(1.0),
00014     Diff_r = cms.double(99999.99), #(0.1)
00015     inputCandView = cms.InputTag(""),
00016     DR_Veto = cms.double(1e-05),
00017     DepositLabel = cms.untracked.string('')
00018     )
00019     )