Skip to content

Commit 68ae5ff

Browse files
committed
introduce .772 (NGT scouting with Nano and Validation)
- fix missing ngtScouting modifier
1 parent 4b37389 commit 68ae5ff

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

Configuration/PyReleaseValidation/python/relval_Run4.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@
8080
numWFIB.extend([prefixDet+34.759]) # HLTTiming75e33 + NANO
8181
numWFIB.extend([prefixDet+34.77]) # NGTScouting
8282
numWFIB.extend([prefixDet+34.771]) # NGTScouting + NANO
83+
numWFIB.extend([prefixDet+34.772]) # NGTScouting + NANO (including validation)
8384

8485
for numWF in numWFIB:
8586
workflows[numWF] = _upgrade_workflows[numWF]

Configuration/PyReleaseValidation/python/upgradeWorkflowComponents.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1974,6 +1974,17 @@ def condition(self, fragment, stepList, key, hasHarvest):
19741974
upgradeWFs['NGTScoutingWithNano'].step2 = {
19751975
'-s':'DIGI:pdigi_valid,L1TrackTrigger,L1,L1P2GT,DIGI2RAW,HLT:NGTScouting,NANO:@NGTScouting',
19761976
'--datatier':'GEN-SIM-DIGI-RAW,NANOAODSIM',
1977+
'--procModifiers': 'ngtScouting',
1978+
'--eventcontent':'FEVTDEBUGHLT,NANOAODSIM'
1979+
}
1980+
1981+
upgradeWFs['NGTScoutingWithNanoValid'] = deepcopy(upgradeWFs['HLTPhaseWithNano'])
1982+
upgradeWFs['NGTScoutingWithNanoValid'].suffix = '_NGTScoutingWithNanoVal'
1983+
upgradeWFs['NGTScoutingWithNanoValid'].offset = 0.772
1984+
upgradeWFs['NGTScoutingWithNanoValid'].step2 = {
1985+
'-s':'DIGI:pdigi_valid,L1TrackTrigger,L1,L1P2GT,DIGI2RAW,HLT:NGTScouting,VALIDATION:@hltValidation,NANO:@NGTScoutingVal',
1986+
'--datatier':'GEN-SIM-DIGI-RAW,NANOAODSIM',
1987+
'--procModifiers': 'ngtScouting',
19771988
'--eventcontent':'FEVTDEBUGHLT,NANOAODSIM'
19781989
}
19791990

Configuration/PyReleaseValidation/scripts/runTheMatrix.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,10 +161,11 @@ def runSelected(opt):
161161
29634.756, # HLT phase-2 timing menu trimmed tracking
162162
29634.7561, # HLT phase-2 timing menu Alpaka, trimmed tracking
163163
29634.7562, # HLT phase-2 timing menu Alpaka, trimmed tracking, single tracking iteration variant
164-
29634.759, # HLT phase-2 timing menu Alpaka, single tracking iteration, LST seeding + CKF building variant
165-
29634.757, # HLT phase-2 timing menu, with NANO:@Phase2HLT
164+
29634.757, # HLT phase-2 timing menu Alpaka, single tracking iteration, LST seeding + CKF building variant
165+
29634.759, # HLT phase-2 timing menu, with NANO:@Phase2HLT
166166
29634.77, # HLT phase-2 NGT Scouting menu
167-
29634.771] # HLT phase-2 NGT Scouting menu, with NANO:@NGTScouting
167+
29634.771, # HLT phase-2 NGT Scouting menu, with NANO:@NGTScouting
168+
29634.772] # HLT phase-2 NGT Scouting menu, with NANO:@NGTScoutingVal
168169
}
169170

170171
predefinedSet['limited'] = (

0 commit comments

Comments
 (0)