CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
piZeroDiscriminators_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # Preshower cluster producer
4 piZeroDiscriminators = cms.EDProducer("PiZeroDiscriminatorProducer",
5  # building preshower clusters
6  preshClusterShapeProducer = cms.string('preshowerClusterShape'),
7  corrPhoProducer = cms.string('photons'),
8  correctedPhotonCollection = cms.string(''),
9  preshStripEnergyCut = cms.double(0.0),
10  w0 = cms.double(4.2),
11  EScorr = cms.int32(1),
12  Pi0Association = cms.string('PhotonPi0DiscriminatorAssociationMap'),
13  preshPi0Nstrip = cms.int32(5),
14  preshClusterShapeCollectionX = cms.string('preshowerXClustersShape'),
15  preshClusterShapeCollectionY = cms.string('preshowerYClustersShape'),
16  barrelRecHitCollection = cms.InputTag('reducedEcalRecHitsEB'),
17  endcapRecHitCollection = cms.InputTag('reducedEcalRecHitsEE'),
18  # DEBUG: very verbose INFO: minimal printout
19  debugLevel = cms.string('INFO')
20  #debugLevel = cms.string('DEBUG')
21 )
22 
23