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
!76497
MuonR4 digitization - Fix deadtime comparison
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
MuonR4 digitization - Fix deadtime comparison
lmonaco/athena:OverlapBug
into
main
Overview
3
Commits
1
Pipelines
1
Changes
1
Merged
Leonardo Monaco
requested to merge
lmonaco/athena:OverlapBug
into
main
2 months ago
Overview
3
Commits
1
Pipelines
1
Changes
1
Expand
Deadtime check to have 2 digits in the same tube actually never succeeded
0
0
Merge request reports
Viewing commit
1284d5b9
Show latest version
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
1284d5b9
Fix deadtime comparison
· 1284d5b9
Leonardo Monaco
authored
2 months ago
MuonSpectrometer/MuonPhaseII/MuonDigitization/MdtDigitizationR4/src/MdtDigitizationTool.cxx
+
1
−
1
Options
@@ -157,7 +157,7 @@ namespace MuonR4 {
/// Find the next digit which is either another tube or beyond the dead time
saveMe
=
std
::
find_if
(
saveMe
+
1
,
digitsInChamber
.
end
(),
[
deadInterval
,
saved
](
const
DigitSDOPair
&
digitized
)
{
return
saved
->
identify
()
!=
digitized
.
first
->
identify
()
||
deadInterval
<
saved
->
tdc
();
return
saved
->
identify
()
!=
digitized
.
first
->
identify
()
||
deadInterval
<
digitized
.
first
->
tdc
();
});
}
}
while
(
viewer
.
next
());
Loading