/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Configuration/PyReleaseValidation/python/relval_2017.py
111 строк
4 KB
Matti Kortelainen
Remove Run 1-3 and disable Phase 2 RelVal workflows that read existing non-RAW files
02 июн 2026, 22:59
02 июн 2026, 22:59
b688d7c
Код
Авторство
О чём код?
# import the definition of the steps and input files: from Configuration.PyReleaseValidation.relval_steps import * from .MatrixUtil import Matrix # here only define the workflows as a combination of the steps defined above: workflows = Matrix() # each workflow defines a name and a list of steps to be done. # if no explicit name/label given for the workflow (first arg), # the name of step1 will be used from Configuration.PyReleaseValidation.relval_upgrade import workflows as _upgrade_workflows #WFs to run in IB: # 2017 (ele guns 10, 35, 1000; pho guns 10, 35; mu guns 1, 10, 100, 1000, QCD 3TeV, QCD Flat) # (ZMM, TTbar, ZEE, MinBias, TTbar design) # (TTbar trackingOnly, trackingRun2, trackingOnlyRun2, trackingLowPU, pixelTrackingOnly) # 2018 (ele guns 10, 35, 1000; pho guns 10, 35; mu guns 1, 10, 100, 1000, QCD 3TeV, QCD Flat) # (pho guns 10, 35 with photonDRN enabled) # 2018 (ZMM, TTbar, ZEE, MinBias, TTbar design) # (TTbar trackingOnly, pixelTrackingOnly) # (HE collapse: TTbar, TTbar design) # (ParkingBPH: TTbar) # (Patatrack pixel-only: ZMM - on CPU: quadruplets, triplets) # (Patatrack pixel-only: TTbar - on CPU: quadruplets, triplets) # (Patatrack ECAL-only: TTbar - on CPU) # (Patatrack HCAL-only: TTbar - on CPU) # 2021 (DD4hep XML: TTbar, ZMM) # (DDD DB: TTbar, ZMM) # (ele guns 10, 35, 1000; pho guns 10, 35; mu guns 1, 10, 100, 1000, QCD 3TeV, QCD Flat) # (ZMM, TTbar, ZEE, MinBias, TTbar design) # (TTbar trackingOnly, pixelTrackingOnly, trackingMkFit, trackdnn) # (TTbar with JME NanoAOD) # (TTbar 0T) # (TTbar FastSim) # (QCD 1.8TeV DeepCore) # (TTbar DigiNoHLT) # 2023 (TTbar) # (TTbar trackingMkFit) # (Patatrack pixel-only: TTbar - on CPU: quadruplets, triplets) # (Patatrack ECAL-only: TTbar - on CPU) # (Patatrack HCAL-only: TTbar - on CPU) # (Patatrack pixel-only: ZMM - on CPU: quadruplets, triplets) # (TTbar FastSim) # (ZEE) # (Nu Gun) # 2024 (TTbar) # (TTbar trackingMkFit) # (Alpaka Pixel Only, Alpaka ECal only) # (TTbar FastSim) # (ZEE) # (Nu Gun) # 2025 (TTbar) # (TTbar FastSim) # (TTbar hybrid PU) # 2026 (TTbar) numWFIB = [10001.0,10002.0,10003.0,10004.0,10005.0,10006.0,10007.0,10008.0,10009.0,10059.0,10071.0, 10042.0,10024.0,10025.0,10424.0, 10024.1,10024.2,10024.3,10024.4,10024.5, # 2018 10801.0,10802.0,10803.0,10804.0,10805.0,10806.0,10807.0,10808.0,10809.0,10859.0,10871.0, 10804.31, 10805.31, 10842.0,10824.0,10825.0,10826.0,10823.0,11224.0, 10824.1,10824.5, 10824.6,11224.6, 10824.8, 10842.501,10842.505, 10824.501,10824.505, 10824.511, 10824.521, # 2021 11634.911, 11650.911, 11634.914, 11650.914, 11601.0,11602.0,11603.0,11604.0,11605.0,11606.0,11607.0,11608.0,11609.0,11630.0,11643.0, 11650.0,11634.0,11646.0,11640.0,12034.0, 11634.1,11634.5,11634.7,11634.71,11634.72,11634.91, 11634.15, 11634.24, 13234.0, 11723.17, 11634.601, # 2023 12434.0, 12434.7, 12434.501,12434.505, 12434.511, 12434.521, 12450.501,12450.505, 14034.0, 12446.0, 12461.0, # 2024 12834.0, 12834.7, 12834.402, 12834.412, 16434.0, 12846.0, 12861.0, # 2025 16834.0, 18034.0, 17034.96, # 2026 18434.0, ] for numWF in numWFIB: if not numWF in _upgrade_workflows: continue workflows[numWF] = _upgrade_workflows[numWF]