Skip to content

Commit

Permalink
Merge pull request #17284 from fwyzard/HLT_customisations_for_HCAL_Ph…
Browse files Browse the repository at this point in the history
…ase_I

move migration to HBHEPhase1Reconstructor to the common run2_HCAL_2017 era
  • Loading branch information
cmsbuild committed Jan 25, 2017
2 parents 8202856 + a877204 commit 535268b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions HLTrigger/Configuration/python/customizeHLTforHCALPhaseI.py
Expand Up @@ -6,7 +6,7 @@
from HLTrigger.Configuration.common import *

# import the relevant eras from Configuration.Eras.*
from Configuration.Eras.Modifier_run2_HE_2017_cff import run2_HE_2017
from Configuration.Eras.Modifier_run2_HCAL_2017_cff import run2_HCAL_2017
from Configuration.Eras.Modifier_run2_HF_2017_cff import run2_HF_2017


Expand Down Expand Up @@ -175,9 +175,9 @@ def customizeHLTforHEforPhaseI(process):
digiLabel = process.hltHbherecoMethod2L1EGSeeded.digiLabel.value()
process.hltHbherecoMethod2L1EGSeeded = hltHbhereco.clone()
process.hltHbherecoMethod2L1EGSeeded.digiLabelQIE8 = digiLabel
process.hltHbherecoMethod2L1EGSeeded.digiLabelQIE11 = digiLabel
# set processQIE11 to False until HLTHcalDigisInRegionsProducer can produce QIE11
process.hltHbherecoMethod2L1EGSeeded.processQIE11 = cms.bool(False)
process.hltHbherecoMethod2L1EGSeeded.digiLabelQIE11 = cms.InputTag('')
process.hltHbherecoMethod2L1EGSeeded.algorithm.useM2 = cms.bool(True)
process.hltHbherecoMethod2L1EGSeeded.algorithm.useM3 = cms.bool(False)

Expand All @@ -186,18 +186,18 @@ def customizeHLTforHEforPhaseI(process):
digiLabel = process.hltHbherecoMethod2L1EGUnseeded.digiLabel.value()
process.hltHbherecoMethod2L1EGUnseeded = hltHbhereco.clone()
process.hltHbherecoMethod2L1EGUnseeded.digiLabelQIE8 = digiLabel
process.hltHbherecoMethod2L1EGUnseeded.digiLabelQIE11 = digiLabel
# set processQIE11 to False until HLTHcalDigisInRegionsProducer can produce QIE11
process.hltHbherecoMethod2L1EGUnseeded.processQIE11 = cms.bool(False)
process.hltHbherecoMethod2L1EGUnseeded.digiLabelQIE11 = cms.InputTag('')
process.hltHbherecoMethod2L1EGUnseeded.algorithm.useM2 = cms.bool(True)
process.hltHbherecoMethod2L1EGUnseeded.algorithm.useM3 = cms.bool(False)

return process


# attach `customizeHLTforHEforPhaseI' to the `run2_HE_2017' era
# attach `customizeHLTforHEforPhaseI' to the `run2_HCAL_2017' era
def modifyHLTforHEforPhaseI(process):
run2_HE_2017.toModify(process, customizeHLTforHEforPhaseI)
run2_HCAL_2017.toModify(process, customizeHLTforHEforPhaseI)


# modify the HLT configuration for the Phase I HF upgrade
Expand Down

0 comments on commit 535268b

Please sign in to comment.