CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TPTask.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 fgbits = [1 for x in range(5)]
4 fgbits.append(0)
5 
6 tpTask = cms.EDAnalyzer(
7  "TPTask",
8 
9  # standard parameters
10  name = cms.untracked.string("TPTask"),
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  tagData = cms.untracked.InputTag("hcalDigis"),
20  tagEmul = cms.untracked.InputTag("emulTPDigis"),
21 
22  # cut to put on Et to get the occupancy
23  cutEt = cms.untracked.int32(3),
24 
25  # some speacial features
26  skip1x1 = cms.untracked.bool(True),
27 
28  thresh_EtMsmRate_high = cms.untracked.double(0.2),
29  thresh_EtMsmRate_low = cms.untracked.double(0.1),
30  thresh_FGMsmRate_high = cms.untracked.double(0.2),
31  thresh_FGMsmRate_low = cms.untracked.double(0.1),
32  thresh_DataMsn = cms.untracked.double(0.1),
33  thresh_EmulMsn = cms.untracked.double(0.1),
34  vFGBitsReady = cms.untracked.vint32(fgbits)
35 )
36 
37 
38 
39 
40 
41 
42 
43 
44 
45 
46 
47