CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
correctedEndcapSuperClustersWithPreshower_cfi.py
Go to the documentation of this file.
2 
3 # Preshower cluster producer
4 correctedEndcapSuperClustersWithPreshower = cms.EDProducer("PreshowerClusterProducer",
5 
6  preshStripEnergyCut = cms.double(0.0),
7  preshClusterCollectionY = cms.string('preshowerYClusters'),
8  # building endcap association
9  # name for output association collection
10  assocSClusterCollection = cms.string(''),
11  etThresh = cms.double(0.0),
12  # building preshower clusters
13  # input collections
14  preshRecHitProducer = cms.InputTag("ecalPreshowerRecHit","EcalRecHitsES"),
15  # name for output collections
16  preshClusterCollectionX = cms.string('preshowerXClusters'),
17 
18  #InputTag endcapSClusterProducer = islandSuperClusters:islandEndcapSuperClusters
19  endcapSClusterProducer = cms.InputTag("correctedIslandEndcapSuperClusters"),
20  preshNclust = cms.int32(4),
21  debugLevel = cms.string(''), ## switch to 'INFO' to get an extensive print-out
22 
23  preshClusterEnergyCut = cms.double(0.0),
24  preshSeededNstrip = cms.int32(15)
25 )
26 
27