|
FairShip
|
Functions | |
| def | rhoFormFactor (m) |
| def | energy (p, m) |
| def | penaltyFactor (m) |
| def | zeta (p, theta) |
| def | pTransverse (p, theta) |
| def | ptSquare (p, theta) |
| def | H (p, theta, mDarkPhoton) |
| def | wba (p, theta, mDarkPhoton, epsilon) |
| def | sigma (s) |
| def | es (p, mDarkPhoton) |
| def | sigmaRatio (p, mDarkPhoton) |
| def | dNdZdPtSquare (p, mDarkPhoton, theta, epsilon) |
| def | dPt2dTheta (p, theta) |
| def | dZdP (p, theta) |
| def | dNdPdTheta (p, theta, mDarkPhoton, epsilon) |
| def | pMin (mDarkPhoton) |
| def | pMax (mDarkPhoton) |
| def | prodRate (mDarkPhoton, epsilon, tmin=-0.5 *math.pi, tmax=0.5 *math.pi) |
| def | normalisedProductionPDF (p, theta, mDarkPhoton, epsilon, norm) |
| def | hProdPDF (mDarkPhoton, epsilon, norm, binsp, binstheta, tmin=-0.5 *math.pi, tmax=0.5 *math.pi, suffix="") |
Variables | |
| float | mProton = 0.938272081 |
| float | protonEnergy = 400.0 |
| math | protonMomentum = math.sqrt(protonEnergy * protonEnergy - mProton * mProton) |
| def proton_bremsstrahlung.dNdPdTheta | ( | p, | |
| theta, | |||
| mDarkPhoton, | |||
| epsilon | |||
| ) |
Differential A' rate per p.o.t. as a function of P and theta
Definition at line 139 of file proton_bremsstrahlung.py.
| def proton_bremsstrahlung.dNdZdPtSquare | ( | p, | |
| mDarkPhoton, | |||
| theta, | |||
| epsilon | |||
| ) |
Differential A' rate per p.o.t. as a function of Z and Pt^2
Definition at line 123 of file proton_bremsstrahlung.py.
| def proton_bremsstrahlung.dPt2dTheta | ( | p, | |
| theta | |||
| ) |
Jacobian Pt^2->theta
Definition at line 128 of file proton_bremsstrahlung.py.
| def proton_bremsstrahlung.dZdP | ( | p, | |
| theta | |||
| ) |
Jacobian z->p
Definition at line 134 of file proton_bremsstrahlung.py.
| def proton_bremsstrahlung.energy | ( | p, | |
| m | |||
| ) |
Compute energy from momentum and mass
Definition at line 38 of file proton_bremsstrahlung.py.
| def proton_bremsstrahlung.es | ( | p, | |
| mDarkPhoton | |||
| ) |
s(p,mA)
Definition at line 113 of file proton_bremsstrahlung.py.
| def proton_bremsstrahlung.H | ( | p, | |
| theta, | |||
| mDarkPhoton | |||
| ) |
A kinematic term
Definition at line 67 of file proton_bremsstrahlung.py.
| def proton_bremsstrahlung.hProdPDF | ( | mDarkPhoton, | |
| epsilon, | |||
| norm, | |||
| binsp, | |||
| binstheta, | |||
tmin = -0.5 * math.pi, |
|||
tmax = 0.5 * math.pi, |
|||
suffix = "" |
|||
| ) |
Histogram of the PDF for A' production in SHIP
Definition at line 184 of file proton_bremsstrahlung.py.
| def proton_bremsstrahlung.normalisedProductionPDF | ( | p, | |
| theta, | |||
| mDarkPhoton, | |||
| epsilon, | |||
| norm | |||
| ) |
Probability density function for A' production in SHIP
Definition at line 179 of file proton_bremsstrahlung.py.
| def proton_bremsstrahlung.penaltyFactor | ( | m | ) |
Penalty factor for high masses - dipole form factor in the proton-A' vertex
m in GeV
Definition at line 43 of file proton_bremsstrahlung.py.
| def proton_bremsstrahlung.pMax | ( | mDarkPhoton | ) |
Definition at line 149 of file proton_bremsstrahlung.py.
| def proton_bremsstrahlung.pMin | ( | mDarkPhoton | ) |
Definition at line 145 of file proton_bremsstrahlung.py.
| def proton_bremsstrahlung.prodRate | ( | mDarkPhoton, | |
| epsilon, | |||
tmin = -0.5 * math.pi, |
|||
tmax = 0.5 * math.pi |
|||
| ) |
dNdPdTheta integrated over p and theta
Definition at line 154 of file proton_bremsstrahlung.py.
| def proton_bremsstrahlung.pTransverse | ( | p, | |
| theta | |||
| ) |
Paraphoton transverse momentum in the lab frame
Definition at line 57 of file proton_bremsstrahlung.py.
| def proton_bremsstrahlung.ptSquare | ( | p, | |
| theta | |||
| ) |
Square paraphoton transverse momentum in the lab frame
Definition at line 62 of file proton_bremsstrahlung.py.
| def proton_bremsstrahlung.rhoFormFactor | ( | m | ) |
From https://arxiv.org/abs/0910.5589
Definition at line 19 of file proton_bremsstrahlung.py.
| def proton_bremsstrahlung.sigma | ( | s | ) |
Parametrisation of sigma(s)
Definition at line 98 of file proton_bremsstrahlung.py.
| def proton_bremsstrahlung.sigmaRatio | ( | p, | |
| mDarkPhoton | |||
| ) |
sigma(s') / sigma(s)
Definition at line 118 of file proton_bremsstrahlung.py.
| def proton_bremsstrahlung.wba | ( | p, | |
| theta, | |||
| mDarkPhoton, | |||
| epsilon | |||
| ) |
Cross section weighting function in the Fermi-Weizsaeker-Williams approximation
Definition at line 76 of file proton_bremsstrahlung.py.
| def proton_bremsstrahlung.zeta | ( | p, | |
| theta | |||
| ) |
Fraction of the proton momentum carried away by the paraphoton in the beam direction
Definition at line 52 of file proton_bremsstrahlung.py.
| float proton_bremsstrahlung.mProton = 0.938272081 |
Definition at line 13 of file proton_bremsstrahlung.py.
| float proton_bremsstrahlung.protonEnergy = 400.0 |
Definition at line 14 of file proton_bremsstrahlung.py.
| math proton_bremsstrahlung.protonMomentum = math.sqrt(protonEnergy * protonEnergy - mProton * mProton) |
Definition at line 15 of file proton_bremsstrahlung.py.