Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions Configuration/PyReleaseValidation/python/relval_nano.py
Original file line number Diff line number Diff line change
Expand Up @@ -716,3 +716,14 @@ def next(self, index: int = None) -> None:
workflows[_wfn()] = ['', ['DYToll01234Jets_5f_LO_MLM_Madgraph_LHE_13TeV',
'Hadronizer_TuneCP5_13TeV_MLM_5f_max4j_LHE_pythia8', 'NANOGENFromGen']]
workflows[_wfn()] = ['', ['TTbar_Pow_LHE_13TeV', 'Hadronizer_TuneCP5_13TeV_powhegEmissionVeto2p_pythia8', 'NANOGENFromGen']]

################################################################
# Phase-2 HLT with NANO
from Configuration.PyReleaseValidation.relval_upgrade import workflows as _upgrade_workflows
from Configuration.PyReleaseValidation.relval_Run4 import prefixDet

# Phase-2 HLT NANO workflows
workflows[prefixDet+34.759] = _upgrade_workflows[prefixDet+34.759] # HLT75e33 + NANO
workflows[prefixDet+34.7591] = _upgrade_workflows[prefixDet+34.7591] # HLT75e33 + NANO (including validation)
workflows[prefixDet+34.772] = _upgrade_workflows[prefixDet+34.772] # NGTScouting + NANO
workflows[prefixDet+34.773] = _upgrade_workflows[prefixDet+34.773] # NGTScouting + NANO (including validation)
Original file line number Diff line number Diff line change
Expand Up @@ -2102,37 +2102,37 @@ def condition(self, fragment, stepList, key, hasHarvest):
)
upgradeWFs['HLTPhase2WithNano'].step2 = {
'-s':'DIGI:pdigi_valid,L1TrackTrigger,L1,L1P2GT,DIGI2RAW,HLT:75e33,NANO:@Phase2HLT',
'--datatier':'GEN-SIM-DIGI-RAW,NANOAODSIM',
'--eventcontent':'FEVTDEBUGHLT,NANOAODSIM'
'--datatier':'NANOAODSIM',
'--eventcontent':'NANOAODSIM'
}

upgradeWFs['HLTPhase2WithNanoValid'] = deepcopy(upgradeWFs['HLTPhase2WithNano'])
upgradeWFs['HLTPhase2WithNanoValid'].suffix = '_HLTPhase2WithNanoValid'
upgradeWFs['HLTPhase2WithNanoValid'].offset = 0.7591
upgradeWFs['HLTPhase2WithNanoValid'].step2 = {
'-s':'DIGI:pdigi_valid,L1TrackTrigger,L1,L1P2GT,DIGI2RAW,HLT:75e33,VALIDATION:@hltValidation,NANO:@Phase2HLTVal',
'--datatier':'GEN-SIM-DIGI-RAW,NANOAODSIM',
'--eventcontent':'FEVTDEBUGHLT,NANOAODSIM'
'--datatier':'NANOAODSIM',
'--eventcontent':'NANOAODSIM'
}

upgradeWFs['NGTScoutingWithNano'] = deepcopy(upgradeWFs['HLTPhase2WithNano'])
upgradeWFs['NGTScoutingWithNano'].suffix = '_NGTScoutingWithNano'
upgradeWFs['NGTScoutingWithNano'].offset = 0.772
upgradeWFs['NGTScoutingWithNano'].step2 = {
'-s':'DIGI:pdigi_valid,L1TrackTrigger,L1,L1P2GT,DIGI2RAW,HLT:NGTScouting,NANO:@NGTScouting',
'--datatier':'GEN-SIM-DIGI-RAW,NANOAODSIM',
'--datatier':'NANOAODSIM',
'--procModifiers': 'ngtScouting',
'--eventcontent':'FEVTDEBUGHLT,NANOAODSIM'
'--eventcontent':'NANOAODSIM'
}

upgradeWFs['NGTScoutingWithNanoValid'] = deepcopy(upgradeWFs['HLTPhase2WithNano'])
upgradeWFs['NGTScoutingWithNanoValid'].suffix = '_NGTScoutingWithNanoVal'
upgradeWFs['NGTScoutingWithNanoValid'].offset = 0.773
upgradeWFs['NGTScoutingWithNanoValid'].step2 = {
'-s':'DIGI:pdigi_valid,L1TrackTrigger,L1,L1P2GT,DIGI2RAW,HLT:NGTScouting,VALIDATION:@hltValidation,NANO:@NGTScoutingVal',
'--datatier':'GEN-SIM-DIGI-RAW,NANOAODSIM',
'--datatier':'NANOAODSIM',
'--procModifiers': 'ngtScouting',
'--eventcontent':'FEVTDEBUGHLT,NANOAODSIM'
'--eventcontent':'NANOAODSIM'
}

class UpgradeWorkflow_HLTwDIGI75e33(UpgradeWorkflow):
Expand Down