We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a9e3b3 commit 2bd6c87Copy full SHA for 2bd6c87
fact/VERSION
@@ -1 +1 @@
1
-0.25.1
+0.25.2
fact/io.py
@@ -10,7 +10,6 @@
10
import astropy.units as u
11
import tempfile
12
import warnings
13
-from time import perf_counter
14
15
16
__all__ = [
@@ -559,7 +558,7 @@ def read_simulated_spectrum(corsika_headers_path):
559
558
if 'n_reuse' in runs.columns:
560
# if reuse is not the same for all runs, multply n_showers
561
# and set reuse to 1
562
- unique = runs['reuse'].unique()
+ unique = runs['n_reuse'].unique()
563
if len(unique) > 1:
564
summary['n_showers'] = (n_showers * runs['n_reuse']).sum()
565
summary['n_reuse'] = 1
0 commit comments