Skip to content

Commit

Permalink
add phase-2 75e33 wf
Browse files Browse the repository at this point in the history
  • Loading branch information
Norraphat committed Mar 8, 2022
1 parent f0a874e commit aab5cde
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
1 change: 1 addition & 0 deletions Configuration/PyReleaseValidation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ The offsets currently in use are:
* 0.914: DDD DB
* 0.101: Phase-2 aging, 1000fb-1
* 0.103: Phase-2 aging, 3000fb-1
* 0.111: Phase-2 HLT:75e33
* 0.201: HGCAL special TICL Pattern recognition Workflows: clue3D
* 0.202: HGCAL special TICL Pattern recognition Workflows: FastJet
* 0.9001: Sonic Triton
Original file line number Diff line number Diff line change
Expand Up @@ -1033,6 +1033,23 @@ def condition(self, fragment, stepList, key, hasHarvest):
upgradeWFs['Aging3000'].offset = 0.103
upgradeWFs['Aging3000'].lumi = '3000'

class UpgradeWorkflow_Phase2HLT75e33(UpgradeWorkflow):
def setup_(self, step, stepName, stepDict, k, properties):
if 'DigiTrigger' in step: # for Phase-2
stepDict[stepName][k] = merge([{'-s': 'DIGI:pdigi_valid,L1TrackTrigger,L1,DIGI2RAW,HLT:75e33'}, stepDict[step][k]])
def condition(self, fragment, stepList, key, hasHarvest):
return fragment=="TTbar_14TeV" and ('2026' in key)
upgradeWFs['Phase2HLT75e33'] = UpgradeWorkflow_Phase2HLT75e33(
steps = [
'DigiTrigger',
],
PU = [
'DigiTrigger',
],
suffix = '_HLT75e33',
offset = 0.111,
)

# Specifying explicitly the --filein is not nice but that was the
# easiest way to "skip" the output of step2 (=premixing stage1) for
# filein (as it goes to pileup_input). It works (a bit accidentally
Expand Down

0 comments on commit aab5cde

Please sign in to comment.