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
!32021
Sweeping
!31924
from 21.2 to master. Move MMC TrackInfo classes into MMCTest namespace.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Sweeping
!31924
from 21.2 to master. Move MMC TrackInfo classes into MMCTest namespace.
cherry-pick-0ba04138d1-master
into
master
Overview
4
Commits
1
Pipelines
1
Changes
4
Merged
Atlas Nightlybuild
requested to merge
cherry-pick-0ba04138d1-master
into
master
5 years ago
Overview
4
Commits
1
Pipelines
1
Changes
4
Expand
Move MMC TrackInfo classes into MMCTest namespace.
See merge request
!31924 (merged)
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
10d2a5bb
1 commit,
5 years ago
4 files
+
12
−
10
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
PhysicsAnalysis/MuonID/MuonIDAnalysis/MuonMomentumCorrections/src/TestMCASTTool.cxx
+
4
−
4
Options
@@ -48,10 +48,10 @@ StatusCode TestMCASTTool::initialize() {
std
::
vector
<
std
::
string
>
empty_list
;
m_Combined
=
std
::
make_unique
<
TrackInfo
>
(
"CB"
,
m_sysNames
);
m_InnerDet
=
std
::
make_unique
<
TrackInfo
>
(
"ID"
,
m_sysNames
);
m_MSExtr
=
std
::
make_unique
<
TrackInfo
>
(
"ME"
,
m_sysNames
);
m_MSOnlyExtr
=
std
::
make_unique
<
TrackInfo
>
(
"MSOE"
,
empty_list
);
m_Combined
=
std
::
make_unique
<
MMCTest
::
TrackInfo
>
(
"CB"
,
m_sysNames
);
m_InnerDet
=
std
::
make_unique
<
MMCTest
::
TrackInfo
>
(
"ID"
,
m_sysNames
);
m_MSExtr
=
std
::
make_unique
<
MMCTest
::
TrackInfo
>
(
"ME"
,
m_sysNames
);
m_MSOnlyExtr
=
std
::
make_unique
<
MMCTest
::
TrackInfo
>
(
"MSOE"
,
empty_list
);
m_DebugFile
=
new
TFile
(
"MCaST_Debug.root"
,
"RECREATE"
,
"Smearing and non-Smearing of Muons"
);
m_DebugTree
=
new
TTree
(
"CorrectionsTree"
,
"This Tree contains the information of the muon after smearing effects"
);
Loading