Skip to content

Commit 9bbf370

Browse files
author
Anton Reinhard
committed
Fix tests for julia versions 1.7 and lower
1 parent 089f1b3 commit 9bbf370

File tree

3 files changed

+26
-4
lines changed

3 files changed

+26
-4
lines changed

src/compton/differential_cross_section.jl

+15
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,21 @@ function _differential_cross_section(
3737
process, model, photon_in, electron_in, photon_out, electron_out
3838
)
3939

40+
# TODO: replace this with some less computationally intensive way to figure out how many states there are
41+
photon_in_bstate = Vector{SLorentzVector{ComplexF64}}(
42+
base_state(
43+
Photon(), Incoming(), photon_in, _spin_or_pol(process, Photon(), Incoming())
44+
),
45+
)
46+
electron_in_bstate = Vector{BiSpinor}(
47+
base_state(
48+
Electron(),
49+
Incoming(),
50+
electron_in,
51+
_spin_or_pol(process, Electron(), Incoming()),
52+
),
53+
)
54+
4055
# average over incoming polarizations/spins, but sum over outgoing pols/spins
4156
normalization = 1.0 / (length(photon_in_bstate) * length(electron_in_bstate))
4257
I = photon_in * electron_in

src/interfaces/process_interface.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -118,12 +118,12 @@ function differential_cross_section(
118118
) where {T<:QEDbase.AbstractFourMomentum}
119119
size(in_phasespace, 1) == number_incoming_particles(proc_def) || throw(
120120
DimensionMismatch(
121-
"The number of momenta in the in-phasespace $(length(in_phasespace)) does not match the number of incoming particles of the process $(number_incoming_particles(proc_def)).",
121+
"The number of momenta in the in-phasespace $(size(in_phasespace, 1)) does not match the number of incoming particles of the process $(number_incoming_particles(proc_def)).",
122122
),
123123
)
124124
size(out_phasespace, 1) == number_outgoing_particles(proc_def) || throw(
125125
DimensionMismatch(
126-
"The number of momenta in the out-phasespace $(length(out_phasespace)) does not match the number of outgoing particles of the process $(number_outgoing_particles(proc_def)).",
126+
"The number of momenta in the out-phasespace $(size(out_phasespace, 1)) does not match the number of outgoing particles of the process $(number_outgoing_particles(proc_def)).",
127127
),
128128
)
129129
return _differential_cross_section(proc_def, model_def, in_phasespace, out_phasespace)

test/compton.jl

+9-2
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,18 @@ end
4848
@test_throws DimensionMismatch differential_cross_section(
4949
proc, model, invalid, valid
5050
)
51-
@test_throws "incoming" differential_cross_section(proc, model, invalid, valid)
5251
@test_throws DimensionMismatch differential_cross_section(
5352
proc, model, valid, invalid
5453
)
55-
@test_throws "outgoing" differential_cross_section(proc, model, valid, invalid)
54+
if VERSION >= v"1.8"
55+
# this syntax is not supported in julia version 1.7 or below
56+
@test_throws "incoming" differential_cross_section(
57+
proc, model, invalid, valid
58+
)
59+
@test_throws "outgoing" differential_cross_section(
60+
proc, model, valid, invalid
61+
)
62+
end
5663
end
5764
end
5865

0 commit comments

Comments
 (0)