Geant4 10.7.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4RPGNucleonInelastic.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//
27// Author: D. H. Wright
28// Date: 19 December 2007
29//
30
31#ifndef G4RPGNucleonInelastic_h
32#define G4RPGNucleonInelastic_h 1
33
34// Class Description:
35// Partial cross sections, multiplicities and final state particle types
36// required for proton and neutron inelastic scattering in the
37// re-parameterized Gheisha model
38
39#include "G4RPGInelastic.hh"
40
42 {
43 public:
44
45 G4RPGNucleonInelastic(const G4String& modelName = "RPGNucleonInelastic");
46
48
49 // void printCrossSections() const;
50
51 protected:
52
55
56 std::vector<G4int>
57 GetFSPartTypesForT1(G4int mult, G4double KE, G4int tindex) const;
58 std::vector<G4int>
59 GetFSPartTypesForT0(G4int mult, G4double KE) const;
60
61 std::vector<G4int> GetFSPartTypesForPP(G4int mult, G4double KE) const
62 {return GetFSPartTypesForT1(mult, KE, 0); }
63
64 std::vector<G4int> GetFSPartTypesForNN(G4int mult, G4double KE) const
65 {return GetFSPartTypesForT1(mult, KE, 1); }
66
67 std::vector<G4int> GetFSPartTypesForPN(G4int mult, G4double KE) const
68 {return GetFSPartTypesForT0(mult, KE); }
69
70 std::vector<G4int> GetFSPartTypesForNP(G4int mult, G4double KE) const
71 {return GetFSPartTypesForT0(mult, KE); }
72
73
74 static const G4int pPindex[8][2];
75 static const G4int pNindex[8][2];
76
77 static const G4int T1_2bfs[2][1][2];
78 static const G4int T1_3bfs[2][6][3];
79 static const G4int T1_4bfs[2][18][4];
80 static const G4int T1_5bfs[2][32][5];
81 static const G4int T1_6bfs[2][7][6];
82 static const G4int T1_7bfs[2][8][7];
83 static const G4int T1_8bfs[2][10][8];
84 static const G4int T1_9bfs[2][11][9];
85
86 static const G4int T0_2bfs[1][2];
87 static const G4int T0_3bfs[9][3];
88 static const G4int T0_4bfs[22][4];
89 static const G4int T0_5bfs[38][5];
90 static const G4int T0_6bfs[7][6];
91 static const G4int T0_7bfs[9][7];
92 static const G4int T0_8bfs[10][8];
93 static const G4int T0_9bfs[12][9];
94
99
100 static const G4float pPCrossSections[93][30];
101 static const G4float pNCrossSections[108][30];
102
103 };
104#endif
float G4float
Definition: G4Types.hh:84
double G4double
Definition: G4Types.hh:83
int G4int
Definition: G4Types.hh:85
G4int GetMultiplicityT0(G4double KE) const
static const G4int T0_2bfs[1][2]
G4int GetMultiplicityT1(G4double KE) const
std::vector< G4int > GetFSPartTypesForNN(G4int mult, G4double KE) const
std::vector< G4int > GetFSPartTypesForPP(G4int mult, G4double KE) const
std::vector< G4int > GetFSPartTypesForNP(G4int mult, G4double KE) const
static const G4int T0_8bfs[10][8]
static G4ThreadLocal G4double t1_dSigma_dMult[8][30]
static const G4int T0_9bfs[12][9]
static const G4int T1_3bfs[2][6][3]
static const G4int T0_4bfs[22][4]
static const G4int T1_2bfs[2][1][2]
static const G4int T0_5bfs[38][5]
static const G4int T1_4bfs[2][18][4]
static G4ThreadLocal G4double pPtot[30]
std::vector< G4int > GetFSPartTypesForT0(G4int mult, G4double KE) const
static const G4int T0_6bfs[7][6]
static const G4int T1_5bfs[2][32][5]
static const G4int T1_9bfs[2][11][9]
static const G4int T1_7bfs[2][8][7]
static const G4int T1_6bfs[2][7][6]
static const G4float pPCrossSections[93][30]
static G4ThreadLocal G4double t0_dSigma_dMult[8][30]
static const G4int pPindex[8][2]
std::vector< G4int > GetFSPartTypesForT1(G4int mult, G4double KE, G4int tindex) const
std::vector< G4int > GetFSPartTypesForPN(G4int mult, G4double KE) const
static const G4int T0_7bfs[9][7]
static const G4int pNindex[8][2]
static const G4int T0_3bfs[9][3]
static G4ThreadLocal G4double pNtot[30]
static const G4float pNCrossSections[108][30]
static const G4int T1_8bfs[2][10][8]
#define G4ThreadLocal
Definition: tls.hh:77