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
bb5d7dfe
Commit
bb5d7dfe
authored
2 years ago
by
Carla Marin Benito
Committed by
Rosen Matev
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
check calo bank size
parent
aef19871
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!3715
check calo bank size
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CaloFuture/CaloFutureDAQ/src/CaloFutureRawToDigits.cpp
+13
-2
13 additions, 2 deletions
CaloFuture/CaloFutureDAQ/src/CaloFutureRawToDigits.cpp
with
13 additions
and
2 deletions
CaloFuture/CaloFutureDAQ/src/CaloFutureRawToDigits.cpp
+
13
−
2
View file @
bb5d7dfe
...
...
@@ -17,6 +17,7 @@
#include
"Gaudi/Accumulators.h"
#include
"LHCbAlgs/Transformer.h"
#include
"boost/container/small_vector.hpp"
#include
<Gaudi/Accumulators/Histogram.h>
namespace
{
...
...
@@ -185,8 +186,11 @@ namespace LHCb::Calo {
Gaudi
::
Property
<
bool
>
m_extraHeader
{
this
,
"DetectorSpecificHeader"
,
false
};
Gaudi
::
Property
<
bool
>
m_cleanCorrupted
{
this
,
"CleanWhenCorruption"
,
false
};
mutable
Gaudi
::
Accumulators
::
BinomialCounter
<>
m_noBanksCounter
{
this
,
"No bank found"
};
mutable
Gaudi
::
Accumulators
::
Counter
<>
m_duplicateADCDigits
{
this
,
"# duplicate ADC/Digits"
};
mutable
Gaudi
::
Accumulators
::
BinomialCounter
<>
m_noBanksCounter
{
this
,
"No bank found"
};
mutable
Gaudi
::
Accumulators
::
Counter
<>
m_duplicateADCDigits
{
this
,
"# duplicate ADC/Digits"
};
mutable
Gaudi
::
Accumulators
::
MsgCounter
<
MSG
::
ERROR
>
m_bankSize_error
{
this
,
"Banks with wrong size"
};
mutable
Gaudi
::
Accumulators
::
Histogram
<
1
>
m_histoWrongSourceID
{
this
,
"WrongBankSourceID"
,
"Wrong bank size"
,
{
225
,
22550
,
22775
}};
};
unsigned
int
fibMask1
=
0xfff000ff
;
...
...
@@ -289,6 +293,13 @@ namespace LHCb::Calo {
// ------------------------------------
std
::
vector
<
Adc
>
dataVec
;
for
(
const
auto
&
bank
:
banks
)
{
//--- check bank size
if
(
(
(
bank
->
version
()
<
3
&&
bank
->
type
()
==
RawBank
::
Calo
)
||
bank
->
version
()
>
3
)
&&
bank
->
size
()
!=
156
)
{
++
m_bankSize_error
;
++
m_histoWrongSourceID
[
bank
->
sourceID
()];
continue
;
}
//--- decode the rawbanks
auto
dataVecDec
=
decode_
<
Decode
::
Cell
>
(
*
bank
,
status
,
calo
);
// false is to get data, not pinData
dataVec
.
insert
(
dataVec
.
end
(),
dataVecDec
.
begin
(),
dataVecDec
.
end
()
);
...
...
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