atlas-ftag-tools 0.1.16__py3-none-any.whl → 0.1.16.1__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: atlas-ftag-tools
3
- Version: 0.1.16
3
+ Version: 0.1.16.1
4
4
  Summary: ATLAS Flavour Tagging Tools
5
5
  Author: Sam Van Stroud, Philipp Gadow
6
6
  License: MIT
@@ -1,4 +1,4 @@
1
- ftag/__init__.py,sha256=PN9ZbZHVfxreetH3HnhEbZf1G-J4Up-5si-dQ4rrezg,629
1
+ ftag/__init__.py,sha256=ZdUchHE-NB1CBEdG2YhH1awFspu4sMr_GfguaWeK6eg,631
2
2
  ftag/cuts.py,sha256=RYAfK3MkEhYhlKQFWQTKu72ZrUwlExFeT8IWLSIgeTU,2798
3
3
  ftag/flavour.py,sha256=BLifDbJCoszPzgrU5X3Txff9fTMuVGEjUeU0OtOfllc,2701
4
4
  ftag/flavours.yaml,sha256=9ifKyz1_VoHlOaWuf3JEqMLSYyLFedYJf9x1D6dCTnM,5335
@@ -14,10 +14,10 @@ ftag/hdf5/h5reader.py,sha256=et-_LXt942xegqc14bPapUgIO7MUfC2m04uJslLkXxI,13579
14
14
  ftag/hdf5/h5split.py,sha256=BlhpsUlqBSDCjVRWuyEq1OImyzwp7VyVkDrCz7pvQKc,2508
15
15
  ftag/hdf5/h5utils.py,sha256=wjbAmFY5GoFkWW_AvEKTPbwYMFroHKKFuIcehd91dhM,3222
16
16
  ftag/hdf5/h5writer.py,sha256=5jm3vSk4m77lFSUyWm-i_y_USzQRVoKpLL8F_cii65Q,4826
17
- ftag/wps/discriminant.py,sha256=0YmI3-ieSWReO_uY4-3Sc_85hLVpoCHQ7LfuU1SC_Sg,2318
17
+ ftag/wps/discriminant.py,sha256=ru-qRxqKCf6ijGbjlx_j7snv07vzeCppDN2lflI8k64,2319
18
18
  ftag/wps/working_points.py,sha256=pLoe8RaVmbtiGM9TxMtWocMohBWrY6JcMCLE_e3XtVY,8033
19
- atlas_ftag_tools-0.1.16.dist-info/METADATA,sha256=H547FpfWZ6plg5PXm7E9SJhppKGWM8iKM_EpFJaUNJs,5064
20
- atlas_ftag_tools-0.1.16.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
21
- atlas_ftag_tools-0.1.16.dist-info/entry_points.txt,sha256=LfVLsZHQolqbPnwPgtmc5IQTh527BKkN2v-IpXWTNHw,137
22
- atlas_ftag_tools-0.1.16.dist-info/top_level.txt,sha256=qiYQuKcAvMim-31FwkT3MTQu7WQm0s58tPAia5KKWqs,5
23
- atlas_ftag_tools-0.1.16.dist-info/RECORD,,
19
+ atlas_ftag_tools-0.1.16.1.dist-info/METADATA,sha256=OX18wCjUm0gZT0yD1AMxjaMQ3-7Ho3qdJU1IEarQjBo,5066
20
+ atlas_ftag_tools-0.1.16.1.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
21
+ atlas_ftag_tools-0.1.16.1.dist-info/entry_points.txt,sha256=LfVLsZHQolqbPnwPgtmc5IQTh527BKkN2v-IpXWTNHw,137
22
+ atlas_ftag_tools-0.1.16.1.dist-info/top_level.txt,sha256=qiYQuKcAvMim-31FwkT3MTQu7WQm0s58tPAia5KKWqs,5
23
+ atlas_ftag_tools-0.1.16.1.dist-info/RECORD,,
ftag/__init__.py CHANGED
@@ -1,7 +1,7 @@
1
1
  """atlas-ftag-tools - Common tools for ATLAS flavour tagging software."""
2
2
  from __future__ import annotations
3
3
 
4
- __version__ = "v0.1.16"
4
+ __version__ = "v0.1.16.1"
5
5
 
6
6
 
7
7
  from ftag import hdf5
ftag/wps/discriminant.py CHANGED
@@ -58,7 +58,7 @@ def get_discriminant(
58
58
  np.ndarray
59
59
  Array of discriminant values.
60
60
  """
61
- if not isinstance(fx, tuple | list):
61
+ if not isinstance(fx, (tuple, list)):
62
62
  fx = (fx,)
63
63
  tagger_funcs = {
64
64
  "bjets": btag_discriminant,