Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue 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
Tomasz Bold
athena
Commits
34374894
Commit
34374894
authored
5 years ago
by
Tomasz Bold
Browse files
Options
Downloads
Patches
Plain Diff
Fixed decisions storage for FS RoI
parent
824c8402
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Trigger/TrigSteer/L1Decoder/src/L1Decoder.cxx
+5
-2
5 additions, 2 deletions
Trigger/TrigSteer/L1Decoder/src/L1Decoder.cxx
with
5 additions
and
2 deletions
Trigger/TrigSteer/L1Decoder/src/L1Decoder.cxx
+
5
−
2
View file @
34374894
...
...
@@ -125,10 +125,13 @@ StatusCode L1Decoder::execute (const EventContext& ctx) const {
// for now all the chains that were pre-scaled out are set to re-run in the second pass
HLT
::
IDVec
rerunChains
=
prescaledChains
;
// Perform copy of vector<uint32_t>
ATH_CHECK
(
saveChainsInfo
(
rerunChains
,
chainsInfo
,
"rerun"
)
);
{
SG
::
WriteHandle
<
DecisionContainer
>
handleFSDecisions
=
createAndStore
(
m_FSDecisions
,
ctx
);
ATH_CHECK
(
saveChainsInfo
(
activeChains
,
handleFSDecisions
.
ptr
(),
"unprescaled"
)
);
handleFSDecisions
.
ptr
()
->
at
(
0
)
->
setObjectLink
(
"initialRoI"
,
ElementLink
<
TrigRoiDescriptorCollection
>
(
m_trigFSRoIKey
.
key
(),
0
)
);
auto
decision
=
TrigCompositeUtils
::
newDecisionIn
(
handleFSDecisions
.
ptr
(),
"L1"
);
for
(
auto
chain
:
activeChains
)
TrigCompositeUtils
::
addDecisionID
(
chain
,
decision
);
decision
->
setObjectLink
(
"initialRoI"
,
ElementLink
<
TrigRoiDescriptorCollection
>
(
m_trigFSRoIKey
.
key
(),
0
)
);
}
// Do cost monitoring, this utilises the HLT_costmonitor chain
if
(
m_enableCostMonitoring
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment