/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
RecoLocalCalo/Configuration/python/customiseHBHEreco.py
19 строк
826 B
Andrea Bocci
Remove legacy CUDA modules for HCAL local reconstruction
19 мар 2025, 01:18
Не верифицирован
19 мар 2025, 01:18
e5e6437
Код
Авторство
О чём код?
# Set M0 as default HCAL reconstruction over full HBHE Digi range # To be used in cmsDriver command: # --customise RecoLocalCalo/Configuration/customiseHBHEreco.hbheUseM0FullRangePhase1 import FWCore.ParameterSet.Config as cms def hbheUseM0FullRangePhase1(process): if hasattr(process,'hbhereco'): process.hbhereco.tsFromDB = False process.hbhereco.recoParamsFromDB = False process.hbhereco.sipmQTSShift = -99 process.hbhereco.sipmQNTStoSum = 99 process.hbhereco.algorithm.useMahi = False process.hbhereco.algorithm.useM2 = False process.hbhereco.algorithm.useM3 = False process.hbhereco.algorithm.correctForPhaseContainment = False process.hbhereco.algorithm.firstSampleShift = -999 process.hbhereco.algorithm.samplesToAdd = 10 return(process)