CMS 3D CMS Logo

egmPhotonIsolationMiniAOD_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from RecoEgamma.EgammaIsolationAlgos.egmIsoConeDefinitions_cfi import IsoConeDefinitions as _IsoConeDefinitions
4 
5 egmPhotonIsolation = cms.EDProducer( "CITKPFIsolationSumProducer",
6  srcToIsolate = cms.InputTag("slimmedPhotons"),
7  srcForIsolationCone = cms.InputTag('packedPFCandidates'),
8  isolationConeDefinitions = _IsoConeDefinitions
9  )
10 
11 # The sequence defined here contains only one module. This is to keep the structure
12 # uniform with the AOD case where there are more modules in the analogous sequence.
13 egmPhotonIsolationMiniAODTask = cms.Task( egmPhotonIsolation )
14 egmPhotonIsolationMiniAODSequence = cms.Sequence( egmPhotonIsolationMiniAODTask )
15