CMS 3D CMS Logo

HcalOfflineHarvesting.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 from DQMServices.Core.DQMEDHarvester import DQMEDHarvester
3 from DQM.HcalTasks.DigiTask import digiTask
4 
5 hcalOfflineHarvesting = DQMEDHarvester(
6  "HcalOfflineHarvesting",
7 
8  name = cms.untracked.string("HcalOfflineHarvesting"),
9  debug = cms.untracked.int32(0),
10  runkeyVal = cms.untracked.int32(0),
11  runkeyName = cms.untracked.string('pp_run'),
12  ptype = cms.untracked.int32(1),
13  mtype = cms.untracked.bool(True),
14  subsystem = cms.untracked.string("Hcal"),
15 
16  thresh_EtMsmRate_high = cms.untracked.double(0.2),
17  thresh_EtMsmRate_low = cms.untracked.double(0.1),
18  thresh_FGMsmRate_high = cms.untracked.double(0.2),
19  thresh_FGMsmRate_low = cms.untracked.double(0.1),
20  thresh_unihf = cms.untracked.double(0.2),
21  thresh_tcds = cms.untracked.double(1.5),
22  refDigiSize = digiTask.refDigiSize,
23 )