Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
detector_benchmarks
Manage
Activity
Members
Labels
Plan
Issues
21
Issue boards
Milestones
Wiki
Code
Merge requests
7
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
benchmarks
detector_benchmarks
Merge requests
!75
update analysis scripts for minor dd4pod changes
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
update analysis scripts for minor dd4pod changes
update_dd4pod
into
master
Overview
0
Commits
1
Pipelines
0
Changes
8
Merged
Sylvester Joosten
requested to merge
update_dd4pod
into
master
3 years ago
Overview
0
Commits
1
Pipelines
0
Changes
8
Expand
👍
0
👎
0
Merge request reports
Viewing commit
011487d8
Show latest version
8 files
+
12
−
12
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
8
Search (e.g. *.vue) (Ctrl+P)
011487d8
update analysis scripts for minor dd4pod changes
· 011487d8
Sylvester Joosten
authored
3 years ago
benchmarks/barrel_ecal/scripts/emcal_barrel_energy_scan_analysis.cxx
+
1
−
1
Options
@@ -57,7 +57,7 @@ std::tuple <double, double, double, double> extract_sampling_fraction_parameters
// Thrown Energy [GeV]
auto
Ethr
=
[](
std
::
vector
<
dd4pod
::
Geant4ParticleData
>
const
&
input
)
{
auto
p
=
input
[
2
];
auto
energy
=
TMath
::
Sqrt
(
p
.
psx
*
p
.
psx
+
p
.
psy
*
p
.
psy
+
p
.
psz
*
p
.
psz
+
p
.
mass
*
p
.
mass
);
auto
energy
=
TMath
::
Sqrt
(
p
.
ps
.
x
*
p
.
ps
.
x
+
p
.
ps
.
y
*
p
.
ps
.
y
+
p
.
ps
.
z
*
p
.
ps
.
z
+
p
.
mass
*
p
.
mass
);
return
energy
;
};
Loading