Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cbmroot
Manage
Activity
Members
Labels
Plan
Wiki
Redmine
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Computing
cbmroot
Commits
932eec2a
Commit
932eec2a
authored
3 years ago
by
Pierre-Alain Loizeau
Committed by
Volker Friese
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Make the getters of CbmTsEventHeader explicitely const
parent
c7ab5b72
No related branches found
No related tags found
1 merge request
!584
Make the getters of CbmTsEventHeader explicitely const
Pipeline
#13981
passed
3 years ago
Stage: build
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
core/data/CbmTsEventHeader.h
+8
-8
8 additions, 8 deletions
core/data/CbmTsEventHeader.h
with
8 additions
and
8 deletions
core/data/CbmTsEventHeader.h
+
8
−
8
View file @
932eec2a
...
...
@@ -35,22 +35,22 @@ public:
void
AddNDigisTrd2D
(
uint64_t
value
)
{
fNDigisTrd2D
+=
value
;
}
/** @brief Get the number of digis in this Ts */
uint64_t
GetNDigisPsd
()
{
return
fNDigisPsd
;
}
uint64_t
GetNDigisPsd
()
const
{
return
fNDigisPsd
;
}
/** @brief Get the number of digis in this Ts */
uint64_t
GetNDigisRich
()
{
return
fNDigisRich
;
}
uint64_t
GetNDigisRich
()
const
{
return
fNDigisRich
;
}
/** @brief Get the number of digis in this Ts */
uint64_t
GetNDigisSts
()
{
return
fNDigisSts
;
}
uint64_t
GetNDigisSts
()
const
{
return
fNDigisSts
;
}
/** @brief Get the number of digis in this Ts */
uint64_t
GetNDigisTof
()
{
return
fNDigisTof
;
}
uint64_t
GetNDigisTof
()
const
{
return
fNDigisTof
;
}
/** @brief Get the number of digis in this Ts */
uint64_t
GetNDigisTrd1D
()
{
return
fNDigisTrd1D
;
}
uint64_t
GetNDigisTrd1D
()
const
{
return
fNDigisTrd1D
;
}
/** @brief Get the number of digis in this Ts */
uint64_t
GetNDigisTrd2D
()
{
return
fNDigisTrd2D
;
}
uint64_t
GetNDigisTrd2D
()
const
{
return
fNDigisTrd2D
;
}
/** Get the Start time of the this Timeslice linked to this event header*/
uint64_t
GetTsIndex
()
{
return
fTsIndex
;
}
uint64_t
GetTsIndex
()
const
{
return
fTsIndex
;
}
/** Get the Start time of the this Timeslice linked to this event header*/
uint64_t
GetTsStartTime
()
{
return
fTsStartTime
;
}
uint64_t
GetTsStartTime
()
const
{
return
fTsStartTime
;
}
/** @brief Resets counters and variables for a new Timeslice, e.g. the NDigis counter are set back to 0*/
void
Reset
();
...
...
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