Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
Rec
Manage
Activity
Members
Labels
Plan
Issues
291
Issue boards
Milestones
Iterations
Requirements
Jira
Code
Merge requests
115
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
Rec
Merge requests
!2937
Make Calo event model types SOACollections
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Make Calo event model types SOACollections
ahennequ_soacalo
into
master
Overview
6
Commits
12
Pipelines
21
Changes
38
Merged
Arthur Marius Hennequin
requested to merge
ahennequ_soacalo
into
master
2 years ago
Overview
1
Commits
12
Pipelines
21
Changes
38
Expand
Goes with
LHCb!3589 (merged)
and
Lbcom!613 (merged)
WIP
@graven
Edited
2 years ago
by
Arthur Marius Hennequin
0
0
Merge request reports
Compare
master
version 19
37c3af4b
2 years ago
version 18
914820a0
2 years ago
version 17
3f73cbab
2 years ago
version 16
f42330db
2 years ago
version 15
7c92bc2e
2 years ago
version 14
a5ef8339
2 years ago
version 13
da5f1d4b
2 years ago
version 12
d92fab82
2 years ago
version 11
5ef3c36c
2 years ago
version 10
155b4776
2 years ago
version 9
5cde3ca1
2 years ago
version 8
34bf0a82
2 years ago
version 7
e58669d6
2 years ago
version 6
78d43eae
2 years ago
version 5
d4cb8240
2 years ago
version 4
c5780e39
2 years ago
version 3
d0be7fbb
2 years ago
version 2
5a1f022a
2 years ago
version 1
4c1f925c
2 years ago
master (base)
and
latest version
latest version
7f0f69ad
12 commits,
2 years ago
version 19
37c3af4b
12 commits,
2 years ago
version 18
914820a0
11 commits,
2 years ago
version 17
3f73cbab
11 commits,
2 years ago
version 16
f42330db
10 commits,
2 years ago
version 15
7c92bc2e
9 commits,
2 years ago
version 14
a5ef8339
9 commits,
2 years ago
version 13
da5f1d4b
8 commits,
2 years ago
version 12
d92fab82
8 commits,
2 years ago
version 11
5ef3c36c
7 commits,
2 years ago
version 10
155b4776
7 commits,
2 years ago
version 9
5cde3ca1
6 commits,
2 years ago
version 8
34bf0a82
6 commits,
2 years ago
version 7
e58669d6
5 commits,
2 years ago
version 6
78d43eae
4 commits,
2 years ago
version 5
d4cb8240
3 commits,
2 years ago
version 4
c5780e39
3 commits,
2 years ago
version 3
d0be7fbb
2 commits,
2 years ago
version 2
5a1f022a
2 commits,
2 years ago
version 1
4c1f925c
1 commit,
2 years ago
38 files
+
1480
−
1292
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
38
Search (e.g. *.vue) (Ctrl+P)
CaloFuture/CaloFutureMoniDst/src/CaloFutureClusterChecker.cpp
+
3
−
3
Options
@@ -98,13 +98,13 @@ void CaloFutureClusterChecker::operator()( const Input& table, const Clusters& c
// loop over clusters
auto
fill
=
[
&
table
,
this
](
auto
&
clusters
)
{
for
(
const
auto
&
cluster
:
clusters
)
{
const
auto
&
range
=
table
.
relations
(
cluster
->
seed
()
);
for
(
const
auto
&
cluster
:
clusters
.
scalar
()
)
{
const
auto
&
range
=
table
.
relations
(
cluster
.
cellID
()
);
// number of relations per cluster
hFill1
(
"2"
,
range
.
size
()
);
if
(
range
.
empty
()
)
continue
;
// cluster energy
const
double
e
=
cluster
->
e
();
const
double
e
=
cluster
.
e
();
// minimal weight
hFill1
(
"3"
,
range
.
front
().
weight
()
/
e
);
// maximal weight
Loading