Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:09:20

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
0004 ecalPreshowerRecoSummary = DQMEDAnalyzer('ESRecoSummary',
0005     prefixME = cms.untracked.string('EcalPreshower'),    
0006     superClusterCollection_EE = cms.InputTag("correctedMulti5x5SuperClustersWithPreshower"),
0007     recHitCollection_ES       = cms.InputTag("ecalPreshowerRecHit","EcalRecHitsES"),
0008     ClusterCollectionX_ES     = cms.InputTag("multi5x5SuperClustersWithPreshower","preshowerXClusters"),
0009     ClusterCollectionY_ES     = cms.InputTag("multi5x5SuperClustersWithPreshower","preshowerYClusters"),
0010 )
0011