Skip to content

Commit

Permalink
Merge pull request #31503 from jfernan2/FixIssue31502
Browse files Browse the repository at this point in the history
Fix to issue 31502: problem with FakeHLT in PU 2017-2018 relvals
  • Loading branch information
cmsbuild committed Sep 21, 2020
2 parents 971b61e + 7a58830 commit 65976a2
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -927,7 +927,8 @@ def condition(self, fragment, stepList, key, hasHarvest):
# standard PU sequences
for key in list(upgradeProperties[2017].keys()):
upgradeProperties[2017][key+'PU'] = deepcopy(upgradeProperties[2017][key])
upgradeProperties[2017][key+'PU']['ScenToRun'] = ['GenSim','DigiPU','RecoFakeHLTPU','HARVESTFakeHLTPU'] + \
upgradeProperties[2017][key+'PU']['ScenToRun'] = ['GenSim','DigiPU'] + \
(['RecoPU','HARVESTPU'] if '202' in key else ['RecoFakeHLTPU','HARVESTFakeHLTPU']) + \
(['Nano'] if 'Design' not in key else [])

upgradeProperties[2026] = {
Expand Down Expand Up @@ -1184,4 +1185,3 @@ def __init__(self, howMuch, dataset):
('TenTau_E_15_500_Eta3p1_pythia8_cfi', UpgradeFragment(Kby(9,100),'TenTau_15_500_Eta3p1')),
('QCD_Pt_1800_2400_14TeV_TuneCP5_cfi', UpgradeFragment(Kby(9,50), 'QCD_Pt_1800_2400_14')),
])

0 comments on commit 65976a2

Please sign in to comment.