CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
RecHitTask.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 recHitTask = cms.EDAnalyzer(
4  "RecHitTask",
5 
6  # standard parameters
7  name = cms.untracked.string("RecHitTask"),
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  tagHBHE = cms.untracked.InputTag("hbhereco"),
17  tagHO = cms.untracked.InputTag("horeco"),
18  tagHF = cms.untracked.InputTag("hfreco"),
19  tagRaw = cms.untracked.InputTag('rawDataCollector'),
20 
21  # thresholds
22  thresh_unihf = cms.untracked.double(0.2),
23 )
24 
25 
26 
27 
28 
29 
30 
31 
32 
33 
34 
35