/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Configuration/DataProcessing/python/Impl/AlCaTestEnable.py
33 строки
773 B
David
move to python3
06 июл 2021, 16:04
06 июл 2021, 16:04
a30ec46
Код
Авторство
О чём код?
#!/usr/bin/env python3 """ _AlCaTestEnable_ Scenario supporting proton collisions """ from Configuration.DataProcessing.Impl.AlCa import * class AlCaTestEnable(AlCa): def __init__(self): AlCa.__init__(self) self.skims=['TkAlLAS'] """ _AlCaTestEnable_ Implement configuration building for data processing for proton collision data taking """ def expressProcessing(self, globalTag, **args): """ _expressProcessing_ Proton collision data taking express processing """ if 'skims' in args: if 'EcalTestPulsesRaw' not in args['skims']: args['skims'].append('EcalTestPulsesRaw') return super(AlCaTestEnable, self).expressProcessing(globalTag, **args)