Geant4 9.6.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4INCLGlobals.hh
Go to the documentation of this file.
1//
2// ********************************************************************
3// * License and Disclaimer *
4// * *
5// * The Geant4 software is copyright of the Copyright Holders of *
6// * the Geant4 Collaboration. It is provided under the terms and *
7// * conditions of the Geant4 Software License, included in the file *
8// * LICENSE and available at http://cern.ch/geant4/license . These *
9// * include a list of copyright holders. *
10// * *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work make any representation or warranty, express or implied, *
14// * regarding this software system or assume any liability for its *
15// * use. Please see the license in the file LICENSE and URL above *
16// * for the full disclaimer and the limitation of liability. *
17// * *
18// * This code implementation is the result of the scientific and *
19// * technical work of the GEANT4 collaboration. *
20// * By using, copying, modifying or distributing the software (or *
21// * any work based on the software) you agree to acknowledge its *
22// * use in resulting scientific publications, and indicate your *
23// * acceptance of all terms of the Geant4 Software license. *
24// ********************************************************************
25//
26// INCL++ intra-nuclear cascade model
27// Pekka Kaitaniemi, CEA and Helsinki Institute of Physics
28// Davide Mancusi, CEA
29// Alain Boudard, CEA
30// Sylvie Leray, CEA
31// Joseph Cugnon, University of Liege
32//
33// INCL++ revision: v5.1.8
34//
35#define INCLXX_IN_GEANT4_MODE 1
36
37#include "globals.hh"
38
39#ifndef G4INCLGlobals_hh
40#define G4INCLGlobals_hh 1
41
42#include <cmath>
43#include "G4INCLParticleType.hh"
44
45namespace G4INCL {
46 class Particle;
47
48 namespace PhysicalConstants {
49 /// \brief \f$\hbar c\f$ [MeV*fm]
50 const G4double hc = 197.328;
51
52 /// \brief \f$\hbar^2 c^2\f$ [MeV^2*fm^2]
54
55 /// \brief Fermi momentum [MeV/c]
56 const G4double Pf = 1.37*hc;
57 // const G4double Pf = 1.36828*hc;
58
59 /// \brief Fermi momentum squared [(MeV/c)^2]
61
62 /** \brief Coulomb conversion factor [MeV*fm]
63 *
64 * \f[ e^2/(4 pi epsilon_0) \f]
65 */
66 const G4double eSquared = 1.439964;
67 }
68
69 namespace Math {
70 const G4double pi = 3.14159265358979323846264338328;
71 const G4double twoPi = 2.0 * pi;
72 const G4double tenPi = 10.0 * pi;
73 const G4double piOverTwo = 0.5 * pi;
74 const G4double oneOverSqrtThree = 1./std::sqrt((G4double)3.);
75 const G4double oneThird = 1./3.;
76 const G4double twoThirds = 2./3.;
77 const G4double sqrtFiveThirds = std::sqrt(5./3.);
78 const G4double sqrtThreeFifths = std::sqrt(3./5.);
79
80 inline G4double toDegrees(G4double radians) {
81 return radians * (180.0 / pi);
82 }
83
84 inline G4int heaviside(G4int n) {
85 if(n < 0) return 0;
86 else return 1;
87 }
88
90 return std::pow(x, oneThird);
91 }
92
94 return std::pow(x, -oneThird);
95 }
96
98 return std::pow(x, twoThirds);
99 }
100
101 /**
102 * A simple sign function that allows us to port fortran code to c++ more easily.
103 */
104 template <typename T> inline G4int sign(T t) {
105 return t > 0 ? 1: t < 0 ? -1 : 0;
106 }
107 }
108
109 namespace ParticleConfig {
110 G4bool isPair(Particle const * const p1, Particle const * const p2, ParticleType t1, ParticleType t2);
111 }
112}
113#endif
double G4double
Definition: G4Types.hh:64
int G4int
Definition: G4Types.hh:66
bool G4bool
Definition: G4Types.hh:67
G4int sign(T t)
const G4double pi
const G4double oneThird
const G4double sqrtFiveThirds
const G4double twoPi
G4double pow13(G4double x)
const G4double piOverTwo
const G4double oneOverSqrtThree
G4double pow23(G4double x)
const G4double tenPi
const G4double twoThirds
const G4double sqrtThreeFifths
G4double powMinus13(G4double x)
G4int heaviside(G4int n)
G4double toDegrees(G4double radians)
G4bool isPair(Particle const *const p1, Particle const *const p2, ParticleType t1, ParticleType t2)
const G4double eSquared
Coulomb conversion factor [MeV*fm].
const G4double hc
[MeV*fm]
const G4double Pf
Fermi momentum [MeV/c].
const G4double PfSquared
Fermi momentum squared [(MeV/c)^2].
const G4double hcSquared
[MeV^2*fm^2]