-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #43210 from aloeliger/Phase2_GT_Menu_Workflow
Phase 2 L1 cmsDriver/Menu Infrastructure
- Loading branch information
Showing
5 changed files
with
70 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
Configuration/StandardSequences/python/SimPhase2L1GlobalTriggerEmulator_cff.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Make the phase 2 GT book end configs available as standard sequences for the cmsDriver | ||
# Written by: Andrew Loeliger | ||
import FWCore.ParameterSet.Config as cms | ||
|
||
from L1Trigger.Configuration.SimPhase2L1GlobalTrigger_cff import * |
4 changes: 4 additions & 0 deletions
4
L1Trigger/Configuration/python/Phase2GTMenus/SeedDefinitions/prototypeSeeds.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Concatenate prototype menu seeds somewhere easy to handle | ||
from L1Trigger.Phase2L1GT.l1tGTMenu_hadr_metSeeds_cff import * | ||
|
||
from L1Trigger.Phase2L1GT.l1tGTMenu_lepSeeds_cff import * |
5 changes: 5 additions & 0 deletions
5
L1Trigger/Configuration/python/Phase2GTMenus/prototype_2023_v1_0_0.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# The first prototype menu | ||
|
||
menu = [ | ||
'L1Trigger.Configuration.Phase2GTMenus.SeedDefinitions.prototypeSeeds' | ||
] |
20 changes: 20 additions & 0 deletions
20
L1Trigger/Configuration/python/SimPhase2L1GlobalTrigger_cff.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Make Phase 2 Global Trigger "book end" configurations available as an L1 Configuration file | ||
# To be made available later in Configuration/StandardSequences. | ||
# It's a little circuitous, I admit, but seems correct to be available _everywhere_ | ||
# Written by: Andrew Loeliger | ||
|
||
import FWCore.ParameterSet.Config as cms | ||
|
||
# Get the GT Producer/first of the "book end"s, responsible for GT inputs | ||
from L1Trigger.Phase2L1GT.l1tGTProducer_cff import l1tGTProducer | ||
|
||
l1tGTProducerSequence = cms.Sequence( | ||
l1tGTProducer | ||
) | ||
|
||
# Get the Algo Block/second of the "book end"s, responsible for trigger results | ||
from L1Trigger.Phase2L1GT.l1tGTAlgoBlockProducer_cff import l1tGTAlgoBlockProducer | ||
|
||
l1tGTAlgoBlockProducerSequence = cms.Sequence( | ||
l1tGTAlgoBlockProducer | ||
) |