Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Interactions.hpp
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file Interactions.hpp
1 // This file is part of the Acts project.
2 //
3 // Copyright (C) 2018-2020 CERN for the benefit of the Acts project
4 //
5 // This Source Code Form is subject to the terms of the Mozilla Public
6 // License, v. 2.0. If a copy of the MPL was not distributed with this
7 // file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 
9 #pragma once
10 
14 
15 #include <cmath>
16 
17 namespace Acts {
18 
33 float computeEnergyLossBethe(const MaterialSlab& slab, float m, float qOverP,
34  float absQ);
38 float deriveEnergyLossBetheQOverP(const MaterialSlab& slab, float m,
39  float qOverP, float absQ);
40 
49 float computeEnergyLossLandau(const MaterialSlab& slab, float m, float qOverP,
50  float absQ);
54 float deriveEnergyLossLandauQOverP(const MaterialSlab& slab, float m,
55  float qOverP, float absQ);
56 
64 float computeEnergyLossLandauSigma(const MaterialSlab& slab, float m,
65  float qOverP, float absQ);
66 
70 float computeEnergyLossLandauFwhm(const MaterialSlab& slab, float m,
71  float qOverP, float absQ);
72 
76 float computeEnergyLossLandauSigmaQOverP(const MaterialSlab& slab, float m,
77  float qOverP, float absQ);
78 
90 float computeEnergyLossRadiative(const MaterialSlab& slab, PdgParticle absPdg,
91  float m, float qOverP, float absQ);
95 float deriveEnergyLossRadiativeQOverP(const MaterialSlab& slab,
96  PdgParticle absPdg, float m, float qOverP,
97  float absQ);
98 
110 float computeEnergyLossMean(const MaterialSlab& slab, PdgParticle absPdg,
111  float m, float qOverP, float absQ);
115 float deriveEnergyLossMeanQOverP(const MaterialSlab& slab, PdgParticle absPdg,
116  float m, float qOverP, float absQ);
117 
121 float computeEnergyLossMode(const MaterialSlab& slab, PdgParticle absPdg,
122  float m, float qOverP, float absQ);
126 float deriveEnergyLossModeQOverP(const MaterialSlab& slab, PdgParticle absPdg,
127  float m, float qOverP, float absQ);
128 
136 float computeMultipleScatteringTheta0(const MaterialSlab& slab,
137  PdgParticle absPdg, float m, float qOverP,
138  float absQ);
139 
140 } // namespace Acts