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
11c538f3
Commit
11c538f3
authored
11 months ago
by
Louis Henry
Committed by
Christopher Rob Jones
10 months ago
Browse files
Options
Downloads
Patches
Plain Diff
Diminish verbosity of FT decoding
parent
5b4cfd88
No related branches found
Branches containing commit
No related tags found
Tags containing commit
3 merge requests
!4553
Fix UT Decoder
,
!4546
Synchronize master branch with 2024-patches
,
!4536
Diminish verbosity of FT decoding
Pipeline
#7291369
passed
10 months ago
Stage: test
Stage: .post
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
FT/FTDAQ/src/FTRawBankDecoder.cpp
+10
-10
10 additions, 10 deletions
FT/FTDAQ/src/FTRawBankDecoder.cpp
with
10 additions
and
10 deletions
FT/FTDAQ/src/FTRawBankDecoder.cpp
+
10
−
10
View file @
11c538f3
...
...
@@ -70,22 +70,22 @@ private:
ServiceHandle
<
IDataProviderSvc
>
m_dataSvc
{
this
,
"DataService"
,
"DetectorDataSvc"
,
"The detector data service"
};
mutable
Gaudi
::
Accumulators
::
MsgCounter
<
MSG
::
ERROR
>
m_misordered
{
this
,
"Misordered large cluster"
};
mutable
Gaudi
::
Accumulators
::
MsgCounter
<
MSG
::
ERROR
>
m_misorderedLinks
{
this
,
"Misordered links"
};
mutable
Gaudi
::
Accumulators
::
MsgCounter
<
MSG
::
ERROR
>
m_misordered
{
this
,
"Misordered large cluster"
,
1
};
mutable
Gaudi
::
Accumulators
::
MsgCounter
<
MSG
::
ERROR
>
m_misorderedLinks
{
this
,
"Misordered links"
,
1
};
mutable
Gaudi
::
Accumulators
::
MsgCounter
<
MSG
::
ERROR
>
m_corrupt1
{
this
,
"Possibly corrupt data (type 1). Ignoring the cluster."
};
this
,
"Possibly corrupt data (type 1). Ignoring the cluster."
,
1
};
mutable
Gaudi
::
Accumulators
::
MsgCounter
<
MSG
::
ERROR
>
m_corrupt2
{
this
,
"Possibly corrupt data (type 2). Ignoring the cluster."
};
mutable
Gaudi
::
Accumulators
::
MsgCounter
<
MSG
::
ERROR
>
m_oddBank
{
this
,
"Odd bank."
};
mutable
Gaudi
::
Accumulators
::
MsgCounter
<
MSG
::
ERROR
>
m_emptyBank
{
this
,
"Totally empty bank."
};
this
,
"Possibly corrupt data (type 2). Ignoring the cluster."
,
1
};
mutable
Gaudi
::
Accumulators
::
MsgCounter
<
MSG
::
ERROR
>
m_oddBank
{
this
,
"Odd bank."
,
1
};
mutable
Gaudi
::
Accumulators
::
MsgCounter
<
MSG
::
ERROR
>
m_emptyBank
{
this
,
"Totally empty bank."
,
1
};
mutable
Gaudi
::
Accumulators
::
MsgCounter
<
MSG
::
ERROR
>
m_absurdBank
{
this
,
"Bank containing more clusters than physically possible."
};
this
,
"Bank containing more clusters than physically possible."
,
1
};
mutable
Gaudi
::
Accumulators
::
MsgCounter
<
MSG
::
ERROR
>
m_wrongLocalLink
{
this
,
"Local link larger than physical limit. Bank may be corrupted."
};
this
,
"Local link larger than physical limit. Bank may be corrupted."
,
1
};
mutable
Gaudi
::
Accumulators
::
MsgCounter
<
MSG
::
ERROR
>
m_wrongLink
{
this
,
"Received data from a link that should be disabled. Fix the DB."
};
this
,
"Received data from a link that should be disabled. Fix the DB."
,
1
};
mutable
Gaudi
::
Accumulators
::
MsgCounter
<
MSG
::
WARNING
>
m_nonExistingModule
{
this
,
"Skipping cluster(s) for non-existing module."
};
this
,
"Skipping cluster(s) for non-existing module."
,
1
};
mutable
Gaudi
::
Accumulators
::
Histogram
<
1
,
Gaudi
::
Accumulators
::
atomicity
::
full
,
float
>
m_oddBank_hist
{
this
,
"odd_bank"
,
...
...
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