Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:24:40

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # Preshower cluster producer
0004 multi5x5PreshowerClusterShape = cms.EDProducer("PreshowerClusterShapeProducer",
0005     preshStripEnergyCut = cms.double(0.0),
0006     # building multi5x5Preshower clusters
0007     preshRecHitProducer = cms.InputTag("ecalPreshowerRecHit","EcalRecHitsES"),
0008     preshPi0Nstrip = cms.int32(5),
0009     endcapSClusterProducer = cms.InputTag('correctedMulti5x5SuperClustersWithPreshower'),
0010     #    string corrPhoProducer = "correctedPhotons"
0011     #    string correctedPhotonCollection   = ""
0012     PreshowerClusterShapeCollectionX = cms.string('multi5x5PreshowerXClustersShape'),
0013     PreshowerClusterShapeCollectionY = cms.string('multi5x5PreshowerYClustersShape'),
0014     # DEBUG: very verbose  INFO: minimal printout
0015     debugLevel = cms.string('INFO')
0016 )
0017 
0018