CMS 3D CMS Logo

UMNioTask.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
4 umnioTask = DQMEDAnalyzer(
5  "UMNioTask",
6 
7  # standard parameters
8  name = cms.untracked.string("UMNioTask"),
9  debug = cms.untracked.int32(0),
10  runkeyVal = cms.untracked.int32(0),
11  runkeyName = cms.untracked.string("pp_run"),
12  ptype = cms.untracked.int32(0),
13  mtype = cms.untracked.bool(True),
14  subsystem = cms.untracked.string("HcalCalib"),
15 
16  # tags
17  taguMN = cms.untracked.InputTag("hcalDigis"),
18  tagRaw = cms.untracked.InputTag('hltHcalCalibrationRaw')
19 )
20 
21 
22 
23 
24 
25 
26 
27 
28 
29 
30 
31