Skip to content

Commit

Permalink
Merge pull request #46068 from srimanob/142X_2024FS
Browse files Browse the repository at this point in the history
Add 2024 FastSim workflow
  • Loading branch information
cmsbuild authored Oct 2, 2024
2 parents 6629972 + 0c0a407 commit 7d1afdf
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Configuration/PyReleaseValidation/python/relval_2017.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
12834.0,13034.0,13034.99,13034.21,
12834.7,
12834.402, 12834.412,
14434.0, 14634.0, 14440.303,
16434.0, 16634.0, 16440.303,
12846.0,
12861.0]

Expand Down
1 change: 1 addition & 0 deletions Configuration/PyReleaseValidation/python/relval_steps.py
Original file line number Diff line number Diff line change
Expand Up @@ -4377,6 +4377,7 @@ def gen2024HiMix(fragment,howMuch):
defaultDataSets['2024']='CMSSW_14_0_0_pre3-140X_mcRun3_2024_realistic_v1_STD_2024_noPU-v'
defaultDataSets['2024HLTOnDigi']='CMSSW_14_0_0_pre3-140X_mcRun3_2024_realistic_v1_STD_2024_noPU-v'
defaultDataSets["2024SimOnGen"] = 'CMSSW_14_0_0_pre3-140X_mcRun3_2024_realistic_v1_STD_2024_noPU-v'
defaultDataSets['2024FS']='CMSSW_13_0_11-130X_mcRun3_2023_realistic_withEarly2023BS_v1_FastSim-v' #To replace with new dataset
defaultDataSets['2026D49']='CMSSW_12_0_0_pre4-113X_mcRun4_realistic_v7_2026D49noPU-v'
defaultDataSets['2026D76']='CMSSW_12_0_0_pre4-113X_mcRun4_realistic_v7_2026D76noPU-v'
defaultDataSets['2026D77']='CMSSW_12_1_0_pre2-113X_mcRun4_realistic_v7_2026D77noPU-v'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@
'2024HLTOnDigiPU',
'2024GenOnly',
'2024SimOnGen',
'2024FS',
'2024FSPU',
]

upgradeKeys[2026] = [
Expand Down Expand Up @@ -2748,7 +2750,7 @@ def setup_(self, step, stepName, stepDict, k, properties):
else:
stepDict[stepName][k] = merge([stepDict[step][k]])
def condition(self, fragment, stepList, key, hasHarvest):
return ('2021FS' in key or '2023FS' in key)
return ('FS' in key)
upgradeWFs['Run3FStrackingOnly'] = UpgradeWorkflow_Run3FStrackingOnly(
steps = [
'Gen',
Expand All @@ -2775,7 +2777,7 @@ def setup_(self, step, stepName, stepDict, k, properties):
else:
stepDict[stepName][k] = None
def condition(self, fragment, stepList, key, hasHarvest):
return ('2021FS' in key or '2023FS' in key) and fragment=="MinBias_14TeV"
return ('FS' in key) and fragment=="MinBias_14TeV"
upgradeWFs['Run3FSMBMixing'] = UpgradeWorkflow_Run3FSMBMixing(
steps = [
'Gen',
Expand Down Expand Up @@ -3122,6 +3124,14 @@ def condition(self, fragment, stepList, key, hasHarvest):
'BeamSpot': 'DBrealistic',
'ScenToRun' : ['Gen','Sim','Digi','RecoNano','HARVESTNano','ALCA'],
},
'2024FS' : {
'Geom' : 'DB:Extended',
'GT' : 'auto:phase1_2024_realistic',
'HLTmenu': '@relval2024',
'Era' : 'Run3_FastSim',
'BeamSpot': 'DBrealistic',
'ScenToRun' : ['Gen','FastSimRun3','HARVESTFastRun3'],
},
}

# standard PU sequences
Expand Down

0 comments on commit 7d1afdf

Please sign in to comment.