Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Project Juggler
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
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
Monitor
Incidents
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
EIC
Project Juggler
Merge requests
!12
Fix to use single CellID in data model
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix to use single CellID in data model
cellid
into
master
Overview
0
Commits
2
Pipelines
0
Changes
3
Merged
Whitney Armstrong
requested to merge
cellid
into
master
4 years ago
Overview
0
Commits
2
Pipelines
0
Changes
3
Expand
This goes with the update to eicd removing cellID0 and cellID1 from all data types.
0
0
Merge request reports
Compare
master
version 1
e182fcfe
4 years ago
master (base)
and
latest version
latest version
e5c56bd0
2 commits,
4 years ago
version 1
e182fcfe
1 commit,
4 years ago
3 files
+
4
−
4
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
JugDigi/src/components/ExampleCaloDigi.cpp
+
1
−
1
Options
@@ -111,7 +111,7 @@ namespace Jug {
@@ -111,7 +111,7 @@ namespace Jug {
eic
::
RawCalorimeterHitCollection
*
rawHitCollection
=
new
eic
::
RawCalorimeterHitCollection
();
eic
::
RawCalorimeterHitCollection
*
rawHitCollection
=
new
eic
::
RawCalorimeterHitCollection
();
for
(
const
auto
&
ahit
:
*
simhits
)
{
for
(
const
auto
&
ahit
:
*
simhits
)
{
//std::cout << ahit << "\n";
//std::cout << ahit << "\n";
eic
::
RawCalorimeterHit
rawhit
((
long
long
)
ahit
.
cellID
(),
eic
::
RawCalorimeterHit
rawhit
((
long
long
)
ahit
.
cellID
(),
(
long
long
)
ahit
.
energyDeposit
()
*
100
,
0
);
(
long
long
)
ahit
.
energyDeposit
()
*
100
,
0
);
rawhits
->
push_back
(
rawhit
);
rawhits
->
push_back
(
rawhit
);
}
}
Loading