Skip to content
This repository has been archived by the owner on Jan 27, 2023. It is now read-only.

Releases: scikit-hep/uproot3-methods

0.2.11

12 Dec 23:07
b0f7b50
Compare
Choose a tag to compare

pt, eta, phi, and mass caching on TLorentzVector.ArrayMethods now happens only at the deepest level of JaggedArray nesting. That means that short-lived views (projecting through a jagged table, for instance) won't invalidate that cache.

0.2.10

02 Dec 22:39
2c689b8
Compare
Choose a tag to compare
  • Faster eta calculation.
  • Some properties are memoized and constructing a TLorentzVector from pt, eta, phi, mass preloads the memo (so that mass from the TLorentzVector is exactly the same as the given mass, for instance).

0.2.9

28 Nov 18:55
158169a
Compare
Choose a tag to compare

sum() may now be used on physics vector arrays regardless of whether they're jagged or not.

0.2.8

28 Nov 17:03
973fa35
Compare
Choose a tag to compare

Classmethod constructors for TLorentzVectorArray, TVector3Array, and TVector2Array (such as TLorentzVector.from_cartesian) accept jagged arrays as arguments, which result in JaggedArrayMethods of these arrays. Methods can be used at the jagged level, at the flat array level, or at the Python object level.

0.2.7

08 Nov 19:29
2d18363
Compare
Choose a tag to compare

PR #9 fixed a bug in TVector3.cross (and added a test).

0.2.6

26 Oct 19:40
7e0af9e
Compare
Choose a tag to compare

To get a Zenodo DOI.

0.2.5

05 Oct 13:27
ddff407
Compare
Choose a tag to compare

@marinang added handling of TGraph types.

0.2.4

04 Oct 17:16
Compare
Choose a tag to compare

Fixed an infinite recursion bug for JaggedArrays of TLorentzVectors (code was general enough for ObjectArrayMethods but not also JaggedArrayMethods).

0.2.3

28 Sep 19:00
Compare
Choose a tag to compare

Fixed simple copy-paste errors in TLorentzVectorArray.from_ptetaphim and the from_p3 it depends on.

0.2.2

27 Sep 20:44
Compare
Choose a tag to compare

Fixed a bug in which TLorentzVectorArrays could not yield .p3 data if they were non-jagged.