1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
|
# Copyright (c) 2019-2025, Saransh Chopra, Henry Schreiner, Eduardo Rodrigues, Jonas Eschle, and Jim Pivarski.
#
# Distributed under the 3-clause BSD license, see accompanying file LICENSE
# or https://github.com/scikit-hep/vector for details.
from __future__ import annotations
import numpy
import vector.backends.numpy
import vector.backends.object
def test_planar_object():
v1 = vector.backends.object.VectorObject2D(
azimuthal=vector.backends.object.AzimuthalObjectXY(0.1, 0.2)
)
v2 = vector.backends.object.VectorObject2D(
azimuthal=vector.backends.object.AzimuthalObjectXY(0.1, 0.2)
)
assert not v1.not_equal(v2)
for t1 in "xy", "rhophi":
for t2 in "xy", "rhophi":
transformed1, transformed2 = (
getattr(v1, "to_" + t1)(),
getattr(v2, "to_" + t2)(),
)
# can't test for exact equality due to round-off: see test_isclose
transformed1.not_equal(transformed2)
def test_planar_numpy():
v1 = vector.backends.numpy.VectorNumpy2D(
[(0.1, 0.2)],
dtype=[("x", numpy.float64), ("y", numpy.float64)],
)
v2 = vector.backends.numpy.VectorNumpy2D(
[(0.1, 0.2)],
dtype=[("x", numpy.float64), ("y", numpy.float64)],
)
assert not v1.not_equal(v2).all()
for t1 in "xy", "rhophi":
for t2 in "xy", "rhophi":
tr1, tr2 = (
getattr(v1, "to_" + t1)(),
getattr(v2, "to_" + t2)(),
)
# can't test for exact equality due to round-off: see test_isclose
tr1.not_equal(tr2)
def test_spatial_object():
v1 = vector.backends.object.VectorObject3D(
azimuthal=vector.backends.object.AzimuthalObjectXY(0.1, 0.2),
longitudinal=vector.backends.object.LongitudinalObjectZ(0.3),
)
v2 = vector.backends.object.VectorObject3D(
azimuthal=vector.backends.object.AzimuthalObjectXY(0.1, 0.2),
longitudinal=vector.backends.object.LongitudinalObjectZ(0.3),
)
assert not v1.not_equal(v2)
for t1 in "xyz", "xytheta", "xyeta", "rhophiz", "rhophitheta", "rhophieta":
for t2 in "xyz", "xytheta", "xyeta", "rhophiz", "rhophitheta", "rhophieta":
transformed1, transformed2 = (
getattr(v1, "to_" + t1)(),
getattr(v2, "to_" + t2)(),
)
# can't test for exact equality due to round-off: see test_isclose
transformed1.not_equal(transformed2)
def test_spatial_numpy():
v1 = vector.backends.numpy.VectorNumpy3D(
[(0.1, 0.2, 0.3)],
dtype=[("x", numpy.float64), ("y", numpy.float64), ("z", numpy.float64)],
)
v2 = vector.backends.numpy.VectorNumpy3D(
[(0.1, 0.2, 0.3)],
dtype=[("x", numpy.float64), ("y", numpy.float64), ("z", numpy.float64)],
)
assert not v1.not_equal(v2).all()
for t1 in "xyz", "xytheta", "xyeta", "rhophiz", "rhophitheta", "rhophieta":
for t2 in "xyz", "xytheta", "xyeta", "rhophiz", "rhophitheta", "rhophieta":
tr1, tr2 = (
getattr(v1, "to_" + t1)(),
getattr(v2, "to_" + t2)(),
)
# can't test for exact equality due to round-off: see test_isclose
tr1.not_equal(tr2)
def test_lorentz_object():
v1 = vector.backends.object.VectorObject4D(
azimuthal=vector.backends.object.AzimuthalObjectXY(0.1, 0.2),
longitudinal=vector.backends.object.LongitudinalObjectZ(0.3),
temporal=vector.backends.object.TemporalObjectT(0.4),
)
v2 = vector.backends.object.VectorObject4D(
azimuthal=vector.backends.object.AzimuthalObjectXY(0.1, 0.2),
longitudinal=vector.backends.object.LongitudinalObjectZ(0.3),
temporal=vector.backends.object.TemporalObjectT(0.4),
)
assert not v1.not_equal(v2)
for t1 in (
"xyzt",
"xythetat",
"xyetat",
"rhophizt",
"rhophithetat",
"rhophietat",
"xyztau",
"xythetatau",
"xyetatau",
"rhophiztau",
"rhophithetatau",
"rhophietatau",
):
for t2 in (
"xyzt",
"xythetat",
"xyetat",
"rhophizt",
"rhophithetat",
"rhophietat",
"xyztau",
"xythetatau",
"xyetatau",
"rhophiztau",
"rhophithetatau",
"rhophietatau",
):
tr1, tr2 = getattr(v1, "to_" + t1)(), getattr(v2, "to_" + t2)()
# can't test for exact equality due to round-off: see test_isclose
tr1.not_equal(tr2)
def test_lorentz_numpy():
v1 = vector.backends.numpy.VectorNumpy4D(
[(0.1, 0.2, 0.3, 0.4)],
dtype=[
("x", numpy.float64),
("y", numpy.float64),
("z", numpy.float64),
("t", numpy.float64),
],
)
v2 = vector.backends.numpy.VectorNumpy4D(
[(0.1, 0.2, 0.3, 0.4)],
dtype=[
("x", numpy.float64),
("y", numpy.float64),
("z", numpy.float64),
("t", numpy.float64),
],
)
assert not v1.not_equal(v2).all()
for t1 in (
"xyzt",
"xythetat",
"xyetat",
"rhophizt",
"rhophithetat",
"rhophietat",
"xyztau",
"xythetatau",
"xyetatau",
"rhophiztau",
"rhophithetatau",
"rhophietatau",
):
for t2 in (
"xyzt",
"xythetat",
"xyetat",
"rhophizt",
"rhophithetat",
"rhophietat",
"xyztau",
"xythetatau",
"xyetatau",
"rhophiztau",
"rhophithetatau",
"rhophietatau",
):
tr1, tr2 = getattr(v1, "to_" + t1)(), getattr(v2, "to_" + t2)()
# can't test for exact equality due to round-off: see test_isclose
tr1.not_equal(tr2)
|