Skip to content

Commit

Permalink
rust: Add missing ref for polarized ad
Browse files Browse the repository at this point in the history
  • Loading branch information
felixhekhorn committed Jan 13, 2025
1 parent 88d7ed9 commit 9797190
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 9 deletions.
12 changes: 12 additions & 0 deletions crates/ekore/refs.bib
Original file line number Diff line number Diff line change
Expand Up @@ -107,3 +107,15 @@ @article{Bierenbaum2009zt
pages = "401--406",
year = "2009"
}
@article{Gluck1995yr,
author = "Gluck, M. and Reya, E. and Stratmann, M. and Vogelsang, W.",
title = "{Next-to-leading order radiative parton model analysis of polarized deep inelastic lepton - nucleon scattering}",
eprint = "hep-ph/9508347",
archivePrefix = "arXiv",
reportNumber = "DO-TH-95-13, RAL-TR-95-042",
doi = "10.1103/PhysRevD.53.4775",
journal = "Phys. Rev. D",
volume = "53",
pages = "4775--4786",
year = "1996"
}
14 changes: 13 additions & 1 deletion crates/ekore/src/bib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! List of References (autogenerated on 2024-09-10T11:22:16.645053).
//! List of References (autogenerated on 2025-01-13T14:38:04.013494).
#[allow(non_snake_case)]
/// The Three loop splitting functions in QCD: The Nonsinglet case
Expand Down Expand Up @@ -107,3 +107,15 @@ pub fn Buza1996wv() {}
///
/// DOI: [10.1016/j.physletb.2009.01.057](https:dx.doi.org/10.1016/j.physletb.2009.01.057)
pub fn Bierenbaum2009zt() {}

#[allow(non_snake_case)]
/// Next-to-leading order radiative parton model analysis of polarized deep inelastic lepton - nucleon scattering
///
/// Gluck, M. and Reya, E. and Stratmann, M. and Vogelsang, W.
///
/// Published in: Phys. Rev. D 53 (1996), 4775--4786
///
/// e-Print: [hep-ph/9508347](https://arxiv.org/abs/hep-ph/9508347)
///
/// DOI: [10.1103/PhysRevD.53.4775](https:dx.doi.org/10.1103/PhysRevD.53.4775)
pub fn Gluck1995yr() {}
16 changes: 8 additions & 8 deletions crates/ekore/src/constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ pub const CA: f64 = NC as f64;
/// Defaults to $C_F = \frac{N_C^2-1}{2N_C} = 4/3$.
pub const CF: f64 = ((NC * NC - 1) as f64) / ((2 * NC) as f64);

/// Up quark charge square.
/// Up quark electric charge square.
///
/// Defaults to $e_u^2 = 4./9$
/// Defaults to $e_u^2 = 4./9$.
pub const EU2: f64 = 4. / 9.;

/// Down quark charge square.
/// Down quark electric charge square.
///
/// Defaults to $e_d^2 = 1./9$
/// Defaults to $e_d^2 = 1./9$.
pub const ED2: f64 = 1. / 9.;

/// Riemann zeta function at z = 2.
Expand All @@ -52,16 +52,16 @@ pub const PID_NSM: u16 = 10201;
/// non-singlet all-valence |PID|.
pub const PID_NSV: u16 = 10200;

/// singlet-like non-singlet up-sector |PID|
/// singlet-like non-singlet up-sector |PID|.
pub const PID_NSP_EU2: u16 = 10102;

/// singlet-like non-singlet down-sector |PID|
/// singlet-like non-singlet down-sector |PID|.
pub const PID_NSP_ED2: u16 = 10103;

/// valence-like non-singlet up-sector |PID|
/// valence-like non-singlet up-sector |PID|.
pub const PID_NSM_EU2: u16 = 10202;

/// valence-like non-singlet down-sector |PID|
/// valence-like non-singlet down-sector |PID|.
pub const PID_NSM_ED2: u16 = 10203;

/// |QED| electric charge combinations.
Expand Down

0 comments on commit 9797190

Please sign in to comment.