CMS 3D CMS Logo

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