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
!50097
Implementation of jXE Multiplicity
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Implementation of jXE Multiplicity
jmharris/athena:L1Topo_EnergyThreshold
into
master
Overview
6
Commits
12
Pipelines
1
Changes
8
Merged
Jack Harrison
requested to merge
jmharris/athena:L1Topo_EnergyThreshold
into
master
3 years ago
Overview
6
Commits
12
Pipelines
1
Changes
8
Expand
Changes implemented:
XEMultiplicity class name and file changed to EnergyThreshold, to bring in line with menu.
Enable EnergyThreshold items in TopoSteering, and filtering for gFEX items that are not yet implemented.
Changing Types.cxx to return the correct mapping for jXE input and the MET class
Changing EnergyInputProviderFEX to fill EtDouble.
Enable EnergyInputFEX in TopoSimulationConfig.
Update the Trigger Test counts to reflect enabled jXE thresholds
Tagging
@orlando
@iriu
@paulama
@asonay
ATR-24653
Edited
3 years ago
by
Jack Harrison
0
0
Merge request reports
Compare
master
version 4
2dddc0f6
3 years ago
version 3
80952e96
3 years ago
version 2
aad52fb1
3 years ago
version 1
662e5a2b
3 years ago
master (base)
and
latest version
latest version
536f8862
12 commits,
3 years ago
version 4
2dddc0f6
9 commits,
3 years ago
version 3
80952e96
8 commits,
3 years ago
version 2
aad52fb1
7 commits,
3 years ago
version 1
662e5a2b
1 commit,
3 years ago
8 files
+
413
−
80
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
8
Search (e.g. *.vue) (Ctrl+P)
Trigger/TrigT1/L1Topo/L1TopoAlgorithms/L1TopoAlgorithms/
XEMultiplicityAlgo
.h
→
Trigger/TrigT1/L1Topo/L1TopoAlgorithms/L1TopoAlgorithms/
EnergyThreshold
.h
+
6
−
6
Options
@@ -2,12 +2,12 @@
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
*/
//
XEMultiplicityAlgo
.h
//
EnergyThreshold
.h
// TopoCore
// Created by Jack Harrison on 16/12/21.
#ifndef __TopoCore__
XEMultiplicityAlgo
__
#define __TopoCore__
XEMultiplicityAlgo
__
#ifndef __TopoCore__
EnergyThreshold
__
#define __TopoCore__
EnergyThreshold
__
#include
<vector>
#include
<L1TopoInterfaces/CountingAlg.h>
@@ -20,13 +20,13 @@ class TH2;
namespace
TCS
{
class
XEMultiplicityAlgo
:
public
CountingAlg
{
class
EnergyThreshold
:
public
CountingAlg
{
public:
XEMultiplicityAlgo
(
const
std
::
string
&
name
);
EnergyThreshold
(
const
std
::
string
&
name
);
virtual
~
XEMultiplicityAlgo
()
=
default
;
virtual
~
EnergyThreshold
()
=
default
;
virtual
StatusCode
initialize
()
override
;
Loading