Skip to content
Snippets Groups Projects

Update pi0 analysis script

Merged Jihee Kim requested to merge pion_debug into master
3 files
+ 254
3
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -28,8 +28,8 @@ void emcal_pi0(int n_events = 1e6, const char* out_fname = "./data/emcal_pi0_0Ge
// Constraining the solid angle, but larger than that subtended by the detector
// https://indico.bnl.gov/event/7449/contributions/35966/attachments/27177/41430/EIC-DWG-Calo-03192020.pdf
// See a figure on slide 26
double cos_theta_min = std::cos(M_PI * (120.0 / 180.0));
double cos_theta_max = std::cos(M_PI);
double cos_theta_min = std::cos(M_PI * (160.0 / 180.0));
double cos_theta_max = std::cos(M_PI * (175.0 / 180.0));
for (events_parsed = 0; events_parsed < n_events; events_parsed++) {
// FourVector(px,py,pz,e,pdgid,status)
Loading