Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Phase-2 TauMinator Tau (NNCaloTau) #42840

Merged
merged 1 commit into from
Feb 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions L1Trigger/Configuration/python/L1Trigger_EventContent_cff.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,8 @@ def _appendPhase2Digis(obj):
'keep *_l1tTowerCalibration_*_*',
'keep *_l1tCaloJet_*_*',
'keep *_l1tCaloJetHTT_*_*',
'keep *_l1tNNCaloTauProducer_*_*',
'keep *_l1tNNCaloTauEmulator_*_*',
'keep *_l1tPFClustersFromL1EGClusters_*_*',
'keep *_l1tPFClustersFromCombinedCaloHCal_*_*',
'keep *_l1tPFClustersFromCombinedCaloHF_*_*',
Expand Down
8 changes: 7 additions & 1 deletion L1Trigger/Configuration/python/SimL1Emulator_cff.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
from L1Trigger.L1CaloTrigger.l1tPhase2L1CaloEGammaEmulator_cfi import *
_phase2_siml1emulator.add(l1tPhase2L1CaloEGammaEmulator)

# Barrel and EndCap CaloJet/HT
# Barrel and EndCap CaloJet/HT/NNCaloTau
# ########################################################################
# ---- Produce the calibrated tower collection combining Barrel, HGCal, HF
from L1Trigger.L1CaloTrigger.l1tTowerCalibrationProducer_cfi import *
Expand All @@ -113,6 +113,12 @@
l1tCaloJetHTT = l1tCaloJetHTTProducer.clone(
BXVCaloJetsInputTag = ("L1CaloJet", "CaloJets")
)
# ---- Produce the NNCaloTau
from L1Trigger.L1CaloTrigger.l1tNNCaloTauProducer_cfi import *
_phase2_siml1emulator.add(l1tNNCaloTauProducer)

from L1Trigger.L1CaloTrigger.l1tNNCaloTauEmulator_cfi import *
_phase2_siml1emulator.add(l1tNNCaloTauEmulator)


_phase2_siml1emulator.add(l1tTowerCalibration)
Expand Down
3 changes: 3 additions & 0 deletions L1Trigger/L1CaloTrigger/plugins/BuildFile.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@
<use name="L1Trigger/L1CaloTrigger"/>
<use name="DataFormats/L1THGCal"/>
<use name="L1Trigger/L1TCalorimeter"/>
<use name="L1Trigger/Phase2L1ParticleFlow"/>
<use name="FWCore/ParameterSet"/>
<use name="PhysicsTools/TensorFlow"/>
<use name="root"/>
<use name="boost"/>
<use name="roottmva"/>
<flags EDM_PLUGIN="1"/>
Loading