forked from QEDjl-project/QEDprocesses.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphase_spaces.jl
133 lines (108 loc) · 5.53 KB
/
phase_spaces.jl
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
using Random
using StaticArrays
using QEDbase
using QEDprocesses
# can be removed when QEDbase exports them
import QEDbase.is_incoming, QEDbase.is_outgoing
include("test_implementation/TestImplementation.jl")
TESTMODEL = TestImplementation.TestModel()
TESTPSDEF = TestImplementation.TestPhasespaceDef()
RNG = Random.MersenneTwister(727)
@testset "Stateful Particle" begin
DIRECTIONS = [Incoming(), Outgoing()]
SPECIES = [Electron(), Positron()] #=, Muon(), AntiMuon(), Tauon(), AntiTauon()=#
SPINANDPOLS = [AllSpin(), SpinUp(), SpinDown(), AllPol(), PolX(), PolY()]
for (species, dir, spin_or_pol) in Iterators.product(SPECIES, DIRECTIONS, SPINANDPOLS)
momentum = rand(RNG, SFourMomentum)
if (is_fermion(species) && (spin_or_pol isa AbstractSpin)) ||
(is_boson(species) && (spin_or_pol isa AbstractPolarization))
particle_stateful = ParticleStateful(dir, species, momentum, spin_or_pol)
@test particle_stateful.mom == momentum
@test is_fermion(particle_stateful) == is_fermion(species)
@test is_boson(particle_stateful) == is_boson(species)
@test is_particle(particle_stateful) == is_particle(species)
@test is_anti_particle(particle_stateful) == is_anti_particle(species)
@test is_incoming(particle_stateful) == is_incoming(dir)
@test is_outgoing(particle_stateful) == is_outgoing(dir)
@test mass(particle_stateful) == mass(species)
@test charge(particle_stateful) == charge(species)
if (is_fermion(species))
@test spin(particle_stateful) == spin_or_pol
@test_throws MethodError pol(particle_stateful)
else
@test pol(particle_stateful) == spin_or_pol
@test_throws MethodError spin(particle_stateful)
end
else
if (VERSION >= v"1.8")
# julia versions before 1.8 did not have support for regex matching in @test_throws
@test_throws "MethodError: no method matching ParticleStateful" ParticleStateful(
dir, species, momentum, spin_or_pol
)
end
@test_throws MethodError ParticleStateful(dir, species, momentum, spin_or_pol)
end
end
end
@testset "Phasespace Point" begin
in_el = ParticleStateful(Incoming(), Electron(), rand(RNG, SFourMomentum))
in_ph = ParticleStateful(Incoming(), Photon(), rand(RNG, SFourMomentum))
out_el = ParticleStateful(Outgoing(), Electron(), rand(RNG, SFourMomentum))
out_ph = ParticleStateful(Outgoing(), Photon(), rand(RNG, SFourMomentum))
in_particles_valid = SVector(in_el, in_ph)
in_particles_invalid = SVector(in_el, out_ph)
out_particles_valid = SVector(out_el, out_ph)
out_particles_invalid = SVector(out_el, in_ph)
model = TESTMODEL
process = TestImplementation.TestProcess(
SVector{2,AbstractParticle}(Electron(), Photon()),
SVector{2,AbstractParticle}(Electron(), Photon()),
)
phasespace_def = TESTPSDEF
psp = PhaseSpacePoint(
process, model, phasespace_def, in_particles_valid, out_particles_valid
)
@test nth_momentum(psp, Incoming(), 1) == in_el.mom
@test nth_momentum(psp, Incoming(), 2) == in_ph.mom
@test nth_momentum(psp, Outgoing(), 1) == out_el.mom
@test nth_momentum(psp, Outgoing(), 2) == out_ph.mom
@test psp[Incoming(), 1] == in_el
@test psp[Incoming(), 2] == in_ph
@test psp[Outgoing(), 1] == out_el
@test psp[Outgoing(), 2] == out_ph
if (VERSION >= v"1.8")
# julia versions before 1.8 did not have support for regex matching in @test_throws
@test_throws r"Stateful particle (.*) is given as an incoming particle but is outgoing" PhaseSpacePoint(
process, model, phasespace_def, in_particles_invalid, out_particles_valid
)
@test_throws r"Stateful particle (.*) is given as an outgoing particle but is incoming" PhaseSpacePoint(
process, model, phasespace_def, in_particles_valid, out_particles_invalid
)
@test_throws r"Process given particle species \((.*)Electron\(\)\) does not match stateful particle species \((.*)Photon\(\)\)" PhaseSpacePoint(
process, model, phasespace_def, SVector(in_ph, in_el), out_particles_valid
)
@test_throws r"Process given particle species \((.*)Electron\(\)\) does not match stateful particle species \((.*)Photon\(\)\)" PhaseSpacePoint(
process, model, phasespace_def, in_particles_valid, SVector(out_ph, out_el)
)
end
@test_throws BoundsError nth_momentum(psp, Incoming(), -1)
@test_throws BoundsError nth_momentum(psp, Outgoing(), -1)
@test_throws BoundsError nth_momentum(psp, Incoming(), 4)
@test_throws BoundsError nth_momentum(psp, Outgoing(), 4)
@test_throws BoundsError psp[Incoming(), -1]
@test_throws BoundsError psp[Outgoing(), -1]
@test_throws BoundsError psp[Incoming(), 4]
@test_throws BoundsError psp[Outgoing(), 4]
@test_throws InvalidInputError PhaseSpacePoint(
process, model, phasespace_def, in_particles_invalid, out_particles_valid
)
@test_throws InvalidInputError PhaseSpacePoint(
process, model, phasespace_def, in_particles_valid, out_particles_invalid
)
@test_throws InvalidInputError PhaseSpacePoint(
process, model, phasespace_def, SVector(in_ph, in_el), out_particles_valid
)
@test_throws InvalidInputError PhaseSpacePoint(
process, model, phasespace_def, in_particles_valid, SVector(out_ph, out_el)
)
end