Skip to content

Commit

Permalink
Merge pull request #11742 from slava77/CMSSW_7_6_X_201510131000/hiRun…
Browse files Browse the repository at this point in the history
…2TLR

fix wrong auto-forward-port of RecoTLR of  #11741
  • Loading branch information
davidlange6 committed Oct 15, 2015
2 parents 1aef559 + 53b93a3 commit 1504d4c
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions Configuration/DataProcessing/python/RecoTLR.py
Expand Up @@ -74,13 +74,19 @@ def customiseDataRun2Common(process):
def customiseDataRun2Common_withStage1(process):
process = customiseDataRun2Common(process)

import RecoLocalCalo.HcalRecAlgos.RemoveAddSevLevel as HcalRemoveAddSevLevel
HcalRemoveAddSevLevel.AddFlag(process.hcalRecAlgos,"HFDigiTime",8)
HcalRemoveAddSevLevel.AddFlag(process.hcalRecAlgos,"HBHEFlatNoise",8)

from L1Trigger.L1TCommon.customsPostLS1 import customiseL1RecoForStage1
process=customiseL1RecoForStage1(process)

return process

##############################################################################
# common+ "25ns" Use this for data daking starting from runs in 2015C (>= 253256 )
def customiseDataRun2Common_25ns(process):
process = customiseDataRun2Common_withStage1(process)

import RecoLocalCalo.HcalRecAlgos.RemoveAddSevLevel as HcalRemoveAddSevLevel
HcalRemoveAddSevLevel.AddFlag(process.hcalRecAlgos,"HFDigiTime",8)
HcalRemoveAddSevLevel.AddFlag(process.hcalRecAlgos,"HBHEFlatNoise",8)

from SLHCUpgradeSimulations.Configuration.postLS1Customs import customise_DQM_25ns
if hasattr(process,'dqmoffline_step'):
Expand Down

0 comments on commit 1504d4c

Please sign in to comment.