Skip to content

Commit

Permalink
Add 9x9 and trimmed 9x9 sequence to test config.
Browse files Browse the repository at this point in the history
  • Loading branch information
EmyrClement committed Feb 5, 2021
1 parent c8de5ec commit 7189024
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions L1Trigger/L1CaloTrigger/test/test_Phase1L1TJets_cfg.py
Expand Up @@ -18,18 +18,34 @@
#)
)

# Loads 7x7 sequence
process.load('L1Trigger.L1CaloTrigger.Phase1L1TJets_cff')

# Load 9x9 sequence
process.load('L1Trigger.L1CaloTrigger.Phase1L1TJets_9x9_cff')

# Load trimmed 9x9 sequence
process.load('L1Trigger.L1CaloTrigger.Phase1L1TJets_9x9trimmed_cff')

# AK4 PF jets
process.load('L1Trigger.Phase2L1ParticleFlow.l1pfJetMet_cff')
process.l1PFJets = cms.Sequence( process.ak4PFL1Puppi + process.ak4PFL1PuppiCorrected )


process.out = cms.OutputModule("PoolOutputModule",
fileName = cms.untracked.string('myOutputFile.root'),
outputCommands = cms.untracked.vstring(
"drop *",
"keep *_Phase1L1TJetProducer_*_*",
"keep *_Phase1L1TJetProducer*_*_*",
"keep *_Phase1L1TJetSumsProducer*_*_*",
"keep *_ak4GenJetsNoNu_*_*",
"keep *_Phase1L1TJetCalibrator_*_*",
"keep *_Phase1L1TJetCalibrator*_*_*",
"keep *_ak4PFL1Puppi*_*_*",
"keep *_l1PFMetPuppi*_*_*",
"keep *_genMetTrue_*_*"
),
)

process.p = cms.Path(process.Phase1L1TJetsSequence)
process.p = cms.Path(process.Phase1L1TJetsSequence * process.Phase1L1TJetsSequence9x9 * process.Phase1L1TJetsSequence9x9trimmed * process.l1PFJets * process.l1PFMetPuppi )

process.e = cms.EndPath(process.out)

0 comments on commit 7189024

Please sign in to comment.