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
!39327
ATLASRECTS-5201
: DL1 double -> float encore
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
ATLASRECTS-5201
: DL1 double -> float encore
dguest/athena:fix-hbb-tag
into
master
Overview
4
Commits
2
Pipelines
2
Changes
1
Merged
Dan Guest
requested to merge
dguest/athena:fix-hbb-tag
into
master
4 years ago
Overview
4
Commits
2
Pipelines
2
Changes
1
Expand
Looks like we missed (at least) one double -> float conversion. This fixes it.
0
0
Merge request reports
Compare
master
version 1
09233ef8
4 years ago
master (base)
and
latest version
latest version
ad7d970f
2 commits,
4 years ago
version 1
09233ef8
1 commit,
4 years ago
1 file
+
2
−
2
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
PhysicsAnalysis/JetTagging/FlavorTagDiscriminants/Root/HbbTag.cxx
+
2
−
2
Options
@@ -161,9 +161,9 @@ namespace {
@@ -161,9 +161,9 @@ namespace {
return
{
hk
::
eta
,
j
.
eta
()};
return
{
hk
::
eta
,
j
.
eta
()};
};
};
}
else
{
}
else
{
// for now we assume everything we read from b-tagging is a
double
,
// for now we assume everything we read from b-tagging is a
float
,
// this is only true for DL1 scores.
// this is only true for DL1 scores.
return
BTagPairGetter
<
double
>
(
key
);
return
BTagPairGetter
<
float
>
(
key
);
}
}
}
}
Loading