CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/EgammaAnalysis/PhotonIDProducers/python/piZeroDiscriminators_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # $Id: piZeroDiscriminators_cfi.py,v 1.4 2009/05/26 10:50:33 akyriaki Exp $
00004 # Preshower cluster producer
00005 piZeroDiscriminators = cms.EDProducer("PiZeroDiscriminatorProducer",
00006     # building preshower clusters
00007     preshClusterShapeProducer = cms.string('preshowerClusterShape'),
00008     corrPhoProducer = cms.string('photons'),
00009     correctedPhotonCollection = cms.string(''),
00010     preshStripEnergyCut = cms.double(0.0),
00011     w0 = cms.double(4.2),
00012     EScorr = cms.int32(1),
00013     Pi0Association = cms.string('PhotonPi0DiscriminatorAssociationMap'),
00014     preshPi0Nstrip = cms.int32(5),
00015     preshClusterShapeCollectionX = cms.string('preshowerXClustersShape'),    
00016     preshClusterShapeCollectionY = cms.string('preshowerYClustersShape'),
00017     barrelRecHitCollection = cms.InputTag('reducedEcalRecHitsEB'),
00018     endcapRecHitCollection = cms.InputTag('reducedEcalRecHitsEE'),
00019     # DEBUG: very verbose  INFO: minimal printout
00020     debugLevel = cms.string('INFO')
00021     #debugLevel = cms.string('DEBUG')
00022 )
00023 
00024