/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Configuration/DataProcessing/python/Impl/trackingOnlyEra_Run2_2018_highBetaStar.py
37 строк
1 KB
Javier
Remove EI from RECO
16 дек 2021, 18:59
16 дек 2021, 18:59
d50fea7
Код
Авторство
О чём код?
#!/usr/bin/env python3 """ _trackingOnlyEra_Run2_2018_highBetaStar Scenario supporting proton collisions and tracking only reconstruction for HP beamspot """ import os import sys from Configuration.DataProcessing.Impl.trackingOnly import trackingOnly import FWCore.ParameterSet.Config as cms from Configuration.Eras.Era_Run2_2018_highBetaStar_cff import Run2_2018_highBetaStar from Configuration.DataProcessing.Impl.pp import pp class trackingOnlyEra_Run2_2018_highBetaStar(trackingOnly): def __init__(self): trackingOnly.__init__(self) # tracking only RECO is sufficient, to run high performance BS at PCL; # some dedicated customization are required, though: customisePostEra_Run2_2018_trackingOnly self.recoSeq=':reconstruction_trackingOnly' self.cbSc='pp' self.eras=Run2_2018_highBetaStar #keep post-era parts the same as in the default 2018 era self.promptCustoms += [ 'Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2018' ] self.expressCustoms += [ 'Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2018_express_trackingOnly' ] self.visCustoms += [ 'Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2018' ] """ _trackingOnlyEra_Run2_2018_highBetaStar Implement configuration building for data processing for proton collision data taking for Run2, 2018 high performance beamspot in highBetaStar data taking """