1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
import FWCore.ParameterSet.Config as cms
hltHoreco = cms.EDProducer("HcalHitReconstructor",
HFInWindowStat = cms.PSet(),
PETstat = cms.PSet(),
S8S1stat = cms.PSet(),
S9S1stat = cms.PSet(),
Subdetector = cms.string('HO'),
correctForPhaseContainment = cms.bool(True),
correctForTimeslew = cms.bool(True),
correctTiming = cms.bool(False),
correctionPhaseNS = cms.double(13.0),
dataOOTCorrectionCategory = cms.string('Data'),
dataOOTCorrectionName = cms.string(''),
digiLabel = cms.InputTag("hltHcalDigis"),
digiTimeFromDB = cms.bool(True),
digistat = cms.PSet(),
dropZSmarkedPassed = cms.bool(True),
firstAuxTS = cms.int32(4),
firstSample = cms.int32(4),
hfTimingTrustParameters = cms.PSet(),
mcOOTCorrectionCategory = cms.string('MC'),
mcOOTCorrectionName = cms.string(''),
recoParamsFromDB = cms.bool(True),
samplesToAdd = cms.int32(4),
saturationParameters = cms.PSet(
maxADCvalue = cms.int32(127)
),
setNegativeFlags = cms.bool(False),
setNoiseFlags = cms.bool(False),
setSaturationFlags = cms.bool(False),
setTimingTrustFlags = cms.bool(False),
tsFromDB = cms.bool(True),
useLeakCorrection = cms.bool(False)
)
|