/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
L1Trigger/Configuration/python/L1Reco_cff.py
40 строк
1 KB
Mark Grimes
Rearrange Stage 1 trigger configuration setup to be more modular
15 окт 2015, 13:45
15 окт 2015, 13:45
6dd55d7
Код
Авторство
О чём код?
import FWCore.ParameterSet.Config as cms # L1 reconstruction sequence for data and MC # L1Extra (all BxInEvent) # L1GtTriggerMenuLite # l1GtRecord - requires functional L1 O2O # l1L1GtObjectMap - L1 trigger object maps, now produced with the convertor # # V.M. Ghete 2009-07-11 # L1Extra from L1Trigger.L1ExtraFromDigis.l1extraParticles_cfi import * l1extraParticles.centralBxOnly = False # L1 GT lite record from EventFilter.L1GlobalTriggerRawToDigi.l1GtRecord_cfi import * # L1GtTriggerMenuLite from EventFilter.L1GlobalTriggerRawToDigi.l1GtTriggerMenuLite_cfi import * # If the Stage 1 trigger is running, there is also some different configuration. # Note that this file does nothing if the stage1L1Trigger era is not active, so # it is safe to import even if the Stage 1 trigger is not required. from L1Trigger.Configuration.ConditionalStage1Configuration_cff import * # conditions in edm import EventFilter.L1GlobalTriggerRawToDigi.conditionDumperInEdm_cfi conditionsInEdm = EventFilter.L1GlobalTriggerRawToDigi.conditionDumperInEdm_cfi.conditionDumperInEdm.clone() # l1L1GtObjectMap from L1Trigger.GlobalTrigger.convertObjectMapRecord_cfi import * l1L1GtObjectMap = convertObjectMapRecord.clone() # sequences L1Reco_L1Extra = cms.Sequence(l1extraParticles) L1Reco_L1Extra_L1GtRecord = cms.Sequence(l1extraParticles+l1GtRecord) # L1Reco = cms.Sequence(l1extraParticles+l1GtTriggerMenuLite+conditionsInEdm+l1L1GtObjectMap)