Skip to content

Commit 976515a

Browse files
author
Patrick Krause
committed
explicit import of p-one dataclasses
1 parent bc7bee3 commit 976515a

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

src/mintanalysis/pmt/ana/peSpectrumAnalyzerIcetray.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55

66
import matplotlib.pyplot as plt
77
import numpy as np
8-
from icecube import icetray
8+
from icecube import icetray, pone_unfolding
9+
910
from matplotlib.backends.backend_pdf import PdfPages
1011

1112
from mintanalysis.pmt.ana.peSpectrumAnalyzer import PESpectrumAnalyzer
@@ -28,7 +29,7 @@ def __init__(
2829
super().__init__(
2930
aux_yaml, keys, ignore_keys, bin_size, lim, override_results, logger, calibrator, calib
3031
)
31-
self.bins = np.arange(0, 10, 20.0 / bin_size)
32+
self.bins = np.arange(0, 20, 20.0 / bin_size)
3233
self.f_i3 = f_i3
3334
icetray.set_log_level(icetray.I3LogLevel.LOG_WARN)
3435

0 commit comments

Comments
 (0)