CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
fixedMatrixSuperClustersWithPreshower_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # Preshower cluster producer
4 fixedMatrixSuperClustersWithPreshower = cms.EDProducer("PreshowerClusterProducer",
5 
6  preshStripEnergyCut = cms.double(0.0),
7  preshClusterCollectionY = cms.string('preshowerYClusters'),
8  # building endcap association
9  assocSClusterCollection = cms.string(''),
10  etThresh = cms.double(0.0),
11  # building preshower clusters
12  preshRecHitProducer = cms.InputTag("ecalPreshowerRecHit","EcalRecHitsES"),
13  preshClusterCollectionX = cms.string('preshowerXClusters'),
14 
15  endcapSClusterProducer = cms.InputTag("fixedMatrixSuperClusters","fixedMatrixEndcapSuperClusters"),
16  preshNclust = cms.int32(4),
17  debugLevel = cms.string(''), ## switch to 'INFO' to get an extensive print-out
18 
19  preshClusterEnergyCut = cms.double(0.0),
20  preshSeededNstrip = cms.int32(15)
21 )
22 
23