/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Configuration/DataProcessing/python/Impl/trackingOnlyEra_Run2_2017.py
36 строк
1 KB
Javier
Remove EI from RECO
16 дек 2021, 18:59
16 дек 2021, 18:59
d50fea7
Код
Авторство
О чём код?
#!/usr/bin/env python3 """ _trackingOnlyEra_Run2_2017 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_2017_cff import Run2_2017 from Configuration.DataProcessing.Impl.pp import pp class trackingOnlyEra_Run2_2017(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_2017_trackingOnly self.recoSeq=':reconstruction_trackingOnly' self.cbSc='pp' self.eras=Run2_2017 self.promptCustoms += [ 'Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2017' ] self.expressCustoms += [ 'Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2017_express_trackingOnly' ] self.visCustoms += [ 'Configuration/DataProcessing/RecoTLR.customisePostEra_Run2_2017' ] """ _trackingOnlyEra_Run2_2017 Implement configuration building for data processing for proton collision data taking for Run2, 2017 high performance beamspot """