Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
Rec
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue 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
LHCb
Rec
Merge requests
!3421
Streamline code for UT tracking code
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Streamline code for UT tracking code
decianm-UTStreamlining1
into
master
Overview
22
Commits
4
Pipelines
5
Changes
4
Merged
Michel De Cian
requested to merge
decianm-UTStreamlining1
into
master
1 year ago
Overview
22
Commits
4
Pipelines
5
Changes
4
Expand
Streamline definitions: take numbers from UTInfo, adapt namespaces,
Move calculation of full sector ID to
UTDAQHelper
Needs
LHCb!4124 (merged)
0
0
Merge request reports
Compare
master
version 3
87322b36
1 year ago
version 2
26d947be
1 year ago
version 1
95f09d16
1 year ago
master (base)
and
latest version
latest version
f3052e67
4 commits,
1 year ago
version 3
87322b36
3 commits,
1 year ago
version 2
26d947be
2 commits,
1 year ago
version 1
95f09d16
1 commit,
1 year ago
4 files
+
24
−
52
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
Pr/PrAlgorithms/src/PrResidualPrUTHits.cpp
+
1
−
6
Options
@@ -76,12 +76,7 @@ LHCb::Pr::UT::Hits PrResidualPrUTHits<T>::operator()( const EventContext& evtCtx
}
}
const
int
fullChanIdx
=
static_cast
<
int
>
(
UTInfo
::
DetectorNumbers
::
Sides
)
*
static_cast
<
int
>
(
UTInfo
::
DetectorNumbers
::
HalfLayers
)
*
static_cast
<
int
>
(
UTInfo
::
DetectorNumbers
::
Staves
)
*
static_cast
<
int
>
(
UTInfo
::
DetectorNumbers
::
Faces
)
*
static_cast
<
int
>
(
UTInfo
::
DetectorNumbers
::
Modules
)
*
static_cast
<
int
>
(
UTInfo
::
DetectorNumbers
::
SubSectors
);
for
(
auto
fullchan
=
0
;
fullchan
<
fullChanIdx
;
fullchan
++
)
{
for
(
auto
fullchan
=
0
;
fullchan
<
static_cast
<
int
>
(
UTInfo
::
MaxNumberOfSectors
);
fullchan
++
)
{
const
auto
indexs
=
uthithandler
.
indices
(
fullchan
);
for
(
int
idx
=
indexs
.
first
;
idx
!=
indexs
.
second
;
idx
++
)
{
Loading