/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Configuration/StandardSequences/python/ProcessFromBareGEN_cff.py
22 строки
815 B
Giulio Eulisse
Snapshot of CMSSW_6_2_0_pre8.
26 июн 2013, 18:12
26 июн 2013, 18:12
214ab73
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms def customise(process): # Remove the old RNGState product and Trigger on output RNGStateCleaning= cms.PSet( outputCommands=cms.untracked.vstring('drop RandomEngineStates_*_*_*', 'keep RandomEngineStates_*_*_'+process.name_()) ) for item in process.outputModules_().values(): item.outputCommands.extend(RNGStateCleaning.outputCommands) TRGResultCleaning= cms.PSet( outputCommands=cms.untracked.vstring('drop edmTriggerResults_*_*_*', 'keep edmTriggerResults_*_*_'+process.name_()) ) for item in process.outputModules_().values(): item.outputCommands.extend(TRGResultCleaning.outputCommands) return(process)