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
fa970a74
Commit
fa970a74
authored
3 months ago
by
Miroslav Saur
Browse files
Options
Downloads
Patches
Plain Diff
Fixing message in RawBankSizeFilter
parent
4c48b040
No related branches found
No related tags found
2 merge requests
!4738
Synchronize master branch with 2024-patches
,
!4722
Fixing message in RawBankSizeFilter
Pipeline
#8364985
passed
3 months ago
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
DAQ/DAQUtils/src/RawBankSizeFilter.cpp
+2
-2
2 additions, 2 deletions
DAQ/DAQUtils/src/RawBankSizeFilter.cpp
with
2 additions
and
2 deletions
DAQ/DAQUtils/src/RawBankSizeFilter.cpp
+
2
−
2
View file @
fa970a74
...
...
@@ -47,14 +47,14 @@ public:
}
bool
acc
=
(
total_size
>
m_minsize
);
m_
acc
+=
acc
;
m_
small_bank
+=
!
acc
;
return
acc
;
}
private
:
Gaudi
::
Property
<
std
::
size_t
>
m_minsize
{
this
,
"MinRawBankSize"
,
0
};
mutable
Gaudi
::
Accumulators
::
SummingCounter
<
unsigned
int
>
m_emptyBanks
{
this
,
"Number of empty raw banks"
};
mutable
Gaudi
::
Accumulators
::
BinomialCounter
<>
m_
acc
{
this
,
"Number of too small raw banks size"
};
mutable
Gaudi
::
Accumulators
::
BinomialCounter
<>
m_
small_bank
{
this
,
"Number of too small raw banks size"
};
};
//=============================================================================
...
...
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