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
!33818
Sweeping
!33795
from 21.2 to master. Fix boundary issues in tight WP
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Sweeping
!33795
from 21.2 to master. Fix boundary issues in tight WP
cherry-pick-ff730e7b93-master
into
master
Overview
4
Commits
1
Pipelines
1
Changes
1
Merged
Atlas Nightlybuild
requested to merge
cherry-pick-ff730e7b93-master
into
master
4 years ago
Overview
4
Commits
1
Pipelines
1
Changes
1
Expand
Fix boundary issues in tight WP
See merge request
!33795 (merged)
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
2c8700df
1 commit,
4 years ago
1 file
+
4
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
PhysicsAnalysis/MuonID/MuonSelectorTools/Root/MuonSelectionTool.cxx
+
4
−
4
Options
@@ -1262,11 +1262,11 @@ namespace CP {
float
symmetric_eta
=
std
::
abs
(
mu
.
eta
()
);
float
pt
=
mu
.
pt
()
/
1000.0
;
// GeV
// Impose pT and eta cuts; the bounds of the cut maps
if
(
pt
<
4.0
||
symmetric_eta
>
2.5
)
return
false
;
if
(
pt
<
4.0
||
symmetric_eta
>=
2.5
)
return
false
;
ATH_MSG_VERBOSE
(
"Muon is passing tight WP kinematic cuts with pT,eta "
<<
mu
.
pt
()
<<
" , "
<<
mu
.
eta
()
);
// ** Low pT specific cuts ** //
if
(
pt
>
4.0
&&
pt
<=
20.0
){
if
(
pt
<
20.0
){
double
rhoCut
=
m_tightWP_lowPt_rhoCuts
->
Interpolate
(
pt
,
symmetric_eta
);
double
qOverPCut
=
m_tightWP_lowPt_qOverPCuts
->
Interpolate
(
pt
,
symmetric_eta
);
@@ -1287,7 +1287,7 @@ namespace CP {
}
// ** Medium pT specific cuts ** //
else
if
(
pt
>
20.0
&&
pt
<=
100.0
)
{
else
if
(
pt
<
100.0
)
{
double
rhoCut
=
m_tightWP_mediumPt_rhoCuts
->
Interpolate
(
pt
,
symmetric_eta
);
//
ATH_MSG_VERBOSE
(
"Applying tight WP cuts to a medium pt muon with (pt,eta) ("
<<
pt
<<
","
<<
mu
.
eta
()
<<
")"
);
@@ -1302,7 +1302,7 @@ namespace CP {
}
// ** High pT specific cuts
else
if
(
pt
>
100.0
&&
pt
<=
500.0
){
else
if
(
pt
<
500.0
){
//
ATH_MSG_VERBOSE
(
"Applying tight WP cuts to a high pt muon with (pt,eta) ("
<<
pt
<<
","
<<
mu
.
eta
()
<<
")"
);
// No interpolation, since bins with -1 mean we should cut really loose
Loading