CMS 3D CMS Logo

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