CMS 3D CMS Logo

ESIntegrityTask_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
4 ecalPreshowerIntegrityTask = DQMEDAnalyzer('ESIntegrityTask',
5  LookupTable = cms.untracked.FileInPath('EventFilter/ESDigiToRaw/data/ES_lookup_table.dat'),
6  prefixME = cms.untracked.string('EcalPreshower'),
7  ESDCCCollections = cms.InputTag("ecalPreshowerDigis"),
8  ESKChipCollections = cms.InputTag("ecalPreshowerDigis"),
9  OutputFile = cms.untracked.string(""),
10  DoLumiAnalysis = cms.bool(False)
11  )
12