CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
correctedPhotons_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #
4 # producer to apply corrections to photons
5 #
6 correctedPhotons = cms.EDProducer("PhotonCorrectionProducer",
7  algoCollection = cms.string('E9ESCPtdr E1E9Ptdr EtaPtdr PhiPtdr'),
8  barrelClusterShapeMapProducer = cms.string('hybridSuperClusters'),
9  photonCorrCollection = cms.string('correctedPhotonsWithConversions'),
10  barrelClusterShapeMapCollection = cms.string('hybridShapeAssoc'),
11  endcapClusterShapeMapProducer = cms.string('islandBasicClusters'),
12  photonCollection = cms.string(''),
13  conversionProducer = cms.string('conversions'),
14  conversionCollection = cms.string('conversions'),
15  endcapClusterShapeMapCollection = cms.string('islandEndcapShapeAssoc'),
16  photonProducer = cms.string('photons')
17 )
18 
19