File indexing completed on 2023-03-17 11:06:04
0001 import FWCore.ParameterSet.Config as cms
0002
0003 horeco = cms.EDProducer("HcalHitReconstructor",
0004 Subdetector = cms.string('HO'),
0005 correctForPhaseContainment = cms.bool(True),
0006 correctForTimeslew = cms.bool(True),
0007 correctTiming = cms.bool(True),
0008 correctionPhaseNS = cms.double(13.0),
0009 dataOOTCorrectionCategory = cms.string('Data'),
0010 dataOOTCorrectionName = cms.string(''),
0011 digiLabel = cms.InputTag("hltHcalDigis"),
0012 dropZSmarkedPassed = cms.bool(True),
0013 firstAuxTS = cms.int32(4),
0014 firstSample = cms.int32(4),
0015 mcOOTCorrectionCategory = cms.string('MC'),
0016 mcOOTCorrectionName = cms.string(''),
0017 recoParamsFromDB = cms.bool(True),
0018 samplesToAdd = cms.int32(4),
0019 saturationParameters = cms.PSet(
0020 maxADCvalue = cms.int32(127)
0021 ),
0022 setHSCPFlags = cms.bool(True),
0023 setNegativeFlags = cms.bool(False),
0024 setNoiseFlags = cms.bool(True),
0025 setPulseShapeFlags = cms.bool(False),
0026 setSaturationFlags = cms.bool(True),
0027 setTimingTrustFlags = cms.bool(False),
0028 tsFromDB = cms.bool(True),
0029 useLeakCorrection = cms.bool(False)
0030 )