File indexing completed on 2024-04-06 12:32:07
0001 import FWCore.ParameterSet.Config as cms
0002
0003 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
0004 ecalPreshowerRecHitsValidation = DQMEDAnalyzer('EcalPreshowerRecHitsValidation',
0005 EErechitCollection = cms.InputTag("ecalRecHit","EcalRecHitsEE"),
0006 ESrechitCollection = cms.InputTag("ecalPreshowerRecHit","EcalRecHitsES"),
0007 EEuncalibrechitCollection = cms.InputTag("ecalMultiFitUncalibRecHit","EcalUncalibRecHitsEE"),
0008 verbose = cms.untracked.bool(False)
0009 )
0010
0011
0012