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
!42118
The source project of this merge request has been removed.
MuonStauRecTool remove FPE
Merged
MuonStauRecTool remove FPE
(removed):ATLASRECTS-6136
into
master
Overview
2
Commits
1
Pipelines
0
Changes
1
Merged
Johannes Junggeburth
requested to merge
(removed):ATLASRECTS-6136
into
master
4 years ago
Overview
2
Pipelines
0
Changes
1
Expand
Hi, this MR removes the FPE described by
@nkoehler
in
ATLASRECTS-6136
.
0
0
Merge request reports
Viewing commit
4098bca9
Show latest version
1 file
+
4
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
4098bca9
Fix FPE due to too few DoF
· 4098bca9
Johannes Junggeburth
authored
4 years ago
Reconstruction/MuonIdentification/MuonCombinedTrackFindingTools/src/MuonStauRecoTool.cxx
+
4
−
3
Options
@@ -610,7 +610,8 @@ namespace MuonCombined {
TrkDriftCircleMath
::
Segment
segment
=
result
;
segment
.
hitsOnTrack
(
dcs
.
size
());
unsigned
int
ndofFit
=
segment
.
ndof
();
double
chi2NdofSegmentFit
=
segment
.
chi2
()
/
(
double
)(
ndofFit
);
if
(
ndofFit
<
1
)
continue
;
double
chi2NdofSegmentFit
=
segment
.
chi2
()
/
ndofFit
;
bool
hasDropHit
=
false
;
unsigned
int
dropDepth
=
0
;
if
(
!
segmentFinder
.
dropHits
(
segment
,
hasDropHit
,
dropDepth
)
){
@@ -698,8 +699,8 @@ namespace MuonCombined {
if
(
!
isSelected
)
continue
;
hits
.
push_back
(
Muon
::
TimePointBetaFitter
::
Hit
(
distance
,
time
,
er
)
)
;
candidate
.
stauHits
.
push_back
(
MuGirlNS
::
StauHit
(
MuGirlNS
::
MDTT_STAU_HIT
,
time
+
tof
,
ix
,
iy
,
iz
,
id
,
ie
,
er
,
sh
,
isEta
,
propTime
)
)
;
hits
.
emplace_back
(
distance
,
time
,
er
);
candidate
.
stauHits
.
emplace_back
(
MuGirlNS
::
MDTT_STAU_HIT
,
time
+
tof
,
ix
,
iy
,
iz
,
id
,
ie
,
er
,
sh
,
isEta
,
propTime
);
}
}
// fit data
Loading