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
Commits
02202456
Commit
02202456
authored
3 years ago
by
Wouter Deconinck
Browse files
Options
Downloads
Patches
Plain Diff
Update dis_electrons.cxx: define JB DA
parent
ff109558
No related branches found
No related tags found
1 merge request
!113
Inclusive Kinematics JB DA
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
benchmarks/dis/analysis/dis_electrons.cxx
+24
-16
24 additions, 16 deletions
benchmarks/dis/analysis/dis_electrons.cxx
with
24 additions
and
16 deletions
benchmarks/dis/analysis/dis_electrons.cxx
+
24
−
16
View file @
02202456
...
...
@@ -73,26 +73,34 @@ int dis_electrons(const std::string& config_name)
};
auto
d0
=
d
.
Define
(
"Q2_sim"
,
"InclusiveKinematicsTruth.Q2"
)
.
Define
(
"Q2_rec"
,
"InclusiveKinematicsElectron.Q2"
)
.
Define
(
"Q2_res"
,
combinatorial_diff_ratio
,
{
"Q2_sim"
,
"Q2_rec"
})
.
Define
(
"Q2_el"
,
"InclusiveKinematicsElectron.Q2"
)
.
Define
(
"Q2_jb"
,
"InclusiveKinematicsJB.Q2"
)
.
Define
(
"Q2_da"
,
"InclusiveKinematicsDA.Q2"
)
.
Define
(
"Q2_el_res"
,
combinatorial_diff_ratio
,
{
"Q2_sim"
,
"Q2_el"
})
.
Define
(
"Q2_jb_res"
,
combinatorial_diff_ratio
,
{
"Q2_sim"
,
"Q2_jb"
})
.
Define
(
"Q2_da_res"
,
combinatorial_diff_ratio
,
{
"Q2_sim"
,
"Q2_da"
})
.
Define
(
"x_sim"
,
"InclusiveKinematicsTruth.x"
)
.
Define
(
"x_rec"
,
"InclusiveKinematicsElectron.x"
)
.
Define
(
"x_res"
,
combinatorial_diff_ratio
,
{
"x_sim"
,
"x_rec"
})
.
Define
(
"x_el"
,
"InclusiveKinematicsElectron.x"
)
.
Define
(
"x_jb"
,
"InclusiveKinematicsJB.x"
)
.
Define
(
"x_da"
,
"InclusiveKinematicsDA.x"
)
.
Define
(
"x_el_res"
,
combinatorial_diff_ratio
,
{
"x_sim"
,
"x_el"
})
.
Define
(
"x_jb_res"
,
combinatorial_diff_ratio
,
{
"x_sim"
,
"x_jb"
})
.
Define
(
"x_da_res"
,
combinatorial_diff_ratio
,
{
"x_sim"
,
"x_da"
})
;
//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
,
1
},
"Q2_res"
);
auto
h_Q2_
el
=
d0
.
Histo1D
({
"h_Q2_rec"
,
"; GeV^2; counts"
,
100
,
-
5
,
25
},
"Q2_rec"
);
auto
h_Q2_
el_
res
=
d0
.
Histo1D
({
"h_Q2_
el_
res"
,
"; ; counts"
,
100
,
-
1
,
1
},
"Q2_
el_
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"
);
auto
h_x_res
=
d0
.
Histo1D
({
"h_x_res"
,
"; ; counts"
,
100
,
-
1
,
1
},
"x_res"
);
auto
h_x_
el
=
d0
.
Histo1D
({
"h_x_rec"
,
"; ; counts"
,
100
,
0
,
+
1
},
"x_rec"
);
auto
h_x_
el_
res
=
d0
.
Histo1D
({
"h_x_
el_
res"
,
"; ; counts"
,
100
,
-
1
,
1
},
"x_
el_
res"
);
TFitResultPtr
f_Q2_res
=
h_Q2_res
->
Fit
(
"gaus"
,
"S"
);
if
(
f_Q2_res
==
0
)
f_Q2_res
->
Print
(
"V"
);
TFitResultPtr
f_x_res
=
h_x_res
->
Fit
(
"gaus"
,
"S"
);
if
(
f_x_res
==
0
)
f_x_res
->
Print
(
"V"
);
TFitResultPtr
f_Q2_
el_
res
=
h_Q2_
el_
res
->
Fit
(
"gaus"
,
"S"
);
if
(
f_Q2_
el_
res
==
0
)
f_Q2_
el_
res
->
Print
(
"V"
);
TFitResultPtr
f_x_
el_
res
=
h_x_
el_
res
->
Fit
(
"gaus"
,
"S"
);
if
(
f_x_
el_
res
==
0
)
f_x_
el_
res
->
Print
(
"V"
);
// Plot our histograms.
// TODO: to start I'm explicitly plotting the histograms, but want to
...
...
@@ -105,7 +113,7 @@ int dis_electrons(const std::string& config_name)
gPad
->
SetLogx
(
false
);
gPad
->
SetLogy
(
true
);
auto
&
h1
=
*
h_Q2_sim
;
auto
&
h2
=
*
h_Q2_
rec
;
auto
&
h2
=
*
h_Q2_
el
;
// histogram style
h1
.
SetLineColor
(
common_bench
::
plot
::
kMpBlue
);
h1
.
SetLineWidth
(
2
);
...
...
@@ -138,7 +146,7 @@ int dis_electrons(const std::string& config_name)
c
.
cd
();
gPad
->
SetLogx
(
false
);
gPad
->
SetLogy
(
true
);
auto
&
h1
=
*
h_Q2_res
;
auto
&
h1
=
*
h_Q2_
el_
res
;
// histogram style
h1
.
SetLineColor
(
common_bench
::
plot
::
kMpBlue
);
h1
.
SetLineWidth
(
2
);
...
...
@@ -159,7 +167,7 @@ int dis_electrons(const std::string& config_name)
gPad
->
SetLogx
(
true
);
gPad
->
SetLogy
(
true
);
auto
&
h1
=
*
h_x_sim
;
auto
&
h2
=
*
h_x_
rec
;
auto
&
h2
=
*
h_x_
el
;
// histogram style
h1
.
SetLineColor
(
common_bench
::
plot
::
kMpBlue
);
h1
.
SetLineWidth
(
2
);
...
...
@@ -192,7 +200,7 @@ int dis_electrons(const std::string& config_name)
c
.
cd
();
gPad
->
SetLogx
(
false
);
gPad
->
SetLogy
(
true
);
auto
&
h1
=
*
h_x_res
;
auto
&
h1
=
*
h_x_
el_
res
;
// histogram style
h1
.
SetLineColor
(
common_bench
::
plot
::
kMpBlue
);
h1
.
SetLineWidth
(
2
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment