Skip to content
Snippets Groups Projects
Commit 4e807131 authored by Marshall Scott's avatar Marshall Scott
Browse files

fixed error

parent ace64bd4
Branches
No related tags found
No related merge requests found
...@@ -180,8 +180,8 @@ void emcal_barrel_pions_analysis(const char* input_fname = "sim_output/sim_emcal ...@@ -180,8 +180,8 @@ void emcal_barrel_pions_analysis(const char* input_fname = "sim_output/sim_emcal
//Energy Resolution Work //Energy Resolution Work
auto hdE = d1.Histo1D({"hdE", "dE; dE[GeV]; Events", 20, -7.5, 7.5}, "dE");//changed from 100 auto hdE = d1.Histo1D({"hdE", "dE; dE[GeV]; Events", 20, -7.5, 7.5}, "dE");//changed from 100
auto hdE_rel = d1.Histo1D({"hdE_rel", "dE Relative; dE Relative; Events", 20, -7.5, 7.5}, "dE_rel");//changed from 100 auto hdE_rel = d1.Histo1D({"hdE_rel", "dE Relative; dE Relative; Events", 20, -7.5, 7.5}, "dE_rel");//changed from 100
auto f1 = hdE_rel->Fit("gaus", "", "", -7.5, 7.5); hdE_rel->Fit("gaus", "", "", -7.5, 7.5);
double* res = f1->GetParams(); double* res = hdE_rel->GetParameters();
//Pass/Fail //Pass/Fail
/* /*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment