Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:19:27

0001 # Make Phase 2 Global Trigger "book end" configurations available as an L1 Configuration file
0002 # To be made available later in Configuration/StandardSequences.
0003 # It's a little circuitous, I admit, but seems correct to be available _everywhere_
0004 # Written by: Andrew Loeliger
0005 
0006 import FWCore.ParameterSet.Config as cms
0007 
0008 # Get the GT Producer/first of the "book end"s, responsible for GT inputs
0009 from L1Trigger.Phase2L1GT.l1tGTProducer_cff import l1tGTProducer
0010 
0011 l1tGTProducerSequence = cms.Sequence(
0012     l1tGTProducer
0013 )
0014 
0015 # Get the Algo Block/second of the "book end"s, responsible for trigger results
0016 from L1Trigger.Phase2L1GT.l1tGTAlgoBlockProducer_cff import l1tGTAlgoBlockProducer
0017 
0018 l1tGTAlgoBlockProducerSequence = cms.Sequence(
0019     l1tGTAlgoBlockProducer
0020 )