reboost 0.5.2__py3-none-any.whl → 0.5.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- reboost/_version.py +2 -2
- reboost/iterator.py +1 -1
- {reboost-0.5.2.dist-info → reboost-0.5.4.dist-info}/METADATA +2 -2
- {reboost-0.5.2.dist-info → reboost-0.5.4.dist-info}/RECORD +8 -8
- {reboost-0.5.2.dist-info → reboost-0.5.4.dist-info}/WHEEL +0 -0
- {reboost-0.5.2.dist-info → reboost-0.5.4.dist-info}/entry_points.txt +0 -0
- {reboost-0.5.2.dist-info → reboost-0.5.4.dist-info}/licenses/LICENSE +0 -0
- {reboost-0.5.2.dist-info → reboost-0.5.4.dist-info}/top_level.txt +0 -0
reboost/_version.py
CHANGED
reboost/iterator.py
CHANGED
|
@@ -111,7 +111,7 @@ class GLMIterator:
|
|
|
111
111
|
|
|
112
112
|
# heuristics for a good buffer length
|
|
113
113
|
if self.use_glm:
|
|
114
|
-
self.buffer = int(buffer * glm_n_rows / stp_n_rows)
|
|
114
|
+
self.buffer = int(buffer * glm_n_rows / (1 + stp_n_rows))
|
|
115
115
|
msg = f"Number of stp rows {stp_n_rows}, number of glm rows {glm_n_rows} changing buffer from {buffer} to {self.buffer}"
|
|
116
116
|
log.debug(msg)
|
|
117
117
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: reboost
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.4
|
|
4
4
|
Summary: New LEGEND Monte-Carlo simulation post-processing
|
|
5
5
|
Author-email: Manuel Huber <info@manuelhu.de>, Toby Dixon <toby.dixon.23@ucl.ac.uk>, Luigi Pertoldi <gipert@pm.me>
|
|
6
6
|
Maintainer: The LEGEND Collaboration
|
|
@@ -700,7 +700,7 @@ Requires-Dist: colorlog
|
|
|
700
700
|
Requires-Dist: numpy
|
|
701
701
|
Requires-Dist: scipy
|
|
702
702
|
Requires-Dist: numba
|
|
703
|
-
Requires-Dist: legend-pydataobj>=1.
|
|
703
|
+
Requires-Dist: legend-pydataobj>=1.14
|
|
704
704
|
Requires-Dist: legend-pygeom-optics>=0.9.2
|
|
705
705
|
Requires-Dist: hist
|
|
706
706
|
Requires-Dist: dbetto
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
reboost/__init__.py,sha256=3cYLf7XEyFRX5GK8f50gY4ecGR5O5HORITpDthOFpOg,265
|
|
2
|
-
reboost/_version.py,sha256=
|
|
2
|
+
reboost/_version.py,sha256=dcAaO0Qe1IlOwiMsqG0TVZdK_BIVQUv1DNRmnBueT2I,511
|
|
3
3
|
reboost/build_evt.py,sha256=yH0bf4bwbp4feWV3JgvSAD5RcvhOX6c9PhH8FAe3Xv4,4710
|
|
4
4
|
reboost/build_glm.py,sha256=IerSLQfe51ZO7CQP2kmfPnOIVaDtcfw3byOM02Vaz6o,9472
|
|
5
5
|
reboost/build_hit.py,sha256=23JL5B7qThdHZqAK_HWoytqcEOWDhGsk4n5UMtojJ1c,15513
|
|
6
6
|
reboost/cli.py,sha256=HZgqUZK0tSmnlGqoXjrbmLitW_i001TzibxvDrRxLLg,6324
|
|
7
7
|
reboost/core.py,sha256=pUco_IaTKf50PTVrtyFwoYveJVS58mqs9P3TUrtEyjs,12827
|
|
8
|
-
reboost/iterator.py,sha256=
|
|
8
|
+
reboost/iterator.py,sha256=fATFDxu2PUc0e48OdJJujZo2kwykfRLH1oBtcB-s5pM,6905
|
|
9
9
|
reboost/log_utils.py,sha256=VqS_9OC5NeNU3jcowVOBB0NJ6ssYvNWnirEY-JVduEA,766
|
|
10
10
|
reboost/profile.py,sha256=EOTmjmS8Rm_nYgBWNh6Rntl2XDsxdyed7yEdWtsZEeg,2598
|
|
11
11
|
reboost/units.py,sha256=3EH8XlpbsObdu5vLgxhm1600L6UNYD5jng4SjJT_1QE,2202
|
|
@@ -29,9 +29,9 @@ reboost/shape/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
29
29
|
reboost/shape/cluster.py,sha256=RIvBlhHzp88aaUZGofp5SD9bimnoiqIOddhQ84jiwoM,8135
|
|
30
30
|
reboost/shape/group.py,sha256=_z2qCOret3E-kj-nrp1-J5j2lEwQpgfYdQp2pgpDHR8,4449
|
|
31
31
|
reboost/shape/reduction.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
32
|
-
reboost-0.5.
|
|
33
|
-
reboost-0.5.
|
|
34
|
-
reboost-0.5.
|
|
35
|
-
reboost-0.5.
|
|
36
|
-
reboost-0.5.
|
|
37
|
-
reboost-0.5.
|
|
32
|
+
reboost-0.5.4.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
33
|
+
reboost-0.5.4.dist-info/METADATA,sha256=mFAy4qMlKnuWJB8V8FwF4Y5fdu-pw5ThJP3WYZGS9Ws,44248
|
|
34
|
+
reboost-0.5.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
35
|
+
reboost-0.5.4.dist-info/entry_points.txt,sha256=DxhD6BidSWNot9BrejHJjQ7RRLmrMaBIl52T75oWTwM,93
|
|
36
|
+
reboost-0.5.4.dist-info/top_level.txt,sha256=q-IBsDepaY_AbzbRmQoW8EZrITXRVawVnNrB-_zyXZs,8
|
|
37
|
+
reboost-0.5.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|