Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:07:36

0001 import FWCore.ParameterSet.Config as cms
0002 from DQMServices.Core.DQMEDHarvester import DQMEDHarvester
0003 from DQM.HcalTasks.DigiTask_cfi import digiTask
0004 
0005 hcalOfflineHarvesting = DQMEDHarvester(
0006     "HcalOfflineHarvesting",
0007 
0008     name = cms.untracked.string("HcalOfflineHarvesting"),
0009     debug = cms.untracked.int32(0),
0010     runkeyVal = cms.untracked.int32(0),
0011     runkeyName = cms.untracked.string('pp_run'),
0012     ptype = cms.untracked.int32(1),
0013     mtype = cms.untracked.bool(True),
0014     subsystem = cms.untracked.string("Hcal"),
0015 
0016     thresh_EtMsmRate_high = cms.untracked.double(0.2),
0017     thresh_EtMsmRate_low = cms.untracked.double(0.1),
0018     thresh_FGMsmRate_high = cms.untracked.double(0.2),
0019     thresh_FGMsmRate_low = cms.untracked.double(0.1),
0020     thresh_unihf = cms.untracked.double(0.2),
0021     thresh_tcds = cms.untracked.double(1.5),
0022     refDigiSize = digiTask.refDigiSize,
0023 )