Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
physics_benchmarks
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
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
physics_benchmarks
Merge requests
!104
DIS: Q2_res between -1, +1; x_res in linx scale
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
DIS: Q2_res between -1, +1; x_res in linx scale
wdconinc-master-patch-31066
into
master
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Wouter Deconinck
requested to merge
wdconinc-master-patch-31066
into
master
3 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
73b6e0b8
1 commit,
3 years ago
1 file
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
benchmarks/dis/analysis/dis_electrons.cxx
+
2
−
2
Options
@@ -83,7 +83,7 @@ int dis_electrons(const std::string& config_name)
//Q2
auto
h_Q2_sim
=
d0
.
Histo1D
({
"h_Q2_sim"
,
"; GeV^2; counts"
,
100
,
-
5
,
25
},
"Q2_sim"
);
auto
h_Q2_rec
=
d0
.
Histo1D
({
"h_Q2_rec"
,
"; GeV^2; counts"
,
100
,
-
5
,
25
},
"Q2_rec"
);
auto
h_Q2_res
=
d0
.
Histo1D
({
"h_Q2_res"
,
"; ; counts"
,
100
,
-
1
0
,
1
0
},
"Q2_res"
);
auto
h_Q2_res
=
d0
.
Histo1D
({
"h_Q2_res"
,
"; ; counts"
,
100
,
-
1
,
1
},
"Q2_res"
);
//x
auto
h_x_sim
=
d0
.
Histo1D
({
"h_x_sim"
,
"; ; counts"
,
100
,
0
,
+
1
},
"x_sim"
);
auto
h_x_rec
=
d0
.
Histo1D
({
"h_x_rec"
,
"; ; counts"
,
100
,
0
,
+
1
},
"x_rec"
);
@@ -190,7 +190,7 @@ int dis_electrons(const std::string& config_name)
{
TCanvas
c
(
"c"
,
"c"
,
1200
,
1200
);
c
.
cd
();
gPad
->
SetLogx
(
tru
e
);
gPad
->
SetLogx
(
fals
e
);
gPad
->
SetLogy
(
true
);
auto
&
h1
=
*
h_x_res
;
// histogram style
Loading