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
e4c9f1ae
Commit
e4c9f1ae
authored
4 years ago
by
Ziyue Zhang
Committed by
Whitney Armstrong
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
WIP: Adjusting binning for fitting; test on 1000 events
parent
f2b30317
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
benchmarks/dvmp/analysis/vm_mass.cxx
+6
-8
6 additions, 8 deletions
benchmarks/dvmp/analysis/vm_mass.cxx
with
6 additions
and
8 deletions
benchmarks/dvmp/analysis/vm_mass.cxx
+
6
−
8
View file @
e4c9f1ae
...
@@ -99,19 +99,17 @@ int vm_mass(const std::string& config_name)
...
@@ -99,19 +99,17 @@ int vm_mass(const std::string& config_name)
.
Define
(
"eta_sim"
,
"p_vm_sim.eta()"
);
.
Define
(
"eta_sim"
,
"p_vm_sim.eta()"
);
// Define output histograms
// Define output histograms
auto
h_im_rec
=
auto
h_im_rec
=
d_im
.
Histo1D
({
"h_im_rec"
,
";m_{ll'} (GeV/c^{2});#"
,
(
int
)(
vm_mass
+
0.5
)
*
2
*
100
,
0.
,
2.
*
(
int
)(
vm_mass
+
0.5
)},
"mass_rec"
);
d_im
.
Histo1D
({
"h_im_rec"
,
";m_{ll'} (GeV/c^{2});#"
,
100
,
-
1.1
,
vm_mass
+
5
},
"mass_rec"
);
auto
h_im_sim
=
d_im
.
Histo1D
({
"h_im_sim"
,
";m_{ll'} (GeV/c^{2});#"
,
(
int
)(
vm_mass
+
0.5
)
*
2
*
100
,
3.0
,
3.2
},
"mass_sim"
);
auto
h_im_sim
=
d_im
.
Histo1D
({
"h_im_sim"
,
";m_{ll'} (GeV/c^{2});#"
,
100
,
-
1.1
,
vm_mass
+
5
},
"mass_sim"
);
auto
h_pt_rec
=
d_im
.
Histo1D
({
"h_pt_rec"
,
";p_{T} (GeV/c);#"
,
40
0
,
0.
,
40
.
},
"pt_rec"
);
auto
h_pt_rec
=
d_im
.
Histo1D
({
"h_pt_rec"
,
";p_{T} (GeV/c);#"
,
15
0
,
0.
,
15
.
},
"pt_rec"
);
auto
h_pt_sim
=
d_im
.
Histo1D
({
"h_pt_sim"
,
";p_{T} (GeV/c);#"
,
40
0
,
0.
,
40
.
},
"pt_sim"
);
auto
h_pt_sim
=
d_im
.
Histo1D
({
"h_pt_sim"
,
";p_{T} (GeV/c);#"
,
15
0
,
0.
,
15
.
},
"pt_sim"
);
auto
h_phi_rec
=
d_im
.
Histo1D
({
"h_phi_rec"
,
";#phi_{ll'};#"
,
90
,
-
M_PI
,
M_PI
},
"phi_rec"
);
auto
h_phi_rec
=
d_im
.
Histo1D
({
"h_phi_rec"
,
";#phi_{ll'};#"
,
90
,
-
M_PI
,
M_PI
},
"phi_rec"
);
auto
h_phi_sim
=
d_im
.
Histo1D
({
"h_phi_sim"
,
";#phi_{ll'};#"
,
90
,
-
M_PI
,
M_PI
},
"phi_sim"
);
auto
h_phi_sim
=
d_im
.
Histo1D
({
"h_phi_sim"
,
";#phi_{ll'};#"
,
90
,
-
M_PI
,
M_PI
},
"phi_sim"
);
auto
h_eta_rec
=
d_im
.
Histo1D
({
"h_eta_rec"
,
";#eta_{ll'};#"
,
10
00
,
-
5
.
,
5
.
},
"eta_rec"
);
auto
h_eta_rec
=
d_im
.
Histo1D
({
"h_eta_rec"
,
";#eta_{ll'};#"
,
4
00
,
-
2
.
,
2
.
},
"eta_rec"
);
auto
h_eta_sim
=
d_im
.
Histo1D
({
"h_eta_sim"
,
";#eta_{ll'};#"
,
10
00
,
-
5
.
,
5
.
},
"eta_sim"
);
auto
h_eta_sim
=
d_im
.
Histo1D
({
"h_eta_sim"
,
";#eta_{ll'};#"
,
4
00
,
-
2
.
,
2
.
},
"eta_sim"
);
// Plot our histograms.
// Plot our histograms.
// TODO: to start I'm explicitly plotting the histograms, but want to
// TODO: to start I'm explicitly plotting the histograms, but want to
...
...
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