@@ -54,10 +54,15 @@ RNG = Random.MersenneTwister(727)
54
54
end
55
55
56
56
@testset " Phasespace Point" begin
57
- in_el = ParticleStateful (Incoming (), Electron (), rand (RNG, SFourMomentum))
58
- in_ph = ParticleStateful (Incoming (), Photon (), rand (RNG, SFourMomentum))
59
- out_el = ParticleStateful (Outgoing (), Electron (), rand (RNG, SFourMomentum))
60
- out_ph = ParticleStateful (Outgoing (), Photon (), rand (RNG, SFourMomentum))
57
+ in_el_mom = rand (RNG, SFourMomentum)
58
+ in_ph_mom = rand (RNG, SFourMomentum)
59
+ out_el_mom = rand (RNG, SFourMomentum)
60
+ out_ph_mom = rand (RNG, SFourMomentum)
61
+
62
+ in_el = ParticleStateful (Incoming (), Electron (), in_el_mom)
63
+ in_ph = ParticleStateful (Incoming (), Photon (), in_ph_mom)
64
+ out_el = ParticleStateful (Outgoing (), Electron (), out_el_mom)
65
+ out_ph = ParticleStateful (Outgoing (), Photon (), out_ph_mom)
61
66
62
67
in_particles_valid = SVector (in_el, in_ph)
63
68
in_particles_invalid = SVector (in_el, out_ph)
76
81
process, model, phasespace_def, in_particles_valid, out_particles_valid
77
82
)
78
83
79
- @test momentum (psp, Incoming (), 1 ) == in_el. mom
80
- @test momentum (psp, Incoming (), 2 ) == in_ph. mom
81
- @test momentum (psp, Outgoing (), 1 ) == out_el. mom
82
- @test momentum (psp, Outgoing (), 2 ) == out_ph. mom
84
+ @testset " Accessor" begin
85
+ @test momentum (psp, Incoming (), 1 ) == in_el. mom
86
+ @test momentum (psp, Incoming (), 2 ) == in_ph. mom
87
+ @test momentum (psp, Outgoing (), 1 ) == out_el. mom
88
+ @test momentum (psp, Outgoing (), 2 ) == out_ph. mom
89
+
90
+ @test psp[Incoming (), 1 ] == in_el
91
+ @test psp[Incoming (), 2 ] == in_ph
92
+ @test psp[Outgoing (), 1 ] == out_el
93
+ @test psp[Outgoing (), 2 ] == out_ph
94
+ end
95
+
96
+ @testset " Error handling" begin
97
+ if (VERSION >= v " 1.8" )
98
+ # julia versions before 1.8 did not have support for regex matching in @test_throws
99
+ @test_throws r" stateful particle (.*) is given as an incoming particle but is outgoing" PhaseSpacePoint (
100
+ process, model, phasespace_def, in_particles_invalid, out_particles_valid
101
+ )
102
+
103
+ @test_throws r" stateful particle (.*) is given as an outgoing particle but is incoming" PhaseSpacePoint (
104
+ process, model, phasespace_def, in_particles_valid, out_particles_invalid
105
+ )
106
+
107
+ @test_throws r" process given particle species \( (.*)Electron\(\)\) does not match stateful particle species \( (.*)Photon\(\)\) " PhaseSpacePoint (
108
+ process, model, phasespace_def, SVector (in_ph, in_el), out_particles_valid
109
+ )
110
+
111
+ @test_throws r" process given particle species \( (.*)Electron\(\)\) does not match stateful particle species \( (.*)Photon\(\)\) " PhaseSpacePoint (
112
+ process, model, phasespace_def, in_particles_valid, SVector (out_ph, out_el)
113
+ )
114
+ end
115
+
116
+ @test_throws BoundsError momentum (psp, Incoming (), - 1 )
117
+ @test_throws BoundsError momentum (psp, Outgoing (), - 1 )
118
+ @test_throws BoundsError momentum (psp, Incoming (), 4 )
119
+ @test_throws BoundsError momentum (psp, Outgoing (), 4 )
83
120
84
- @test psp[Incoming (), 1 ] == in_el
85
- @test psp[Incoming (), 2 ] == in_ph
86
- @test psp[Outgoing (), 1 ] == out_el
87
- @test psp[Outgoing (), 2 ] == out_ph
121
+ @test_throws BoundsError psp[Incoming (), - 1 ]
122
+ @test_throws BoundsError psp[Outgoing (), - 1 ]
123
+ @test_throws BoundsError psp[Incoming (), 4 ]
124
+ @test_throws BoundsError psp[Outgoing (), 4 ]
88
125
89
- if (VERSION >= v " 1.8" )
90
- # julia versions before 1.8 did not have support for regex matching in @test_throws
91
- @test_throws r" stateful particle (.*) is given as an incoming particle but is outgoing" PhaseSpacePoint (
126
+ @test_throws InvalidInputError PhaseSpacePoint (
92
127
process, model, phasespace_def, in_particles_invalid, out_particles_valid
93
128
)
94
129
95
- @test_throws r" stateful particle (.*) is given as an outgoing particle but is incoming " PhaseSpacePoint (
130
+ @test_throws InvalidInputError PhaseSpacePoint (
96
131
process, model, phasespace_def, in_particles_valid, out_particles_invalid
97
132
)
98
133
99
- @test_throws r" process given particle species \( (.*)Electron \(\)\) does not match stateful particle species \( (.*)Photon \(\)\) " PhaseSpacePoint (
134
+ @test_throws InvalidInputError PhaseSpacePoint (
100
135
process, model, phasespace_def, SVector (in_ph, in_el), out_particles_valid
101
136
)
102
137
103
- @test_throws r" process given particle species \( (.*)Electron \(\)\) does not match stateful particle species \( (.*)Photon \(\)\) " PhaseSpacePoint (
138
+ @test_throws InvalidInputError PhaseSpacePoint (
104
139
process, model, phasespace_def, in_particles_valid, SVector (out_ph, out_el)
105
140
)
106
141
end
107
142
108
- @test_throws BoundsError momentum (psp, Incoming (), - 1 )
109
- @test_throws BoundsError momentum (psp, Outgoing (), - 1 )
110
- @test_throws BoundsError momentum (psp, Incoming (), 4 )
111
- @test_throws BoundsError momentum (psp, Outgoing (), 4 )
112
-
113
- @test_throws BoundsError psp[Incoming (), - 1 ]
114
- @test_throws BoundsError psp[Outgoing (), - 1 ]
115
- @test_throws BoundsError psp[Incoming (), 4 ]
116
- @test_throws BoundsError psp[Outgoing (), 4 ]
117
-
118
- @test_throws InvalidInputError PhaseSpacePoint (
119
- process, model, phasespace_def, in_particles_invalid, out_particles_valid
120
- )
121
-
122
- @test_throws InvalidInputError PhaseSpacePoint (
123
- process, model, phasespace_def, in_particles_valid, out_particles_invalid
124
- )
143
+ @testset " Generation" begin
144
+ test_psp = generate_phase_space (
145
+ process, model, phasespace_def, [in_el_mom, in_ph_mom], [out_el_mom, out_ph_mom]
146
+ )
125
147
126
- @test_throws InvalidInputError PhaseSpacePoint (
127
- process, model, phasespace_def, SVector (in_ph, in_el), out_particles_valid
128
- )
148
+ @test test_psp . proc == process
149
+ @test test_psp . model == model
150
+ @test test_psp . ps_def == phasespace_def
129
151
130
- @test_throws InvalidInputError PhaseSpacePoint (
131
- process, model, phasespace_def, in_particles_valid, SVector (out_ph, out_el)
132
- )
152
+ @test test_psp[Incoming (), 1 ] == in_el
153
+ @test test_psp[Incoming (), 2 ] == in_ph
154
+ @test test_psp[Outgoing (), 1 ] == out_el
155
+ @test test_psp[Outgoing (), 2 ] == out_ph
156
+ end
133
157
end
0 commit comments