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
458cc645
Commit
458cc645
authored
1 year ago
by
Volker Friese
Committed by
Florian Uhlig
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
Add missing Size() method in CbmFsdDigiData. Fix a few clang-format issues.
parent
cd6d3844
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!1263
Generalize DigiEventSelector. Refs #2918
Pipeline
#23413
passed
1 year ago
Stage: documentation
Stage: deploy
Changes
3
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
algo/evbuild/EventbuildChain.h
+6
-6
6 additions, 6 deletions
algo/evbuild/EventbuildChain.h
algo/evselector/DigiEventSelector.h
+1
-1
1 addition, 1 deletion
algo/evselector/DigiEventSelector.h
core/data/fsd/CbmFsdDigiData.h
+4
-0
4 additions, 0 deletions
core/data/fsd/CbmFsdDigiData.h
with
11 additions
and
7 deletions
algo/evbuild/EventbuildChain.h
+
6
−
6
View file @
458cc645
...
...
@@ -39,13 +39,13 @@ namespace cbm::algo
std
::
vector
<
CbmDigiEvent
>
Run
(
const
CbmDigiTimeslice
&
);
private:
// members
MainConfig
fConfig
;
///< Configuration / parameters
TimeClusterTrigger
fTrigger
;
///< Trigger algorithm
EventBuilder
fEventBuilder
;
///< Event builder algorithm
private:
// members
MainConfig
fConfig
;
///< Configuration / parameters
TimeClusterTrigger
fTrigger
;
///< Trigger algorithm
EventBuilder
fEventBuilder
;
///< Event builder algorithm
std
::
unique_ptr
<
evbuild
::
DigiEventSelector
>
fSelector
;
///< Event selector algorithm
qa
::
DigiEventQa
fQa
;
///< Event QA algorithm
qa
::
DigiEventQaConfig
fQaConfig
;
///< Configuration for event QA
qa
::
DigiEventQa
fQa
;
///< Event QA algorithm
qa
::
DigiEventQaConfig
fQaConfig
;
///< Configuration for event QA
private:
// methods
...
...
This diff is collapsed.
Click to expand it.
algo/evselector/DigiEventSelector.h
+
1
−
1
View file @
458cc645
...
...
@@ -63,7 +63,7 @@ namespace cbm::algo::evbuild
bool
CheckTofLayers
(
const
std
::
vector
<
CbmTofDigi
>&
digis
,
size_t
minNum
)
const
;
private
:
// members
private
:
// members
const
DigiEventSelectorParams
fParams
;
///< Selection parameters
};
...
...
This diff is collapsed.
Click to expand it.
core/data/fsd/CbmFsdDigiData.h
+
4
−
0
View file @
458cc645
...
...
@@ -43,6 +43,10 @@ public:
/** @brief Clear content **/
void
Clear
()
{
fDigis
.
clear
();
}
/** @brief Size */
size_t
Size
()
const
{
return
fDigis
.
size
();
}
// --- ROOT serializer
#ifndef NO_ROOT
ClassDefNV
(
CbmFsdDigiData
,
1
);
...
...
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