-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
propagate polarized and time-like from op card to op.__init__
- Loading branch information
1 parent
febd415
commit bb6af22
Showing
13 changed files
with
127 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,8 @@ | |
targetgrid=None, | ||
inputpids=None, | ||
targetpids=None, | ||
polarized=False, | ||
time_like=False, | ||
).items() | ||
) | ||
) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
21 changes: 21 additions & 0 deletions
21
src/ekore/anomalous_dimensions/polarized/space_like/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
r"""The polarized, space-like Altarelli-Parisi splitting kernels. | ||
Normalization is given by | ||
.. math:: | ||
\mathbf{P}(x) = \sum\limits_{j=0} a_s^{j+1} \mathbf P^{(j)}(x) | ||
with :math:`a_s = \frac{\alpha_S(\mu^2)}{4\pi}`. | ||
""" | ||
|
||
import numba as nb | ||
|
||
|
||
@nb.njit(cache=True) | ||
def gamma_ns(_order, _mode, _n, _nf): | ||
raise NotImplementedError("Polarised, space-like is not yet implemented") | ||
|
||
|
||
@nb.njit(cache=True) | ||
def gamma_singlet(_order, _n, _nf): | ||
raise NotImplementedError("Polarised, space-like is not yet implemented") |
21 changes: 21 additions & 0 deletions
21
src/ekore/anomalous_dimensions/polarized/time_like/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
r"""The polarized, time-like Altarelli-Parisi splitting kernels. | ||
Normalization is given by | ||
.. math:: | ||
\mathbf{P}(x) = \sum\limits_{j=0} a_s^{j+1} \mathbf P^{(j)}(x) | ||
with :math:`a_s = \frac{\alpha_S(\mu^2)}{4\pi}`. | ||
""" | ||
|
||
import numba as nb | ||
|
||
|
||
@nb.njit(cache=True) | ||
def gamma_ns(_order, _mode, _n, _nf): | ||
raise NotImplementedError("Polarised, time-like is not yet implemented") | ||
|
||
|
||
@nb.njit(cache=True) | ||
def gamma_singlet(_order, _n, _nf): | ||
raise NotImplementedError("Polarised, time-like is not yet implemented") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
src/ekore/anomalous_dimensions/unpolarized/time_like/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
r"""The unpolarized, time-like Altarelli-Parisi splitting kernels. | ||
Normalization is given by | ||
.. math:: | ||
\mathbf{P}(x) = \sum\limits_{j=0} a_s^{j+1} \mathbf P^{(j)}(x) | ||
with :math:`a_s = \frac{\alpha_S(\mu^2)}{4\pi}`. | ||
""" | ||
|
||
import numba as nb | ||
|
||
|
||
@nb.njit(cache=True) | ||
def gamma_ns(_order, _mode, _n, _nf): | ||
raise NotImplementedError("Polarised is not yet implemented") | ||
|
||
|
||
@nb.njit(cache=True) | ||
def gamma_singlet(_order, _n, _nf): | ||
raise NotImplementedError("Polarised is not yet implemented") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters