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 fixedMatrixPreshowerClusterShape = cms.EDProducer("PreshowerClusterShapeProducer",
0005     preshStripEnergyCut = cms.double(0.0),
0006     # building fixedMatrixPreshower clusters
0007     preshRecHitProducer = cms.InputTag("ecalPreshowerRecHit","EcalRecHitsES"),
0008     preshPi0Nstrip = cms.int32(5),
0009     endcapSClusterProducer = cms.InputTag("fixedMatrixSuperClusters","fixedMatrixEndcapSuperClusters"),
0010     #    string corrPhoProducer = "correctedPhotons"
0011     #    string correctedPhotonCollection   = ""
0012     PreshowerClusterShapeCollectionX = cms.string('fixedMatrixPreshowerXClustersShape'),
0013     PreshowerClusterShapeCollectionY = cms.string('fixedMatrixPreshowerYClustersShape'),
0014     # DEBUG: very verbose  INFO: minimal printout
0015     debugLevel = cms.string('INFO')
0016 )
0017 
0018