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
!41182
TrigCost: Monitor only l1 seeded chains
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
TrigCost: Monitor only l1 seeded chains
aporeba/athena:cost-chain-seeded
into
master
Overview
4
Commits
4
Pipelines
2
Changes
10
Merged
Aleksandra Poreba
requested to merge
aporeba/athena:cost-chain-seeded
into
master
4 years ago
Overview
4
Commits
4
Pipelines
2
Changes
10
Expand
add an option to filter active chains by collection name
pass to Cost Data and monitor only l1 seeded chains
add MonitorChain class and dummy CounterChain class
Possible improvement:
create chainToAlg map only for l1 seeded chains
Tagging
@tamartin
@mark
Edited
4 years ago
by
Aleksandra Poreba
0
0
Merge request reports
Compare
master
version 2
87da92e3
4 years ago
version 1
47a45e14
4 years ago
master (base)
and
latest version
latest version
600c0c50
4 commits,
4 years ago
version 2
87da92e3
3 commits,
4 years ago
version 1
47a45e14
2 commits,
4 years ago
10 files
+
278
−
33
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
10
Search (e.g. *.vue) (Ctrl+P)
Trigger/TrigCost/TrigCostAnalysis/src/CostData.cxx
+
13
−
5
Options
/*
Copyright (C) 2002-201
9
CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-20
2
1 CERN for the benefit of the ATLAS collaboration
*/
#include
"CostData.h"
@@ -131,11 +131,19 @@ void CostData::setTypeMap( const std::unordered_map<uint32_t, std::string>& type
m_typeMapPtr
=
&
typeMap
;
}
void
CostData
::
set
AlgToChains
Map
(
const
std
::
map
<
std
::
string
,
std
::
vector
<
TrigConf
::
Chain
>>&
algToChains
)
{
m_
algToChains
=
&
algToChains
;
void
CostData
::
set
ChainToAlg
Map
(
const
std
::
map
<
std
::
string
,
std
::
set
<
size_t
>>&
chainToAlgIdx
)
{
m_
chainToAlgIdx
=
&
chainToAlgIdx
;
}
const
std
::
map
<
std
::
string
,
std
::
vector
<
TrigConf
::
Chain
>>&
CostData
::
algToChainsMap
()
const
{
return
*
m_algToChains
;
const
std
::
map
<
std
::
string
,
std
::
set
<
size_t
>>&
CostData
::
chainToAlgMap
()
const
{
return
*
m_chainToAlgIdx
;
}
const
std
::
set
<
TrigCompositeUtils
::
DecisionID
>&
CostData
::
seededChains
()
const
{
return
*
m_seededChains
;
}
void
CostData
::
setSeededChains
(
const
std
::
set
<
TrigCompositeUtils
::
DecisionID
>&
seededChains
)
{
m_seededChains
=
&
seededChains
;
}
\ No newline at end of file
Loading