CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HcalOfflineHarvesting.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 hcalOfflineHarvesting = cms.EDAnalyzer(
4  "HcalOfflineHarvesting",
5 
6  name = cms.untracked.string("HcalOfflineHarvesting"),
7  debug = cms.untracked.int32(0),
8  runkeyVal = cms.untracked.int32(0),
9  runkeyName = cms.untracked.string('pp_run'),
10  ptype = cms.untracked.int32(1),
11  mtype = cms.untracked.bool(True),
12  subsystem = cms.untracked.string("Hcal"),
13 
14  thresh_EtMsmRate_high = cms.untracked.double(0.2),
15  thresh_EtMsmRate_low = cms.untracked.double(0.1),
16  thresh_FGMsmRate_high = cms.untracked.double(0.2),
17  thresh_FGMsmRate_low = cms.untracked.double(0.1),
18  thresh_unihf = cms.untracked.double(0.2),
19  thresh_tcds = cms.untracked.double(1.5)
20 )