Skip to content

Commit 9a1d24d

Browse files
committed
fmom: add SetPtEtaPhi{E,M} to PxPyPzE
1 parent e07f188 commit 9a1d24d

File tree

2 files changed

+55
-0
lines changed

2 files changed

+55
-0
lines changed

fmom/pxpypze.go

+26
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,32 @@ func (p4 *PxPyPzE) Set(p P4) {
200200
p4.P4.T = p.E()
201201
}
202202

203+
func (p4 *PxPyPzE) SetPtEtaPhiM(pt, eta, phi, m float64) {
204+
sin, cos := math.Sincos(phi)
205+
pt = math.Abs(pt)
206+
p4.P4.X = pt * cos
207+
p4.P4.Y = pt * sin
208+
p4.P4.Z = pt * math.Sinh(eta)
209+
210+
p2 := p4.P4.X*p4.P4.X + p4.P4.Y*p4.P4.Y + p4.P4.Z*p4.P4.Z
211+
m2 := m * m
212+
switch {
213+
case m >= 0:
214+
p4.P4.T = math.Sqrt(p2 + m2)
215+
default:
216+
p4.P4.T = math.Sqrt(math.Max(0, p2-m2))
217+
}
218+
}
219+
220+
func (p4 *PxPyPzE) SetPtEtaPhiE(pt, eta, phi, e float64) {
221+
sin, cos := math.Sincos(phi)
222+
pt = math.Abs(pt)
223+
p4.P4.X = pt * cos
224+
p4.P4.Y = pt * sin
225+
p4.P4.Z = pt * math.Sinh(eta)
226+
p4.P4.T = e
227+
}
228+
203229
var (
204230
_ P4 = (*PxPyPzE)(nil)
205231
_ fmt.Stringer = (*PxPyPzE)(nil)

fmom/pxpypze_test.go

+29
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
package fmom_test
66

77
import (
8+
"math"
89
"testing"
910

1011
"go-hep.org/x/hep/fmom"
@@ -139,4 +140,32 @@ func TestPxPyPzE(t *testing.T) {
139140
}
140141
})
141142
}
143+
144+
t.Run("set-PtEtaPhiM", func(t *testing.T) {
145+
p1 := fmom.NewPxPyPzE(10, 20, 30, 40)
146+
p1.SetPtEtaPhiM(100, 1.5, 1/3.*math.Pi, 10)
147+
want := fmom.NewPxPyPzE(
148+
49.99999999999999,
149+
86.60254037844388,
150+
212.9279455094818,
151+
235.45341360636257,
152+
)
153+
if got, want := p1, want; got != want {
154+
t.Fatalf("invalid p4:\ngot= %v\nwant=%v", got, want)
155+
}
156+
})
157+
158+
t.Run("set-PtEtaPhiE", func(t *testing.T) {
159+
p1 := fmom.NewPxPyPzE(10, 20, 30, 40)
160+
p1.SetPtEtaPhiE(100, 1.5, 1/3.*math.Pi, 10)
161+
want := fmom.NewPxPyPzE(
162+
49.99999999999999,
163+
86.60254037844388,
164+
212.9279455094818,
165+
10,
166+
)
167+
if got, want := p1, want; got != want {
168+
t.Fatalf("invalid p4:\ngot= %v\nwant=%v", got, want)
169+
}
170+
})
142171
}

0 commit comments

Comments
 (0)