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
841c2249
Commit
841c2249
authored
3 years ago
by
Christopher Rob Jones
Browse files
Options
Downloads
Patches
Plain Diff
remove DeRichSystem from RICH MaPMT1 decoding arguments
parent
74d7421f
No related branches found
No related tags found
2 merge requests
!3702
merge counter decoder into Louis' original branch
,
!3300
RichDAQ - Decoding fixes when inactive links are present
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Rich/RichFutureDAQ/src/component/RichRawBankDecoder.cpp
+2
-4
2 additions, 4 deletions
Rich/RichFutureDAQ/src/component/RichRawBankDecoder.cpp
with
2 additions
and
4 deletions
Rich/RichFutureDAQ/src/component/RichRawBankDecoder.cpp
+
2
−
4
View file @
841c2249
...
...
@@ -147,7 +147,6 @@ namespace Rich::Future {
private
:
/// Decoding for MaPMT1 version
void
decodeToSmartIDs_MaPMT1
(
const
LHCb
::
RawBank
&
bank
,
//
const
DeRichSystem
&
deRichSys
,
//
const
Tel40CableMapping
&
tel40Maps
,
//
const
PDMDBDecodeMapping
&
pdmdbMaps
,
//
DecodedIDs
&
decodedIDs
)
const
;
...
...
@@ -300,7 +299,7 @@ OutData RawBankDecoder::operator()( const LHCb::RawEvent& rawEvent, //
// Check version to dispatch to the correct decoding
if
(
MaPMT1
==
version
)
{
// real PMT bank
decodeToSmartIDs_MaPMT1
(
*
bank
,
deRichSys
,
tel40Maps
,
pdmdbMaps
,
decodedIDs
);
decodeToSmartIDs_MaPMT1
(
*
bank
,
tel40Maps
,
pdmdbMaps
,
decodedIDs
);
}
else
if
(
StreamSmartIDs
==
version
)
{
// simple 'streamed RichSmartID' version (MC only)
decodeToSmartIDs_StreamIDs
(
*
bank
,
deRichSys
,
decodedIDs
);
...
...
@@ -333,8 +332,7 @@ OutData RawBankDecoder::operator()( const LHCb::RawEvent& rawEvent, //
//=============================================================================
void
RawBankDecoder
::
decodeToSmartIDs_MaPMT1
(
const
LHCb
::
RawBank
&
bank
,
//
const
DeRichSystem
&
/* deRichSys */
,
//
void
RawBankDecoder
::
decodeToSmartIDs_MaPMT1
(
const
LHCb
::
RawBank
&
bank
,
//
const
Tel40CableMapping
&
tel40Maps
,
//
const
PDMDBDecodeMapping
&
pdmdbMaps
,
//
DecodedIDs
&
decodedIDs
)
const
{
...
...
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