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

commented out fitting resolution parameters

parent 2328d750
No related branches found
No related tags found
No related merge requests found
This commit is part of merge request !24. Comments created here will be created in the context of that merge request.
......@@ -181,7 +181,7 @@ void emcal_barrel_pions_analysis(const char* input_fname = "sim_output/sim_emcal
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
hdE_rel->Fit("gaus", "", "", -7.5, 7.5);
double* res = hdE_rel->GetFunction("gaus")->GetParameters();
//double* res = hdE_rel->GetFunction("gaus")->GetParameters();
//Pass/Fail
/*
......@@ -191,7 +191,7 @@ void emcal_barrel_pions_analysis(const char* input_fname = "sim_output/sim_emcal
pion0_energy_resolution.fail(res[2]);
}
*/
std::printf("Energy Resolution is %f\n", res[2]);
//std::printf("Energy Resolution is %f\n", res[2]);
//Energy Resolution Histogram Plotting
auto *cdE = new TCanvas("cdE", "cdE", 700, 500);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment