Skip to content

Commit 8fd34ae

Browse files
authored
Merge pull request #48153 from kpedro88/Run3-WF5
Update FastSim 2024 Era, add 2025 workflow
2 parents 07f3fa9 + 64fb850 commit 8fd34ae

File tree

6 files changed

+31
-4
lines changed

6 files changed

+31
-4
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import FWCore.ParameterSet.Config as cms
2+
3+
from Configuration.Eras.Era_Run3_2024_cff import Run3_2024
4+
from Configuration.Eras.Modifier_run3_GEM_cff import run3_GEM
5+
6+
Run3_2024_FastSim = Run3_2024.copyAndExclude([run3_GEM])
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import FWCore.ParameterSet.Config as cms
2+
3+
from Configuration.Eras.Era_Run3_2025_cff import Run3_2025
4+
from Configuration.Eras.Modifier_run3_GEM_cff import run3_GEM
5+
6+
Run3_2025_FastSim = Run3_2025.copyAndExclude([run3_GEM])

Configuration/PyReleaseValidation/python/relval_2017.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,11 @@
5151
# 2024 (TTbar, TTbar PU, TTbar PU premix, TTbar PU prod-like)
5252
# (TTbar trackingMkFit)
5353
# (Alpaka Pixel Only, Alpaka ECal only)
54-
# (TTbar FastSim, TTbar FastSim PU, MinBiasFS for mixing))
54+
# (TTbar FastSim, TTbar FastSim PU, MinBiasFS for mixing)
5555
# (ZEE)
5656
# (Nu Gun)
5757
# 2025 (TTbar, TTbar PU)
58+
# (TTbar FastSim, TTbar FastSim PU, MinBiasFS for mixing)
5859

5960
numWFIB = [10001.0,10002.0,10003.0,10004.0,10005.0,10006.0,10007.0,10008.0,10009.0,10059.0,10071.0,
6061
10042.0,10024.0,10025.0,10026.0,10023.0,10224.0,10225.0,10424.0,
@@ -104,7 +105,9 @@
104105
12846.0,
105106
12861.0,
106107
# 2025
107-
16834.0, 17034.0,]
108+
16834.0, 17034.0,
109+
18034.0, 18234.0, 18040.303,
110+
]
108111

109112
for numWF in numWFIB:
110113
if not numWF in _upgrade_workflows:

Configuration/PyReleaseValidation/python/relval_steps.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4606,6 +4606,7 @@ def gen2024HiMix(fragment,howMuch):
46064606
defaultDataSets['2024HLTOnDigi'] = defaultDataSets["2024SimOnGen"] = defaultDataSets['2024']
46074607
defaultDataSets["2025HLTOnDigi"] = defaultDataSets["2025SimOnGen"] = defaultDataSets['2025']
46084608
defaultDataSets['2024FS']='CMSSW_13_0_11-130X_mcRun3_2023_realistic_withEarly2023BS_v1_FastSim-v' #To replace with new dataset
4609+
defaultDataSets['2025FS']='CMSSW_13_0_11-130X_mcRun3_2023_realistic_withEarly2023BS_v1_FastSim-v' #To replace with new dataset
46094610
defaultDataSets['Run4D49']='CMSSW_12_0_0_pre4-113X_mcRun4_realistic_v7_2026D49noPU-v'
46104611
defaultDataSets['Run4D76']='CMSSW_12_0_0_pre4-113X_mcRun4_realistic_v7_2026D76noPU-v'
46114612
defaultDataSets['Run4D77']='CMSSW_12_1_0_pre2-113X_mcRun4_realistic_v7_2026D77noPU-v'

Configuration/PyReleaseValidation/python/upgradeWorkflowComponents.py

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@
5050
'2025HLTOnDigiPU',
5151
'2025SimOnGen',
5252
'2025GenOnly',
53+
'2025FS',
54+
'2025FSPU',
5355
]
5456

5557
upgradeKeys['Run4'] = [
@@ -3238,7 +3240,7 @@ def condition(self, fragment, stepList, key, hasHarvest):
32383240
'Geom' : 'DB:Extended',
32393241
'GT' : 'auto:phase1_2024_realistic',
32403242
'HLTmenu': '@relval2024',
3241-
'Era' : 'Run3_FastSim',
3243+
'Era' : 'Run3_2024_FastSim',
32423244
'BeamSpot': 'DBrealistic',
32433245
'ScenToRun' : ['Gen','FastSimRun3','HARVESTFastRun3'],
32443246
},
@@ -3274,7 +3276,14 @@ def condition(self, fragment, stepList, key, hasHarvest):
32743276
'BeamSpot': 'DBrealistic',
32753277
'ScenToRun' : ['Gen','Sim','Digi','RecoNano','HARVESTNano','ALCA'],
32763278
},
3277-
3279+
'2025FS' : {
3280+
'Geom' : 'DB:Extended',
3281+
'GT' : 'auto:phase1_2025_realistic',
3282+
'HLTmenu': '@relval2025',
3283+
'Era' : 'Run3_2025_FastSim',
3284+
'BeamSpot': 'DBrealistic',
3285+
'ScenToRun' : ['Gen','FastSimRun3','HARVESTFastRun3'],
3286+
},
32783287
}
32793288

32803289
# standard PU sequences

Configuration/StandardSequences/python/Eras.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,11 @@ def __init__(self):
5454
'Run3_2023_UPC',
5555
'Run3_2024_ppRef',
5656
'Run3_2024_UPC',
57+
'Run3_2024_FastSim',
5758
'Run3_2025_UPC',
5859
'Run3_2025_OXY',
5960
'Run3_2025_UPC_OXY',
61+
'Run3_2025_FastSim',
6062
'Phase2',
6163
'Phase2_noMkFit',
6264
'Phase2C9',

0 commit comments

Comments
 (0)