File indexing completed on 2024-04-06 12:15:55
0001 import FWCore.ParameterSet.Config as cms
0002
0003 hltParticleFlowClusterECALUnseeded = cms.EDProducer("CorrectedECALPFClusterProducer",
0004 energyCorrector = cms.PSet(
0005 applyCrackCorrections = cms.bool(False),
0006 applyMVACorrections = cms.bool(True),
0007 autoDetectBunchSpacing = cms.bool(True),
0008 bunchSpacing = cms.int32(25),
0009 ebSrFlagLabel = cms.InputTag("hltEcalDigis"),
0010 eeSrFlagLabel = cms.InputTag("hltEcalDigis"),
0011 maxPtForMVAEvaluation = cms.double(300.0),
0012 recHitsEBLabel = cms.InputTag("hltEcalRecHit","EcalRecHitsEB"),
0013 recHitsEELabel = cms.InputTag("hltEcalRecHit","EcalRecHitsEE"),
0014 setEnergyUncertainty = cms.bool(False),
0015 srfAwareCorrection = cms.bool(True)
0016 ),
0017 inputECAL = cms.InputTag("hltParticleFlowClusterECALUncorrectedUnseeded"),
0018 mightGet = cms.optional.untracked.vstring,
0019 minimumPSEnergy = cms.double(0),
0020 skipPS = cms.bool(True)
0021 )