Skip to content
Snippets Groups Projects
Commit b0015d47 authored by Antonio De Maria's avatar Antonio De Maria Committed by Edward Moyse
Browse files

Update TauTrig collection in Derivations

Update TauTrig collection in Derivations
parent b752c917
No related branches found
No related tags found
No related merge requests found
......@@ -66,7 +66,8 @@ def FullListOfSmartContainers(flags=None):
"HLT_xAOD__TrigVertexCountsContainer_vertexcounts",
"HLT_AntiKt4EMPFlowJets_subresjesgscIS_ftf",
"HLT_IDVertex_FS",
"HLT_IDTrack_FS_FTF"
"HLT_IDTrack_FS_FTF",
"HLT_TrigTauRecMerged_MVA"
]
if flags is not None and flags.Tracking.doPseudoTracking:
......
......@@ -200,7 +200,10 @@ class SlimmingHelper:
if (self.IncludeTauTriggerContent is True):
triggerContent = True
self.SmartCollections.append("HLT_xAOD__TauJetContainer_TrigTauRecMerged")
if self.flags.Trigger.EDMVersion == 2:
self.SmartCollections.append("HLT_xAOD__TauJetContainer_TrigTauRecMerged")
elif self.flags.Trigger.EDMVersion == 3:
self.SmartCollections.append("HLT_TrigTauRecMerged_MVA")
if (self.IncludeBJetTriggerContent is True):
triggerContent = True
......@@ -603,8 +606,11 @@ class SlimmingHelper:
from DerivationFrameworkCore.EtMissTriggerContent import EtMissTriggerContent
items.extend(EtMissTriggerContent)
elif collectionName=="HLT_xAOD__TauJetContainer_TrigTauRecMerged":
from DerivationFrameworkCore.TauTriggerContent import TauTriggerContent
items.extend(TauTriggerContent)
from DerivationFrameworkCore.TauTriggerContent import TauTriggerContentRun2
items.extend(TauTriggerContentRun2)
elif collectionName=="HLT_TrigTauRecMerged_MVA":
from DerivationFrameworkCore.TauTriggerContent import TauTriggerContentRun3
items.extend(TauTriggerContentRun3)
elif collectionName=="HLT_xAOD__BTaggingContainer_HLTBjetFex":
from DerivationFrameworkFlavourTag.BJetTriggerContent import BJetTriggerContent
items.extend(BJetTriggerContent)
......
# Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
# Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
TauTriggerContent = [
#Run2 collections
TauTriggerContentRun2 = [
"HLT_xAOD__TauJetContainer_TrigTauRecMerged",
"HLT_xAOD__TauJetContainer_TrigTauRecMergedAux.",
"LVL1EmTauRoIs",
"LVL1EmTauRoIsAux."
]
#Run3 collections
TauTriggerContentRun3 = [
"HLT_TrigTauRecMerged_MVA",
"HLT_TrigTauRecMerged_MVAAux.",
"LVL1EmTauRoIs",
"LVL1EmTauRoIsAux.",
"L1_eTauRoI",
"L1_eTauRoIAux.",
"L1_cTauRoI",
"L1_cTauRoIAux."
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment