@@ -2,4 +2,54 @@ using Random
2
2
using QEDbase
3
3
using QEDprocesses
4
4
5
+ @testset " constructors" begin
6
+ @testset " default" begin
7
+ proc = Compton ()
8
+ @test QEDprocesses. _spin_or_pol (proc, Photon (), Incoming ()) == AllPol ()
9
+ @test QEDprocesses. _spin_or_pol (proc, Electron (), Incoming ()) == AllSpin ()
10
+ @test QEDprocesses. _spin_or_pol (proc, Photon (), Outgoing ()) == AllPol ()
11
+ @test QEDprocesses. _spin_or_pol (proc, Electron (), Outgoing ()) == AllSpin ()
12
+ end
13
+
14
+ @testset " non-default" begin
15
+ proc = Compton ((PolX (), PolY ()), (SpinUp (), SpinDown ()))
16
+ @test QEDprocesses. _spin_or_pol (proc, Photon (), Incoming ()) == PolX ()
17
+ @test QEDprocesses. _spin_or_pol (proc, Electron (), Incoming ()) == SpinUp ()
18
+ @test QEDprocesses. _spin_or_pol (proc, Photon (), Outgoing ()) == PolY ()
19
+ @test QEDprocesses. _spin_or_pol (proc, Electron (), Outgoing ()) == SpinDown ()
20
+ end
21
+ end
22
+
23
+ @testset " scattering process interface" begin
24
+ proc = Compton ()
25
+
26
+ @test incoming_particles (proc) == (Photon (), Electron ())
27
+ @test outgoing_particles (proc) == (Photon (), Electron ())
28
+
29
+ @test number_incoming_particles (proc) == 2
30
+ @test number_outgoing_particles (proc) == 2
31
+ end
32
+
33
+ @testset " invalid inputs" begin
34
+ model = PerturbativeQED ()
35
+ proc = Compton ()
36
+
37
+ momenta_2 = [zero (SFourMomentum) for _ in 1 : 2 ]
38
+ momenta_3 = [zero (SFourMomentum) for _ in 1 : 3 ]
39
+
40
+ momenta_2_2 = Matrix {SFourMomentum} (undef, 2 , 2 )
41
+ momenta_3_2 = Matrix {SFourMomentum} (undef, 3 , 2 )
42
+
43
+ # try compute single input with incorrect dimensions
44
+ @test_throws DimensionMismatch differential_cross_section (proc, model, momenta_3, momenta_2)
45
+ @test_throws " incoming" differential_cross_section (proc, model, momenta_3, momenta_2)
46
+ @test_throws DimensionMismatch differential_cross_section (proc, model, momenta_2, momenta_3)
47
+ @test_throws " outgoing" differential_cross_section (proc, model, momenta_2, momenta_3)
48
+
49
+ # try compute multiple inputs with incorrect dimensions
50
+ @test_throws DimensionMismatch differential_cross_section (proc, model, momenta_3_2, momenta_2_2)
51
+ @test_throws " incoming" differential_cross_section (proc, model, momenta_3_2, momenta_2_2)
52
+ @test_throws DimensionMismatch differential_cross_section (proc, model, momenta_2_2, momenta_3_2)
53
+ @test_throws " outgoing" differential_cross_section (proc, model, momenta_2_2, momenta_3_2)
54
+ end
5
55
0 commit comments