Geant4 11.2.2
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4ParticleHPInterpolator.cc
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// neutron_hp -- source file
27// J.P. Wellisch, Nov-1996
28// A prototype of the low energy neutron transport model.
29//
30// P. Arce, June-2014 Conversion neutron_hp to particle_hp
31//
33
34#include "G4Pow.hh"
35
37 const G4double x1, const G4double x2,
38 const G4double y1, const G4double y2)
39{ // inline again later on @@@@
40 G4double result = 0;
41 if (aScheme == HISTO || aScheme == CHISTO || aScheme == UHISTO) {
42 result = y1 * (x2 - x1);
43 }
44 else if (aScheme == LINLIN || aScheme == CLINLIN || aScheme == ULINLIN) {
45 result = 0.5 * (y2 + y1) * (x2 - x1);
46 }
47 else if (aScheme == LINLOG || aScheme == CLINLOG || aScheme == ULINLOG) {
48 if (x1 == 0)
49 result = y1;
50 else if (x2 == 0)
51 result = y2;
52 else {
53 G4double b = (y2 - y1) / (G4Log(x2) - G4Log(x1));
54 G4double a = y1 - b * G4Log(x1);
55 result = (a - b) * (x2 - x1) + b * (x2 * G4Log(x2) - x1 * G4Log(x1));
56 }
57 }
58 else if (aScheme == LOGLIN || aScheme == CLOGLIN || aScheme == ULOGLIN) {
59 if (y1 == 0 || y2 == 0) {
60 result = 0;
61 }
62 else {
63 // G4double b = (std::log(y2)-std::log(y1))/(x2-x1);
64 // G4double a = std::log(y1) - b*x1;
65 //***************************************************************
66 // EMendoza:
67 // result = (std::exp(a)/b)*(std::exp(b*x2)-std::exp(b*x1));
68 //***************************************************************
69 if (y1 != y2) {
70 result = (x2 - x1) * (y2 - y1) / G4Log(y2 / y1);
71 }
72 else {
73 result = y2 * (x2 - x1);
74 }
75 //***************************************************************
76 }
77 }
78 else if (aScheme == LOGLOG || aScheme == CLOGLOG || aScheme == ULOGLOG) {
79 if (x1 == 0)
80 result = y1;
81 else if (x2 == 0)
82 result = y2;
83 else if (y1 == 0 || y2 == 0)
84 result = 0;
85 else {
86 G4double b = (G4Log(y2) - G4Log(y1)) / (G4Log(x2) - G4Log(x1));
87 G4double a = G4Log(y1) - b * G4Log(x1);
88 ;
89 result = (G4Exp(a) / (b + 1))
90 * (G4Pow::GetInstance()->powA(x2, b + 1) - G4Pow::GetInstance()->powA(x1, b + 1));
91 }
92 }
93 else {
94 throw G4HadronicException(__FILE__, __LINE__,
95 "Unknown interpolation scheme in G4ParticleHPVector::Integrate");
96 }
97 return result;
98}
100 const G4double x1, const G4double x2,
101 const G4double y1, const G4double y2)
102{ // inline again later on @@@@
103 G4double result = 0;
104 if (aScheme == HISTO || aScheme == CHISTO || aScheme == UHISTO) {
105 result = 0.5 * y1 * (x2 * x2 - x1 * x1);
106 }
107 else if (aScheme == LINLIN || aScheme == CLINLIN || aScheme == ULINLIN) {
108 // G4double b = (y2-y1)/(x2-x1);
109 // G4double a = y1 - b*x1;
110 // result = 0.5*a*(x2*x2-x1*x1) + (b/3.)*(x2*x2*x2-x1*x1*x1);
111 // Factor out x2-x1 to avoid divide by zero
112
113 result = (y1 * x2 - y2 * x1) * (x2 + x1) / 2. + (y2 - y1) * (x2 * x2 + x2 * x1 + x1 * x1) / 3.;
114 }
115 else if (aScheme == LINLOG || aScheme == CLINLOG || aScheme == ULINLOG) {
116 if (x1 == 0)
117 result = y1;
118 else if (x2 == 0)
119 result = y2;
120 else {
121 G4double b = (y2 - y1) / (G4Log(x2) - G4Log(x1));
122 G4double a = y1 - b * G4Log(x1);
123 result = (x2 * x2 / 2. * (a - b / 2. + b * G4Log(x2)))
124 - (x1 * x1 / 2. * (a - b / 2. + b * G4Log(x1)));
125 }
126 }
127 else if (aScheme == LOGLIN || aScheme == CLOGLIN || aScheme == ULOGLIN) {
128 if (y1 == 0 || y2 == 0)
129 result = 0;
130 else {
131 G4double b = (G4Log(y2) - G4Log(y1)) / (x2 - x1);
132 G4double a = G4Log(y1) - b * x1;
133 result = G4Exp(a) / (b * b) * (G4Exp(b * x2) * (b * x2 - 1.) - G4Exp(b * x1) * (b * x1 - 1.));
134 }
135 }
136 else if (aScheme == LOGLOG || aScheme == CLOGLOG || aScheme == ULOGLOG) {
137 if (x1 == 0)
138 result = y1;
139 else if (x2 == 0)
140 result = y2;
141 else if (y1 == 0 || y2 == 0)
142 result = 0;
143 else {
144 G4double b = (G4Log(y2) - G4Log(y1)) / (G4Log(x2) - G4Log(x1));
145 G4double a = G4Log(y1) - b * G4Log(x1);
146 ;
147 result = G4Exp(a) / (b + 2.)
148 * (G4Pow::GetInstance()->powA(x2, b + 2.) - G4Pow::GetInstance()->powA(x1, b + 2));
149 }
150 }
151 else {
152 throw G4HadronicException(__FILE__, __LINE__,
153 "Unknown interpolation scheme in G4ParticleHPVector::Integrate");
154 }
155 return result;
156}
G4double G4Exp(G4double initial_x)
Exponential Function double precision.
Definition G4Exp.hh:180
G4InterpolationScheme
G4double G4Log(G4double x)
Definition G4Log.hh:227
double G4double
Definition G4Types.hh:83
G4double GetWeightedBinIntegral(const G4InterpolationScheme &aScheme, const G4double x1, const G4double x2, const G4double y1, const G4double y2)
G4double GetBinIntegral(const G4InterpolationScheme &aScheme, const G4double x1, const G4double x2, const G4double y1, const G4double y2)
static G4Pow * GetInstance()
Definition G4Pow.cc:41
G4double powA(G4double A, G4double y) const
Definition G4Pow.hh:230