Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
159
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
!75804
SpacePointCalibrator - Add method to fetch the drift acceleration
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
SpacePointCalibrator - Add method to fetch the drift acceleration
jojungge/athena:DriftAcc
into
main
Overview
3
Commits
1
Pipelines
0
Changes
3
Merged
Johannes Junggeburth
requested to merge
jojungge/athena:DriftAcc
into
main
2 months ago
Overview
3
Commits
1
Pipelines
0
Changes
3
Expand
Tagging:
@maharris
👍
0
👎
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
4441d149
1 commit,
2 months ago
3 files
+
19
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
MuonSpectrometer/MuonPhaseII/MuonCalibration/MuonSpacePointCalibrator/src/SpacePointCalibrator.cxx
+
10
−
0
Options
@@ -234,4 +234,14 @@ namespace MuonR4{
}
return
0.
;
}
double
SpacePointCalibrator
::
driftAcceleration
(
const
EventContext
&
ctx
,
const
CalibratedSpacePoint
&
spacePoint
)
const
{
if
(
spacePoint
.
type
()
==
xAOD
::
UncalibMeasType
::
MdtDriftCircleType
)
{
const
MuonCalib
::
MdtFullCalibData
*
calibConsts
=
m_mdtCalibrationTool
->
getCalibConstants
(
ctx
,
spacePoint
.
spacePoint
()
->
identify
());
bool
valid
{
false
};
const
double
driftTime
=
calibConsts
->
rtRelation
->
tr
()
->
tFromR
(
spacePoint
.
driftRadius
(),
valid
);
return
calibConsts
->
rtRelation
->
rt
()
->
driftAcceleration
(
driftTime
);
}
return
0.
;
}
}
Loading