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 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
0003 ecalPileUpDepMonitor = DQMEDAnalyzer('EcalPileUpDepMonitor',
0004                VertexCollection = cms.InputTag("offlinePrimaryVertices"),
0005                            basicClusterCollection = cms.InputTag("particleFlowClusterECAL"),
0006                            superClusterCollection_EE = cms.InputTag("particleFlowSuperClusterECAL", "particleFlowSuperClusterECALEndcapWithPreshower"),
0007                superClusterCollection_EB = cms.InputTag("particleFlowSuperClusterECAL", "particleFlowSuperClusterECALBarrel"),
0008                RecHitCollection_EB = cms.InputTag("ecalRecHit","EcalRecHitsEB"),
0009                RecHitCollection_EE = cms.InputTag("ecalRecHit","EcalRecHitsEE"),
0010                EleTag              = cms.InputTag("gedGsfElectrons")
0011                       )
0012