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 tpTask = cms.EDAnalyzer(
4  "TPTask",
5 
6  # standard parameters
7  name = cms.untracked.string("TPTask"),
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("Hcal"),
14 
15  # tags
16  tagData = cms.untracked.InputTag("hcalDigis"),
17  tagEmul = cms.untracked.InputTag("emulTPDigis"),
18 
19  # cut to put on Et to get the occupancy
20  cutEt = cms.untracked.int32(3),
21 
22  # some speacial features
23  skip1x1 = cms.untracked.bool(True),
24 
25  thresh_EtMsmRate = cms.untracked.double(0.1),
26  thresh_FGMsmRate = cms.untracked.double(0.1),
27  thresh_DataMsn = cms.untracked.double(0.1),
28  thresh_EmulMsn = cms.untracked.double(0.1),
29 )
30 
31 
32 
33 
34 
35 
36 
37 
38 
39 
40 
41