From 1ce808367c4169e2a2b38af3706fcaaad3b672b6 Mon Sep 17 00:00:00 2001 From: Johannes Schumann <johannes.schumann@fau.de> Date: Thu, 10 Jun 2021 02:40:24 +0200 Subject: [PATCH] Fix w2weights --- km3buu/output.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/km3buu/output.py b/km3buu/output.py index 8ab8245..e089d77 100644 --- a/km3buu/output.py +++ b/km3buu/output.py @@ -301,14 +301,14 @@ class GiBUUOutput: """ root_tupledata = self.arrays - energy_phase_space = self.flux_interpolation.integral( - self._energy_min, self._energy_max) xsec = self._event_xsec( root_tupledata ) * self.A #xsec_per_nucleon * no_nucleons in the core if self.flux_data is not None: inv_gen_flux = np.power( self.flux_interpolation(root_tupledata.lepIn_E), -1) + energy_phase_space = self.flux_interpolation.integral( + self._energy_min, self._energy_max) energy_factor = energy_phase_space * inv_gen_flux else: energy_factor = 1 -- GitLab