CMS 3D CMS Logo

RawTask.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # prep a FED skip list
4 
5 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
6 rawTask = DQMEDAnalyzer(
7  "RawTask",
8 
9  # standard parameters
10  name = cms.untracked.string("RawTask"),
11  debug = cms.untracked.int32(0),
12  runkeyVal = cms.untracked.int32(0),
13  runkeyName = cms.untracked.string("pp_run"),
14  ptype = cms.untracked.int32(0),
15  mtype = cms.untracked.bool(True),
16  subsystem = cms.untracked.string("Hcal"),
17 
18  # tags
19  tagFEDs = cms.untracked.InputTag("rawDataCollector"),
20  tagReport = cms.untracked.InputTag("hcalDigis"),
21  calibProcessing = cms.untracked.bool(False),
22  thresh_calib_nbadq = cms.untracked.int32(5000)
23 )
24 
25 
26 
27 
28 
29 
30 
31 
32 
33 
34 
35