Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
LHCb
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
LHCb
Commits
558d8dd3
Commit
558d8dd3
authored
2 years ago
by
Christopher Rob Jones
Browse files
Options
Downloads
Patches
Plain Diff
RichDAQDefinitions - Prefer std::min
parent
c436af05
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!3772
Rich DAQ - Remove unused operators
Pipeline
#4491188
passed
2 years ago
Stage: test
Stage: .post
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Rich/RichUtils/include/RichUtils/RichDAQDefinitions.h
+3
-2
3 additions, 2 deletions
Rich/RichUtils/include/RichUtils/RichDAQDefinitions.h
with
3 additions
and
2 deletions
Rich/RichUtils/include/RichUtils/RichDAQDefinitions.h
+
3
−
2
View file @
558d8dd3
...
...
@@ -30,6 +30,7 @@
#include
"Kernel/RichSmartIDHashFuncs.h"
// STL
#include
<algorithm>
#include
<cassert>
#include
<cstdint>
#include
<map>
...
...
@@ -207,7 +208,7 @@ namespace Rich::DAQ {
/// Operator == that takes into account the correct number of bits
inline
bool
operator
==
(
const
EventID
&
id
)
const
noexcept
{
// Compute which how many bits the words should in common, so we only compare these
const
auto
lowBits
=
(
this
->
activeBits
()
<
id
.
activeBits
()
?
this
->
activeBits
()
:
id
.
activeBits
()
);
const
auto
lowBits
=
std
::
min
(
this
->
activeBits
()
,
id
.
activeBits
()
);
const
auto
mask
=
(
(
1
<<
lowBits
)
-
1
);
// compare the bits and return
return
(
(
this
->
data
()
&
mask
)
==
(
id
.
data
()
&
mask
)
);
...
...
@@ -260,7 +261,7 @@ namespace Rich::DAQ {
/// Operator == that takes into account the correct number of bits
inline
bool
operator
==
(
const
BXID
&
id
)
const
noexcept
{
// Compute which how many bits the words should in common, so we only compare these
const
auto
lowBits
=
(
this
->
activeBits
()
<
id
.
activeBits
()
?
this
->
activeBits
()
:
id
.
activeBits
()
);
const
auto
lowBits
=
std
::
min
(
this
->
activeBits
()
,
id
.
activeBits
()
);
const
auto
mask
=
(
(
1
<<
lowBits
)
-
1
);
// compare the bits and return
return
(
(
this
->
data
()
&
mask
)
==
(
id
.
data
()
&
mask
)
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment