CMS 3D CMS Logo

horeco_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 horeco = cms.EDProducer("HcalHitReconstructor",
4  Subdetector = cms.string('HO'),
5  correctForPhaseContainment = cms.bool(True),
6  correctForTimeslew = cms.bool(True),
7  correctTiming = cms.bool(True),
8  correctionPhaseNS = cms.double(13.0),
9  dataOOTCorrectionCategory = cms.string('Data'),
10  dataOOTCorrectionName = cms.string(''),
11  digiLabel = cms.InputTag("hcalDigis"),
12  dropZSmarkedPassed = cms.bool(True),
13  firstAuxTS = cms.int32(4),
14  firstSample = cms.int32(4),
15  mcOOTCorrectionCategory = cms.string('MC'),
16  mcOOTCorrectionName = cms.string(''),
17  recoParamsFromDB = cms.bool(True),
18  samplesToAdd = cms.int32(4),
19  saturationParameters = cms.PSet(
20  maxADCvalue = cms.int32(127)
21  ),
22  setHSCPFlags = cms.bool(True),
23  setNegativeFlags = cms.bool(False),
24  setNoiseFlags = cms.bool(True),
25  setPulseShapeFlags = cms.bool(False),
26  setSaturationFlags = cms.bool(True),
27  setTimingTrustFlags = cms.bool(False),
28  tsFromDB = cms.bool(True),
29  useLeakCorrection = cms.bool(False)
30 )