Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 11:17:20

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # Preshower cluster producer
0004 correctedEndcapSuperClustersWithPreshower = cms.EDProducer("PreshowerClusterProducer",
0005 
0006     preshStripEnergyCut = cms.double(0.0),
0007     preshClusterCollectionY = cms.string('preshowerYClusters'),
0008     # building endcap association
0009     # name for output association collection
0010     assocSClusterCollection = cms.string(''),
0011     etThresh = cms.double(0.0),
0012     # building preshower clusters
0013     # input collections
0014     preshRecHitProducer = cms.InputTag("ecalPreshowerRecHit","EcalRecHitsES"),
0015     # name for output collections
0016     preshClusterCollectionX = cms.string('preshowerXClusters'),
0017 
0018     #InputTag endcapSClusterProducer  = islandSuperClusters:islandEndcapSuperClusters
0019     endcapSClusterProducer = cms.InputTag("correctedIslandEndcapSuperClusters"),
0020     preshNclust = cms.int32(4),
0021     debugLevel = cms.string(''), ## switch to 'INFO' to get an extensive print-out
0022 
0023     preshClusterEnergyCut = cms.double(0.0),
0024     preshSeededNstrip = cms.int32(15)
0025 )
0026 
0027