Skip to content

Commit 468f19e

Browse files
committed
add an alpaka variant for the phase-2 HLT timing menu workflow
1 parent 393dfc8 commit 468f19e

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

Configuration/PyReleaseValidation/python/upgradeWorkflowComponents.py

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2012,7 +2012,7 @@ def setup_(self, step, stepName, stepDict, k, properties):
20122012
if ('ALCA' in step) or ('Reco' in step) or ('HARVEST' in step) or ('HLT' in step):
20132013
stepDict[stepName][k] = None
20142014
elif 'DigiTrigger' in step:
2015-
stepDict[stepName][k] = merge([{'-s':'DIGI:pdigi_valid,L1TrackTrigger,L1,L1P2GT,DIGI2RAW,HLT:75e33_timing'}, stepDict[step][k]])
2015+
stepDict[stepName][k] = merge([self.step2, stepDict[step][k]])
20162016
else:
20172017
stepDict[stepName][k] = merge([stepDict[step][k]])
20182018
def condition(self, fragment, stepList, key, hasHarvest):
@@ -2039,6 +2039,17 @@ def condition(self, fragment, stepList, key, hasHarvest):
20392039
suffix = '_HLT75e33Timing',
20402040
offset = 0.75,
20412041
)
2042+
upgradeWFs['HLTTiming75e33'].step2 = {
2043+
'-s':'DIGI:pdigi_valid,L1TrackTrigger,L1,L1P2GT,DIGI2RAW,HLT:75e33_timing'
2044+
}
2045+
2046+
upgradeWFs['HLTTiming75e33Alpaka'] = deepcopy(upgradeWFs['HLTTiming75e33'])
2047+
upgradeWFs['HLTTiming75e33Alpaka'].suffix = '_HLT75e33TimingAlpaka'
2048+
upgradeWFs['HLTTiming75e33Alpaka'].offset = 0.751
2049+
upgradeWFs['HLTTiming75e33Alpaka'].step2 = {
2050+
'-s':'DIGI:pdigi_valid,L1TrackTrigger,L1,L1P2GT,DIGI2RAW,HLT:75e33_timing',
2051+
'--procModifiers': 'alpaka'
2052+
}
20422053

20432054
class UpgradeWorkflow_HLTwDIGI75e33(UpgradeWorkflow):
20442055
def setup_(self, step, stepName, stepDict, k, properties):

0 commit comments

Comments
 (0)