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 rawTask = cms.EDAnalyzer(
6  "RawTask",
7 
8  # standard parameters
9  name = cms.untracked.string("RawTask"),
10  debug = cms.untracked.int32(0),
11  runkeyVal = cms.untracked.int32(0),
12  runkeyName = cms.untracked.string("pp_run"),
13  ptype = cms.untracked.int32(0),
14  mtype = cms.untracked.bool(True),
15  subsystem = cms.untracked.string("Hcal"),
16 
17  # tags
18  tagFEDs = cms.untracked.InputTag("rawDataCollector"),
19  tagReport = cms.untracked.InputTag("hcalDigis"),
20  calibProcessing = cms.untracked.bool(False),
21  thresh_calib_nbadq = cms.untracked.int32(5000)
22 )
23 
24 
25 
26 
27 
28 
29 
30 
31 
32 
33 
34