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 
4 hcalOfflineHarvesting = DQMEDHarvester(
5  "HcalOfflineHarvesting",
6 
7  name = cms.untracked.string("HcalOfflineHarvesting"),
8  debug = cms.untracked.int32(0),
9  runkeyVal = cms.untracked.int32(0),
10  runkeyName = cms.untracked.string('pp_run'),
11  ptype = cms.untracked.int32(1),
12  mtype = cms.untracked.bool(True),
13  subsystem = cms.untracked.string("Hcal"),
14 
15  thresh_EtMsmRate_high = cms.untracked.double(0.2),
16  thresh_EtMsmRate_low = cms.untracked.double(0.1),
17  thresh_FGMsmRate_high = cms.untracked.double(0.2),
18  thresh_FGMsmRate_low = cms.untracked.double(0.1),
19  thresh_unihf = cms.untracked.double(0.2),
20  thresh_tcds = cms.untracked.double(1.5)
21 )