Skip to content

Commit

Permalink
temporarily remove trigger and downstream steps for ecal devel wf
Browse files Browse the repository at this point in the history
  • Loading branch information
kpedro88 committed Oct 22, 2020
1 parent d63c30b commit 7f23644
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,11 @@ def condition(self, fragment, stepList, key, hasHarvest):

class UpgradeWorkflow_ecalDevel(UpgradeWorkflow):
def setup_(self, step, stepName, stepDict, k, properties):
stepDict[stepName][k] = merge([{'--era': stepDict[step][k]['--era']+',phase2_ecal_devel'}, stepDict[step][k]])
# temporarily remove trigger & downstream steps
mods = {'--era': stepDict[step][k]['--era']+',phase2_ecal_devel'}
if 'Digi' in step:
mods['-s'] = 'DIGI:pdigi_valid'
stepDict[stepName][k] = merge([mods, stepDict[step][k]])
def condition(self, fragment, stepList, key, hasHarvest):
return fragment=="TTbar_14TeV" and '2026' in key
upgradeWFs['ecalDevel'] = UpgradeWorkflow_ecalDevel(
Expand Down

0 comments on commit 7f23644

Please sign in to comment.