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
!46641
WIP: MuonSelect using flags
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
WIP: MuonSelect using flags
orlando/athena_old:muon_select_update
into
master
Overview
3
Commits
1
Pipelines
1
Changes
2
Closed
Nicola Orlando
requested to merge
orlando/athena_old:muon_select_update
into
master
3 years ago
Overview
3
Commits
1
Pipelines
1
Changes
2
Expand
Draft MR with updates to the MuonSelect to use flags in the selection. To finalise:
Implement TGC/RPC pT cuts consistently using the sector names flags
Implement a draft instance in the JSON config if necessary The coding of the flags (usage and name conventions) is done as defined in this talk
https://indico.cern.ch/event/1072597/contributions/4510314/attachments/2302129/3916048/MuonSelectWithFlags.pdf
. Relevant Jira ticket
https://its.cern.ch/jira/browse/ATR-23508
.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
7d0733f8
1 commit,
3 years ago
2 files
+
53
−
32
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
Trigger/TrigT1/L1Topo/L1TopoAlgorithms/L1TopoAlgorithms/MuonSelect.h
+
7
−
2
Options
@@ -3,7 +3,7 @@
*/
// MuonSelect.h
// TopoCore
//
C
reated by Joerg Stelzer on 11/10/12.
// reated by Joerg Stelzer on 11/10/12.
#ifndef TCS__MuonSelect
#define TCS__MuonSelect
@@ -34,7 +34,12 @@ namespace TCS {
parType_t
m_numberOfMuons
=
{
0
};
parType_t
m_minEta
=
{
0
};
parType_t
m_maxEta
=
{
0
};
parType_t
m_et
=
{
0
};
parType_t
m_MinEtTGC
=
{
0
};
parType_t
m_MinEtRPC
=
{
0
};
// Default flags setting to use Run2 style MuonSelect
parType_t
m_InnerCoinCut
=
{
0
};
parType_t
m_FullStationCut
=
{
0
};
parType_t
m_GoodMFieldCut
=
{
0
};
};
Loading