CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_7_hltpatch2/src/CommonTools/ParticleFlow/python/pfPhotons_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 from CommonTools.ParticleFlow.ParticleSelectors.pfSelectedPhotons_cfi import *
00004 from CommonTools.ParticleFlow.Isolation.pfPhotonIsolation_cff import *
00005 from CommonTools.ParticleFlow.Isolation.pfIsolatedPhotons_cfi import *
00006 
00007 pfPhotonSequence = cms.Sequence(
00008     pfSelectedPhotons +
00009     pfPhotonIsolationSequence +
00010     # selecting isolated photons:
00011     pfIsolatedPhotons
00012     )
00013 
00014 
00015 
00016