Geant4 11.2.2
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4ParticleHPAngularP.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//
28// P. Arce, June-2014 Conversion neutron_hp to particle_hp
29//
30#ifndef G4ParticleHPAngularP_h
31#define G4ParticleHPAngularP_h 1
32
35#include "globals.hh"
36
38
40{
41 public:
43 {
44 theCosTh = nullptr;
45 theProb = nullptr;
46 theEnergy = 0.;
47 nCoeff = 0;
48 }
50 {
51 delete[] theCosTh;
52 delete[] theProb;
53 }
54
55 inline void Init(std::istream& aDataFile)
56 {
57 G4double eNeu, cosTheta, probDist;
58 G4int nProb;
59 aDataFile >> eNeu >> nProb;
60 theManager.Init(aDataFile);
61 eNeu *= CLHEP::eV;
62 Init(eNeu, nProb);
63 for (G4int iii = 0; iii < nProb; iii++) {
64 aDataFile >> cosTheta >> probDist;
65 SetCosTh(iii, cosTheta);
66 SetProb(iii, probDist);
67 }
68 }
69
70 inline void Init(G4double e, G4int n)
71 {
72 theCosTh = new G4double[n];
73 theProb = new G4double[n];
74 theEnergy = e;
75 nCoeff = n;
76 }
77
78 inline void SetEnergy(G4double energy) { theEnergy = energy; }
79 inline void SetCosTh(G4int l, G4double coeff) { theCosTh[l] = coeff; }
80 inline void SetProb(G4int l, G4double coeff) { theProb[l] = coeff; }
81
82 inline G4double GetCosTh(G4int l) { return theCosTh[l]; }
83 inline G4double GetProb(G4int l) { return theProb[l]; }
84 inline G4double GetEnergy() { return theEnergy; }
85 inline G4int GetNumberOfPoints() { return nCoeff; }
87 {
88 G4int i;
89 G4double rand = G4UniformRand();
90 G4double run = 0, runo = 0;
91 for (i = 0; i < GetNumberOfPoints(); i++) {
92 runo = run;
93 run += GetProb(i);
94 if (run > rand) break;
95 }
96 if (i == GetNumberOfPoints()) i--;
97 G4double costh =
98 theInt.Interpolate(theManager.GetScheme(i), rand, runo, run, GetCosTh(i - 1), GetCosTh(i));
99 return costh;
100 }
101
102 private:
103 G4double theEnergy; // neutron energy
104 G4ParticleHPInterpolator theInt; // knows tointerpolate
105 G4int nCoeff;
106 G4InterpolationManager theManager; // knows the interpolation between stores
107 G4double* theCosTh;
108 G4double* theProb; // probability distribution as fcn of theta
109 // integral normalised to 1.
110};
111#endif
double G4double
Definition G4Types.hh:83
int G4int
Definition G4Types.hh:85
#define G4UniformRand()
Definition Randomize.hh:52
void Init(G4int aScheme, G4int aRange)
G4InterpolationScheme GetScheme(G4int index) const
void Init(std::istream &aDataFile)
void Init(G4double e, G4int n)
void SetEnergy(G4double energy)
void SetProb(G4int l, G4double coeff)
void SetCosTh(G4int l, G4double coeff)
G4double Interpolate(G4InterpolationScheme aScheme, G4double x, G4double x1, G4double x2, G4double y1, G4double y2) const