CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
RawTask.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # prep a FED skip list
4 skipList = []
5 for i in range(9):
6  skipList[len(skipList):] = [1100+i*2]
7 skipList[len(skipList):] = [718, 719, 720, 721, 722, 723, 724];
8 
9 rawTask = cms.EDAnalyzer(
10  "RawTask",
11 
12  # standard parameters
13  name = cms.untracked.string("RawTask"),
14  debug = cms.untracked.int32(0),
15  runkeyVal = cms.untracked.int32(0),
16  runkeyName = cms.untracked.string("pp_run"),
17  ptype = cms.untracked.int32(0),
18  mtype = cms.untracked.bool(True),
19  subsystem = cms.untracked.string("Hcal"),
20 
21  # tags
22  tagFEDs = cms.untracked.InputTag("rawDataCollector"),
23 
24  # Common Parameters
25  skipFEDList = cms.untracked.vint32(skipList)
26 )
27 
28 
29 
30 
31 
32 
33 
34 
35 
36 
37 
38