Skip to content

Commit

Permalink
Add dedicated workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mmasciov committed Apr 10, 2024
1 parent c0d89a9 commit e37f930
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
1 change: 1 addition & 0 deletions Configuration/PyReleaseValidation/python/relval_2026.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
numWFIB.extend([24434.0]) #2026D97
numWFIB.extend([24834.0,24834.911,24834.103]) #2026D98 DDD XML, DD4hep XML, aging
numWFIB.extend([25061.97]) #2026D98 premixing stage1 (NuGun+PU)
numWFIB.extend([24834.702]) #2026D98 mkFit tracking (initialStep)
numWFIB.extend([24834.5,24834.9]) #2026D98 pixelTrackingOnly, vector hits
numWFIB.extend([25034.99,25034.999]) #2026D98 premixing combined stage1+stage2 (ttbar+PU200, ttbar+PU50 for PR test)
numWFIB.extend([24834.21,25034.21,25034.9921]) #2026D98 prodlike, prodlike PU, prodlike premix stage1+stage2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -437,6 +437,28 @@ def condition_(self, fragment, stepList, key, hasHarvest):
'--procModifiers': 'trackingMkFitDevel'
}

# mkFit for phase-2 initialStep tracking
class UpgradeWorkflow_trackingMkFitPhase2(UpgradeWorkflowTracking):
def setup__(self, step, stepName, stepDict, k, properties):
if 'Reco' in step: stepDict[stepName][k] = merge([self.step3, stepDict[step][k]])
def condition_(self, fragment, stepList, key, hasHarvest):
return ('2026' in key)
upgradeWFs['trackingMkFitPhase2'] = UpgradeWorkflow_trackingMkFitPhase2(
steps = [
'Reco',
'RecoFakeHLT',
'RecoGlobal',
'RecoNano',
'RecoNanoFakeHLT',
],
PU = [],
suffix = '_trackingMkFitPhase2',
offset = 0.702,
)
upgradeWFs['trackingMkFitPhase2'].step3 = {
'--procModifiers': 'trackingMkFitCommon,trackingMkFitInitialStep'
}

#DeepCore seeding for JetCore iteration workflow
class UpgradeWorkflow_seedingDeepCore(UpgradeWorkflow):
def setup_(self, step, stepName, stepDict, k, properties):
Expand Down

0 comments on commit e37f930

Please sign in to comment.