diff --git a/benchmarks/imaging_ecal/scripts/energy_scan_analysis.cxx b/benchmarks/imaging_ecal/scripts/energy_scan_analysis.cxx index ff77de0c9f09b3c9c10069b8d35b224c79882966..fb65d4f584b3934b846e39c1167f7f397ba9cc9b 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();