File tree 2 files changed +55
-0
lines changed
2 files changed +55
-0
lines changed Original file line number Diff line number Diff line change @@ -200,6 +200,32 @@ func (p4 *PxPyPzE) Set(p P4) {
200
200
p4 .P4 .T = p .E ()
201
201
}
202
202
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
+
203
229
var (
204
230
_ P4 = (* PxPyPzE )(nil )
205
231
_ fmt.Stringer = (* PxPyPzE )(nil )
Original file line number Diff line number Diff line change 5
5
package fmom_test
6
6
7
7
import (
8
+ "math"
8
9
"testing"
9
10
10
11
"go-hep.org/x/hep/fmom"
@@ -139,4 +140,32 @@ func TestPxPyPzE(t *testing.T) {
139
140
}
140
141
})
141
142
}
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:\n got= %v\n want=%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:\n got= %v\n want=%v" , got , want )
169
+ }
170
+ })
142
171
}
You can’t perform that action at this time.
0 commit comments