CMS 3D CMS Logo

CandIsolatorFromDeposits_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 hltMuPFSumDRIsoValueCharged03 = cms.EDProducer("CandIsolatorFromDeposits",
4  deposits = cms.VPSet(
5  cms.PSet(
6  src = cms.InputTag("ISODEPOSIT_COLLECTION"), # input collection of type reco::IsoDepositMap
7  deltaR = cms.double(99999.), #cone size
8  weight = cms.string('1'),
9  vetos = cms.vstring('0.0001','Threshold(0.0)'),
10  skipDefaultVeto = cms.bool(True),
11  mode = cms.string('sum')
12  )
13  )
14  )