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
Merge requests
!3702
merge counter decoder into Louis' original branch
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
merge counter decoder into Louis' original branch
tmp-new-counter-decoder
into
lohenry-counter-decoder
Overview
0
Commits
1094
Pipelines
2
Changes
515+
Merged
Ya Zhao
requested to merge
tmp-new-counter-decoder
into
lohenry-counter-decoder
2 years ago
Overview
0
Commits
1094
Pipelines
2
Changes
515
Expand
0
0
Merge request reports
Compare
lohenry-counter-decoder
lohenry-counter-decoder (base)
and
latest version
latest version
e911cd23
1094 commits,
2 years ago
515+ files
+
34015
−
16718
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
515+
Search (e.g. *.vue) (Ctrl+P)
Some changes are not shown.
For a faster browsing experience, only
515 of 515+
files are shown. Download one of the files below to see all changes.
Plain diff
Patches
Calo/CaloDAQ/include/CaloDAQ/ICaloDataProvider.h
+
7
−
7
Options
@@ -31,13 +31,13 @@ struct ICaloDataProvider : extend_interfaces<ICaloReadoutTool> {
// Return the interface ID
DeclareInterfaceID
(
ICaloDataProvider
,
5
,
0
);
virtual
int
adc
(
LHCb
::
CaloCellID
id
,
int
def
=
0
)
=
0
;
virtual
double
digit
(
LHCb
::
CaloCellID
id
,
double
def
=
0
.
)
=
0
;
virtual
unsigned
int
nTell1s
()
=
0
;
virtual
const
CaloVector
<
LHCb
::
CaloAdc
>&
adcs
(
int
source
=
-
1
,
bool
clean
=
true
)
=
0
;
virtual
const
CaloVector
<
LHCb
::
CaloDigit
>&
digits
(
int
source
=
-
1
,
bool
clean
=
true
)
=
0
;
virtual
const
CaloVector
<
LHCb
::
CaloAdc
>&
adcs
(
std
::
vector
<
int
>
sources
,
bool
clean
=
true
)
=
0
;
virtual
const
CaloVector
<
LHCb
::
CaloDigit
>&
digits
(
std
::
vector
<
int
>
sources
,
bool
clean
=
true
)
=
0
;
virtual
int
adc
(
LHCb
::
Detector
::
Calo
::
CellID
id
,
int
def
=
0
)
=
0
;
virtual
double
digit
(
LHCb
::
Detector
::
Calo
::
CellID
id
,
double
def
=
0
.
)
=
0
;
virtual
unsigned
int
nTell1s
()
=
0
;
virtual
const
CaloVector
<
LHCb
::
CaloAdc
>&
adcs
(
int
source
=
-
1
,
bool
clean
=
true
)
=
0
;
virtual
const
CaloVector
<
LHCb
::
CaloDigit
>&
digits
(
int
source
=
-
1
,
bool
clean
=
true
)
=
0
;
virtual
const
CaloVector
<
LHCb
::
CaloAdc
>&
adcs
(
std
::
vector
<
int
>
sources
,
bool
clean
=
true
)
=
0
;
virtual
const
CaloVector
<
LHCb
::
CaloDigit
>&
digits
(
std
::
vector
<
int
>
sources
,
bool
clean
=
true
)
=
0
;
typedef
std
::
pair
<
LHCb
::
CaloAdc
,
LHCb
::
CaloAdc
>
CaloAdcPair
;
virtual
CaloAdcPair
adcRange
()
=
0
;
virtual
CaloAdcPair
pinRange
()
=
0
;
Loading