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
Merge requests
!889
[BMon] in Tof unpack monitor, use vector as input for the SetBmonChannelMap
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
[BMon] in Tof unpack monitor, use vector as input for the SetBmonChannelMap
p.-a.loizeau/cbmroot:array_BmonChanMap
into
master
Overview
1
Commits
1
Pipelines
2
Changes
2
Merged
Pierre-Alain Loizeau
requested to merge
p.-a.loizeau/cbmroot:array_BmonChanMap
into
master
2 years ago
Overview
1
Commits
1
Pipelines
2
Changes
2
Expand
0
0
Merge request reports
Compare
master
version 1
d7fc3f4c
2 years ago
master (base)
and
latest version
latest version
00e3011e
1 commit,
2 years ago
version 1
d7fc3f4c
1 commit,
2 years ago
2 files
+
15
−
34
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
reco/detectors/tof/unpack/CbmTofUnpackMonitor.cxx
+
12
−
0
Options
@@ -53,6 +53,18 @@ CbmTofUnpackMonitor::~CbmTofUnpackMonitor()
}
}
void
CbmTofUnpackMonitor
::
SetBmonChannelMap
(
std
::
vector
<
uint32_t
>
vChanMapIn
)
{
uint32_t
uNbCh
=
vChanMapIn
.
size
();
if
(
8
!=
uNbCh
&&
16
!=
uNbCh
)
{
LOG
(
fatal
)
<<
"Wrong number of channels in call to CbmTofUnpackMonitor::SetBmonChannelMap, "
<<
"only 8 and 16 supported, input here was "
<<
uNbCh
;
}
for
(
UInt_t
uChan
=
0
;
uChan
<
uNbCh
;
++
uChan
)
{
fuBmonChanMap
[
uChan
]
=
vChanMapIn
[
uChan
];
}
}
Bool_t
CbmTofUnpackMonitor
::
CreateHistograms
()
{
/// Avoid name collision for the histos and canvases in Root memory
Loading