Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
reconstruction_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
reconstruction_benchmarks
Commits
2ee44a3a
Commit
2ee44a3a
authored
3 years ago
by
Maria Zurek
Browse files
Options
Downloads
Patches
Plain Diff
Adjust binning and range
parent
5626a0e9
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/imaging_ecal/scripts/energy_scan_analysis.cxx
+3
-4
3 additions, 4 deletions
benchmarks/imaging_ecal/scripts/energy_scan_analysis.cxx
with
3 additions
and
4 deletions
benchmarks/imaging_ecal/scripts/energy_scan_analysis.cxx
+
3
−
4
View file @
2ee44a3a
...
@@ -87,14 +87,13 @@ void energy_scan_analysis(const char* input_fname = "sim_output/rec_emcal_barrel
...
@@ -87,14 +87,13 @@ void energy_scan_analysis(const char* input_fname = "sim_output/rec_emcal_barrel
auto
hEthr
=
d1
.
Histo1D
({
"hEthr"
,
"Thrown Energy; Thrown Energy [GeV]; Events"
,
100
,
0.0
,
25.0
},
"Ethr"
);
auto
hEthr
=
d1
.
Histo1D
({
"hEthr"
,
"Thrown Energy; Thrown Energy [GeV]; Events"
,
100
,
0.0
,
25.0
},
"Ethr"
);
//auto hNhits =d1.Histo1D({"hNhits", "Number of hits per events; Number of hits; Events", 100, 0.0, 2000.0},"nhits");
//auto hNhits =d1.Histo1D({"hNhits", "Number of hits per events; Number of hits; Events", 100, 0.0, 2000.0},"nhits");
auto
hErecImg
=
d1
.
Histo1D
({
"hErecImg"
,
"Reconstructed energy deposit; Energy Deposit [GeV]; Events"
,
500
,
0.0
,
0.5
},
"ErecImg"
);
auto
hErecImg
=
d1
.
Histo1D
({
"hErecImg"
,
"Reconstructed energy deposit; Energy Deposit [GeV]; Events"
,
500
,
0.0
,
0.5
},
"ErecImg"
);
auto
hEClusterImg
=
d1
.
Histo1D
({
"hEClusterImg"
,
"Cluster Energy; Cluster Energy [GeV]; Events"
,
5
00
,
0.0
,
25.0
},
"EClusterImg"
);
auto
hEClusterImg
=
d1
.
Histo1D
({
"hEClusterImg"
,
"Cluster Energy; Cluster Energy [GeV]; Events"
,
2
00
,
0.0
,
25.0
},
"EClusterImg"
);
auto
hNClusterImg
=
d1
.
Histo1D
({
"hNClusterImg"
,
"Number of Clusters; # of Clusters; Events"
,
100
,
0.0
,
100.0
},
"NClusterImg"
);
auto
hNClusterImg
=
d1
.
Histo1D
({
"hNClusterImg"
,
"Number of Clusters; # of Clusters; Events"
,
100
,
0.0
,
100.0
},
"NClusterImg"
);
auto
hfsamImg
=
d1
.
Histo1D
({
"hfsamImg"
,
"Sampling Fraction; Sampling Fraction; Events"
,
8
00
,
0.
5
,
1.5
},
"fsamImg"
);
auto
hfsamImg
=
d1
.
Histo1D
({
"hfsamImg"
,
"Sampling Fraction; Sampling Fraction; Events"
,
1
00
,
0.
0
,
1.5
},
"fsamImg"
);
auto
hErecScFi
=
d1
.
Histo1D
({
"hErecScFi"
,
"Reconstructed energy deposit; Energy Deposit [GeV]; Events"
,
500
,
0.0
,
10.0
},
"ErecScFi"
);
auto
hErecScFi
=
d1
.
Histo1D
({
"hErecScFi"
,
"Reconstructed energy deposit; Energy Deposit [GeV]; Events"
,
500
,
0.0
,
10.0
},
"ErecScFi"
);
auto
hEClusterScFi
=
d1
.
Histo1D
({
"hEClusterScFi"
,
"Cluster Energy; Cluster Energy [GeV]; Events"
,
500
,
0.0
,
25.0
},
"EClusterScFi"
);
auto
hEClusterScFi
=
d1
.
Histo1D
({
"hEClusterScFi"
,
"Cluster Energy; Cluster Energy [GeV]; Events"
,
500
,
0.0
,
25.0
},
"EClusterScFi"
);
auto
hNClusterScFi
=
d1
.
Histo1D
({
"hNClusterScFi"
,
"Number of Clusters; # of Clusters; Events"
,
100
,
0.0
,
100.0
},
"NClusterScFi"
);
auto
hNClusterScFi
=
d1
.
Histo1D
({
"hNClusterScFi"
,
"Number of Clusters; # of Clusters; Events"
,
100
,
0.0
,
100.0
},
"NClusterScFi"
);
auto
hfsamScFi
=
d1
.
Histo1D
({
"hfsamScFi"
,
"Sampling Fraction; Sampling Fraction; Events"
,
800
,
0.8
,
1.2
},
"fsamScFi"
);
auto
hfsamScFi
=
d1
.
Histo1D
({
"hfsamScFi"
,
"Sampling Fraction; Sampling Fraction; Events"
,
100
,
0.8
,
1.2
},
"fsamScFi"
);
// Event Counts
// Event Counts
auto
nevents_thrown
=
d1
.
Count
();
auto
nevents_thrown
=
d1
.
Count
();
...
...
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