CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/RecoEcal/EgammaClusterProducers/python/multi5x5SuperClustersWithPreshower_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # Preshower cluster producer
00004 multi5x5SuperClustersWithPreshower = cms.EDProducer("PreshowerClusterProducer",
00005 
00006     preshStripEnergyCut = cms.double(0.0),
00007     preshClusterCollectionY = cms.string('preshowerYClusters'),
00008     # building endcap association
00009     assocSClusterCollection = cms.string(''),
00010     etThresh = cms.double(0.0),
00011     # building preshower clusters
00012     preshRecHitProducer = cms.InputTag("ecalPreshowerRecHit","EcalRecHitsES"),
00013     preshClusterCollectionX = cms.string('preshowerXClusters'),
00014 
00015     endcapSClusterProducer = cms.InputTag("multi5x5SuperClusters","multi5x5EndcapSuperClusters"),
00016     preshNclust = cms.int32(4),
00017     preshClusterEnergyCut = cms.double(0.0),
00018     preshSeededNstrip = cms.int32(15)
00019 )
00020 
00021 uncleanedOnlyMulti5x5SuperClustersWithPreshower = multi5x5SuperClustersWithPreshower.clone()
00022 
00023 uncleanedOnlyMulti5x5SuperClustersWithPreshower.endcapSClusterProducer = cms.InputTag("multi5x5SuperClusters","uncleanOnlyMulti5x5EndcapSuperClusters")