Skip to content
Snippets Groups Projects

Resolve "Fix Pi0 benchmark"

Merged Marshall Scott requested to merge 37-fix-pi0-benchmark into master
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -65,7 +65,7 @@ void emcal_barrel_pi0_analysis(const char* input_fname = "sim_output/sim_emcal_b
ROOT::RDataFrame d0("events", input_fname);
// Sampling Fraction
double samp_frac = 0.0136;
double samp_frac = 0.01;//0.0136
// Thrown Energy [GeV]
auto Ethr = [](std::vector<dd4pod::Geant4ParticleData> const& input) {
@@ -149,7 +149,7 @@ void emcal_barrel_pi0_analysis(const char* input_fname = "sim_output/sim_emcal_b
// Set sampling Fraction, ideally this will be taken from a json file
//samp_frac = hfsam -> GetMean();
samp_frac = 0.5;
//samp_frac = 0.5;
auto d2 = d1.Define("dE", eResol, {"Esim","Ethr"})
.Define("dE_rel", eResol_rel, {"Esim","Ethr"})
Loading