Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
158
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
!37437
Update calo muon NN and fetch binary files from calibration area
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Update calo muon NN and fetch binary files from calibration area
rwoelker/athena:fetch-models-from-calib-area
into
master
Overview
7
Commits
10
Pipelines
3
Changes
17
Merged
Ricardo Woelker
requested to merge
rwoelker/athena:fetch-models-from-calib-area
into
master
4 years ago
Overview
7
Commits
10
Pipelines
3
Changes
17
Expand
update default calorimeter muon NN
remove binary files used in
CaloMuonScoreTool
and
CaloMuonLikelihoodTool
, and load them from the calibration area instead
Edited
4 years ago
by
Ricardo Woelker
👍
0
👎
0
Merge request reports
Compare
master
version 4
9b5a32e5
4 years ago
version 3
c2cca10b
4 years ago
version 2
293e7ff4
4 years ago
version 1
5692b779
4 years ago
master (base)
and
latest version
latest version
54324f8e
10 commits,
4 years ago
version 4
9b5a32e5
9 commits,
4 years ago
version 3
c2cca10b
7 commits,
4 years ago
version 2
293e7ff4
5 commits,
4 years ago
version 1
5692b779
3 commits,
4 years ago
17 files
+
27
−
17
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
17
Search (e.g. *.vue) (Ctrl+P)
Reconstruction/MuonIdentification/CaloTrkMuIdTools/CaloTrkMuIdTools/CaloMuonScoreTool.h
+
3
−
1
Options
@@ -97,7 +97,9 @@ private:
std
::
vector
<
int64_t
>
m_input_node_dims
;
Gaudi
::
Property
<
std
::
string
>
m_modelFileName
{
this
,
"ModelFileName"
,
"CaloMuonCNN_0.onnx"
};
// This path needs to point to the ATLAS calibration area (https://atlas-groupdata.web.cern.ch/atlas-groupdata/)
// It needs to be a full path relative to the root of the calibration area, e.g. `CaloTrkMuIdTools/nnBased_201022/CaloMuonCNN_1.onnx`
Gaudi
::
Property
<
std
::
string
>
m_modelFileName
{
this
,
"ModelFileName"
,
"CaloTrkMuIdTools/nnBased_201022/CaloMuonCNN_1.onnx"
};
Gaudi
::
Property
<
double
>
m_CaloMuonEtaCut
{
this
,
"CaloMuonEtaCut"
,
1.0
,
"Eta cut (absolute value) up to which a track particle's muon score will be calculated"
};
};
Loading