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
45
namespace
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]
53
const
G4double
hcSquared
=
hc
*
hc
;
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]
60
const
G4double
PfSquared
=
Pf
*
Pf
;
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
89
inline
G4double
pow13
(
G4double
x) {
90
return
std::pow(x,
oneThird
);
91
}
92
93
inline
G4double
powMinus13
(
G4double
x) {
94
return
std::pow(x, -
oneThird
);
95
}
96
97
inline
G4double
pow23
(
G4double
x) {
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
G4INCLParticleType.hh
G4double
double G4double
Definition:
G4Types.hh:64
G4int
int G4int
Definition:
G4Types.hh:66
G4bool
bool G4bool
Definition:
G4Types.hh:67
G4INCL::Particle
Definition:
G4INCLParticle.hh:66
globals.hh
G4INCL::Math::sign
G4int sign(T t)
Definition:
G4INCLGlobals.hh:104
G4INCL::Math::pi
const G4double pi
Definition:
G4INCLGlobals.hh:70
G4INCL::Math::oneThird
const G4double oneThird
Definition:
G4INCLGlobals.hh:75
G4INCL::Math::sqrtFiveThirds
const G4double sqrtFiveThirds
Definition:
G4INCLGlobals.hh:77
G4INCL::Math::twoPi
const G4double twoPi
Definition:
G4INCLGlobals.hh:71
G4INCL::Math::pow13
G4double pow13(G4double x)
Definition:
G4INCLGlobals.hh:89
G4INCL::Math::piOverTwo
const G4double piOverTwo
Definition:
G4INCLGlobals.hh:73
G4INCL::Math::oneOverSqrtThree
const G4double oneOverSqrtThree
Definition:
G4INCLGlobals.hh:74
G4INCL::Math::pow23
G4double pow23(G4double x)
Definition:
G4INCLGlobals.hh:97
G4INCL::Math::tenPi
const G4double tenPi
Definition:
G4INCLGlobals.hh:72
G4INCL::Math::twoThirds
const G4double twoThirds
Definition:
G4INCLGlobals.hh:76
G4INCL::Math::sqrtThreeFifths
const G4double sqrtThreeFifths
Definition:
G4INCLGlobals.hh:78
G4INCL::Math::powMinus13
G4double powMinus13(G4double x)
Definition:
G4INCLGlobals.hh:93
G4INCL::Math::heaviside
G4int heaviside(G4int n)
Definition:
G4INCLGlobals.hh:84
G4INCL::Math::toDegrees
G4double toDegrees(G4double radians)
Definition:
G4INCLGlobals.hh:80
G4INCL::ParticleConfig::isPair
G4bool isPair(Particle const *const p1, Particle const *const p2, ParticleType t1, ParticleType t2)
Definition:
G4INCLGlobals.cc:44
G4INCL::PhysicalConstants::eSquared
const G4double eSquared
Coulomb conversion factor [MeV*fm].
Definition:
G4INCLGlobals.hh:66
G4INCL::PhysicalConstants::hc
const G4double hc
[MeV*fm]
Definition:
G4INCLGlobals.hh:50
G4INCL::PhysicalConstants::Pf
const G4double Pf
Fermi momentum [MeV/c].
Definition:
G4INCLGlobals.hh:56
G4INCL::PhysicalConstants::PfSquared
const G4double PfSquared
Fermi momentum squared [(MeV/c)^2].
Definition:
G4INCLGlobals.hh:60
G4INCL::PhysicalConstants::hcSquared
const G4double hcSquared
[MeV^2*fm^2]
Definition:
G4INCLGlobals.hh:53
G4INCL
Definition:
G4INCLAvatarAction.hh:46
G4INCL::ParticleType
ParticleType
Definition:
G4INCLParticleType.hh:51
geant4-v9.6.0
source
processes
hadronic
models
inclxx
utils
include
G4INCLGlobals.hh
Generated by
1.9.6