Skip to content

Commit

Permalink
Add QEDbase. to _generate_moment
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonReinhard committed Jun 25, 2024
1 parent 34e0400 commit 63693ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/phase_spaces/create.jl
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ function PhaseSpacePoint(
in_coords::NTuple{N,Real},
out_coords::NTuple{M,Real},
) where {N,M}
in_ps, out_ps = _generate_momenta(proc, model, ps_def, in_coords, out_coords)
in_ps, out_ps = QEDbase._generate_momenta(proc, model, ps_def, in_coords, out_coords)
return PhaseSpacePoint(proc, model, ps_def, in_ps, out_ps)
end

Expand All @@ -153,6 +153,6 @@ function InPhaseSpacePoint(
ps_def::AbstractPhasespaceDefinition,
in_coords::NTuple{N,Real},
) where {N}
in_ps = _generate_incoming_momenta(proc, model, ps_def, in_coords)
in_ps = QEDbase._generate_incoming_momenta(proc, model, ps_def, in_coords)
return InPhaseSpacePoint(proc, model, ps_def, in_ps)
end

0 comments on commit 63693ed

Please sign in to comment.