Skip to content

Commit 7d1afdf

Browse files
authored
Merge pull request #46068 from srimanob/142X_2024FS
Add 2024 FastSim workflow
2 parents 6629972 + 0c0a407 commit 7d1afdf

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

Configuration/PyReleaseValidation/python/relval_2017.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
12834.0,13034.0,13034.99,13034.21,
100100
12834.7,
101101
12834.402, 12834.412,
102-
14434.0, 14634.0, 14440.303,
102+
16434.0, 16634.0, 16440.303,
103103
12846.0,
104104
12861.0]
105105

Configuration/PyReleaseValidation/python/relval_steps.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4377,6 +4377,7 @@ def gen2024HiMix(fragment,howMuch):
43774377
defaultDataSets['2024']='CMSSW_14_0_0_pre3-140X_mcRun3_2024_realistic_v1_STD_2024_noPU-v'
43784378
defaultDataSets['2024HLTOnDigi']='CMSSW_14_0_0_pre3-140X_mcRun3_2024_realistic_v1_STD_2024_noPU-v'
43794379
defaultDataSets["2024SimOnGen"] = 'CMSSW_14_0_0_pre3-140X_mcRun3_2024_realistic_v1_STD_2024_noPU-v'
4380+
defaultDataSets['2024FS']='CMSSW_13_0_11-130X_mcRun3_2023_realistic_withEarly2023BS_v1_FastSim-v' #To replace with new dataset
43804381
defaultDataSets['2026D49']='CMSSW_12_0_0_pre4-113X_mcRun4_realistic_v7_2026D49noPU-v'
43814382
defaultDataSets['2026D76']='CMSSW_12_0_0_pre4-113X_mcRun4_realistic_v7_2026D76noPU-v'
43824383
defaultDataSets['2026D77']='CMSSW_12_1_0_pre2-113X_mcRun4_realistic_v7_2026D77noPU-v'

Configuration/PyReleaseValidation/python/upgradeWorkflowComponents.py

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@
4040
'2024HLTOnDigiPU',
4141
'2024GenOnly',
4242
'2024SimOnGen',
43+
'2024FS',
44+
'2024FSPU',
4345
]
4446

4547
upgradeKeys[2026] = [
@@ -2748,7 +2750,7 @@ def setup_(self, step, stepName, stepDict, k, properties):
27482750
else:
27492751
stepDict[stepName][k] = merge([stepDict[step][k]])
27502752
def condition(self, fragment, stepList, key, hasHarvest):
2751-
return ('2021FS' in key or '2023FS' in key)
2753+
return ('FS' in key)
27522754
upgradeWFs['Run3FStrackingOnly'] = UpgradeWorkflow_Run3FStrackingOnly(
27532755
steps = [
27542756
'Gen',
@@ -2775,7 +2777,7 @@ def setup_(self, step, stepName, stepDict, k, properties):
27752777
else:
27762778
stepDict[stepName][k] = None
27772779
def condition(self, fragment, stepList, key, hasHarvest):
2778-
return ('2021FS' in key or '2023FS' in key) and fragment=="MinBias_14TeV"
2780+
return ('FS' in key) and fragment=="MinBias_14TeV"
27792781
upgradeWFs['Run3FSMBMixing'] = UpgradeWorkflow_Run3FSMBMixing(
27802782
steps = [
27812783
'Gen',
@@ -3122,6 +3124,14 @@ def condition(self, fragment, stepList, key, hasHarvest):
31223124
'BeamSpot': 'DBrealistic',
31233125
'ScenToRun' : ['Gen','Sim','Digi','RecoNano','HARVESTNano','ALCA'],
31243126
},
3127+
'2024FS' : {
3128+
'Geom' : 'DB:Extended',
3129+
'GT' : 'auto:phase1_2024_realistic',
3130+
'HLTmenu': '@relval2024',
3131+
'Era' : 'Run3_FastSim',
3132+
'BeamSpot': 'DBrealistic',
3133+
'ScenToRun' : ['Gen','FastSimRun3','HARVESTFastRun3'],
3134+
},
31253135
}
31263136

31273137
# standard PU sequences

0 commit comments

Comments
 (0)