/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
SLHCUpgradeSimulations/Configuration/python/postLS1CustomsPreMixing.py
34 строки
976 B
Shahzad Malik Muzaffar
[SIMULATION-UPGRADE] py2/3 compatibility:drop use of __future__
22 ноя 2024, 20:18
22 ноя 2024, 20:18
2bb837a
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms from SLHCUpgradeSimulations.Configuration.muonCustomsPreMixing import customise_csc_PostLS1 from . import postLS1Customs def customisePostLS1(process): # apply the general 25 ns post-LS1 customisation process = postLS1Customs.customisePostLS1(process) # deal with premixing-specific CSC changes separately process = customise_csc_PostLS1(process) return process def customisePostLS1_50ns(process): # apply the general 25 ns post-LS1 customisation process = postLS1Customs.customisePostLS1_50ns(process) # deal with premixing-specific CSC changes separately process = customise_csc_PostLS1(process) return process def customisePostLS1_HI(process): # apply the general 25 ns post-LS1 customisation process = postLS1Customs.customisePostLS1_HI(process) # deal with premixing-specific CSC changes separately process = customise_csc_PostLS1(process) return process