CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
multi5x5PreshowerClusterShape_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # Preshower cluster producer
4 multi5x5PreshowerClusterShape = cms.EDProducer("PreshowerClusterShapeProducer",
5  preshStripEnergyCut = cms.double(0.0),
6  # building multi5x5Preshower clusters
7  preshRecHitProducer = cms.InputTag("ecalPreshowerRecHit","EcalRecHitsES"),
8  preshPi0Nstrip = cms.int32(5),
9  endcapSClusterProducer = cms.InputTag('correctedMulti5x5SuperClustersWithPreshower'),
10  # string corrPhoProducer = "correctedPhotons"
11  # string correctedPhotonCollection = ""
12  PreshowerClusterShapeCollectionX = cms.string('multi5x5PreshowerXClustersShape'),
13  PreshowerClusterShapeCollectionY = cms.string('multi5x5PreshowerYClustersShape'),
14  # DEBUG: very verbose INFO: minimal printout
15  debugLevel = cms.string('INFO')
16 )
17 
18