From 2ee44a3afe3398f0248d30f6d3b038a9d36c88a0 Mon Sep 17 00:00:00 2001 From: Maria <zurek@anl.gov> Date: Mon, 9 Aug 2021 15:58:39 -0500 Subject: [PATCH] Adjust binning and range --- benchmarks/imaging_ecal/scripts/energy_scan_analysis.cxx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/benchmarks/imaging_ecal/scripts/energy_scan_analysis.cxx b/benchmarks/imaging_ecal/scripts/energy_scan_analysis.cxx index ff77de0c..fb65d4f5 100644 --- a/benchmarks/imaging_ecal/scripts/energy_scan_analysis.cxx +++ b/benchmarks/imaging_ecal/scripts/energy_scan_analysis.cxx @@ -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 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 hEClusterImg = d1.Histo1D({"hEClusterImg", "Cluster Energy; Cluster Energy [GeV]; Events", 500, 0.0, 25.0},"EClusterImg"); + auto hEClusterImg = d1.Histo1D({"hEClusterImg", "Cluster Energy; Cluster Energy [GeV]; Events", 200, 0.0, 25.0},"EClusterImg"); 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", 800, 0.5, 1.5},"fsamImg"); + auto hfsamImg = d1.Histo1D({"hfsamImg", "Sampling Fraction; Sampling Fraction; Events", 100, 0.0, 1.5},"fsamImg"); 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 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 auto nevents_thrown = d1.Count(); -- GitLab