Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
atlas
athena
Merge requests
!53840
Sweeping
!53526
from master to 22.0. Component accumulator in DAODs - part 7: MET association
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Sweeping
!53526
from master to 22.0. Component accumulator in DAODs - part 7: MET association
cherry-pick-8015ddf7d99-22.0
into
22.0
Overview
4
Commits
1
Pipelines
1
Changes
2
Merged
Atlas Nightlybuild
requested to merge
cherry-pick-8015ddf7d99-22.0
into
22.0
2 years ago
Overview
4
Commits
1
Pipelines
1
Changes
2
Expand
Component accumulator in DAODs - part 7: MET association
See merge request
!53526 (merged)
0
0
Merge request reports
Compare
22.0
22.0 (base)
and
latest version
latest version
bc4371f7
1 commit,
2 years ago
2 files
+
28
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
PhysicsAnalysis/DerivationFramework/DerivationFrameworkJetEtMiss/python/METCommonConfig.py
0 → 100644
+
24
−
0
Options
# Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
#********************************************************************
# METCommonConfig.py
# Configures DF MET content building and association tools
# Component accumulator version
#********************************************************************
from
AthenaConfiguration.ComponentAccumulator
import
ComponentAccumulator
def
METAssociationAlgCfg
(
ConfigFlags
,
algname
=
'
METStandardAssociationAlg
'
):
"""
Configure MET for the derivation framework
"""
acc
=
ComponentAccumulator
()
from
METReconstruction.METAssocCfg
import
getMETAssocAlg
from
METReconstruction.METRecoFlags
import
metFlags
standardConfigs
=
{
k
:
v
for
k
,
v
in
metFlags
.
METAssocConfigs
().
items
()
if
(
"
EMTopo
"
in
k
or
"
EMPFlow
"
in
k
)}
assocAlg
=
getMETAssocAlg
(
algname
,
standardConfigs
)
acc
.
addEventAlgo
(
assocAlg
)
return
acc
Loading