1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
import FWCore.ParameterSet.Config as cms
hltParticleFlowClusterECAL = cms.EDProducer("CorrectedECALPFClusterProducer",
energyCorrector = cms.PSet(
applyCrackCorrections = cms.bool(False),
applyMVACorrections = cms.bool(True),
autoDetectBunchSpacing = cms.bool(True),
bunchSpacing = cms.int32(25),
ebSrFlagLabel = cms.InputTag("hltEcalDigis"),
eeSrFlagLabel = cms.InputTag("hltEcalDigis"),
maxPtForMVAEvaluation = cms.double(300.0),
recHitsEBLabel = cms.InputTag("hltEcalRecHit","EcalRecHitsEB"),
recHitsEELabel = cms.InputTag("hltEcalRecHit","EcalRecHitsEE"),
setEnergyUncertainty = cms.bool(False),
srfAwareCorrection = cms.bool(True)
),
inputECAL = cms.InputTag("hltParticleFlowTimeAssignerECAL"),
mightGet = cms.optional.untracked.vstring,
minimumPSEnergy = cms.double(0),
skipPS = cms.bool(True)
)
|