Geant4 9.6.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4NeutronHPNBodyPhaseSpace Class Reference

#include <G4NeutronHPNBodyPhaseSpace.hh>

+ Inheritance diagram for G4NeutronHPNBodyPhaseSpace:

Public Member Functions

 G4NeutronHPNBodyPhaseSpace ()
 
 ~G4NeutronHPNBodyPhaseSpace ()
 
void Init (G4double aMass, G4int aCount)
 
void Init (std::ifstream &aDataFile)
 
G4ReactionProductSample (G4double anEnergy, G4double massCode, G4double mass)
 
- Public Member Functions inherited from G4VNeutronHPEnergyAngular
 G4VNeutronHPEnergyAngular ()
 
virtual ~G4VNeutronHPEnergyAngular ()
 
virtual void Init (std::ifstream &aDataFile)=0
 
virtual G4ReactionProductSample (G4double anEnergy, G4double massCode, G4double mass)=0
 
virtual G4double MeanEnergyOfThisInteraction ()=0
 
void SetNeutron (G4ReactionProduct *aNeutron)
 
void SetTarget (G4ReactionProduct *aTarget)
 
G4ReactionProductGetTarget ()
 
G4ReactionProductGetNeutron ()
 
G4ReactionProductGetCMS ()
 
void SetQValue (G4double aValue)
 
virtual void ClearHistories ()
 

Additional Inherited Members

- Protected Member Functions inherited from G4VNeutronHPEnergyAngular
G4double GetQValue ()
 

Detailed Description

Definition at line 41 of file G4NeutronHPNBodyPhaseSpace.hh.

Constructor & Destructor Documentation

◆ G4NeutronHPNBodyPhaseSpace()

G4NeutronHPNBodyPhaseSpace::G4NeutronHPNBodyPhaseSpace ( )
inline

Definition at line 45 of file G4NeutronHPNBodyPhaseSpace.hh.

45{}

◆ ~G4NeutronHPNBodyPhaseSpace()

G4NeutronHPNBodyPhaseSpace::~G4NeutronHPNBodyPhaseSpace ( )
inline

Definition at line 46 of file G4NeutronHPNBodyPhaseSpace.hh.

46{}

Member Function Documentation

◆ Init() [1/2]

void G4NeutronHPNBodyPhaseSpace::Init ( G4double  aMass,
G4int  aCount 
)
inline

Definition at line 50 of file G4NeutronHPNBodyPhaseSpace.hh.

51 {
52 theTotalMass=aMass;
53 theTotalCount=aCount;
54 }

Referenced by G4NeutronHPInelasticBaseFS::BaseApply().

◆ Init() [2/2]

void G4NeutronHPNBodyPhaseSpace::Init ( std::ifstream &  aDataFile)
inlinevirtual

Implements G4VNeutronHPEnergyAngular.

Definition at line 56 of file G4NeutronHPNBodyPhaseSpace.hh.

57 {
58 aDataFile >> theTotalMass >> theTotalCount;
59 theTotalMass *= G4Neutron::Neutron()->GetPDGMass();
60 }
static G4Neutron * Neutron()
Definition: G4Neutron.cc:104

◆ Sample()

G4ReactionProduct * G4NeutronHPNBodyPhaseSpace::Sample ( G4double  anEnergy,
G4double  massCode,
G4double  mass 
)
virtual

Implements G4VNeutronHPEnergyAngular.

Definition at line 43 of file G4NeutronHPNBodyPhaseSpace.cc.

44{
46 G4int Z = static_cast<G4int>(massCode/1000);
47 G4int A = static_cast<G4int>(massCode-1000*Z);
48
49 if(massCode==0)
50 {
52 }
53 else if(A==0)
54 {
56 if(Z==1) result->SetDefinition(G4Positron::Positron());
57 }
58 else if(A==1)
59 {
61 if(Z==1) result->SetDefinition(G4Proton::Proton());
62 }
63 else if(A==2)
64 {
66 }
67 else if(A==3)
68 {
70 if(Z==2) result->SetDefinition(G4He3::He3());
71 }
72 else if(A==4)
73 {
75 if(Z!=2) throw G4HadronicException(__FILE__, __LINE__, "Unknown ion case 1");
76 }
77 else
78 {
79 throw G4HadronicException(__FILE__, __LINE__, "G4NeutronHPNBodyPhaseSpace: Unknown ion case 2");
80 }
81
82// Get the energy from phase-space distribution
83 // in CMS
84 // P = Cn*std::sqrt(E')*(Emax-E')**(3*n/2-4)
85 G4double maxE = GetEmax(anEnergy, result->GetMass());
86 G4double energy;
87 G4double max(0);
88 if(theTotalCount<=3)
89 {
90 max = maxE/2.;
91 }
92 else if(theTotalCount==4)
93 {
94 max = maxE/5.;
95 }
96 else if(theTotalCount==5)
97 {
98 max = maxE/8.;
99 }
100 else
101 {
102 throw G4HadronicException(__FILE__, __LINE__, "NeutronHP Phase-space distribution cannot cope with this number of particles");
103 }
104 G4double testit;
105 G4double rand0 = Prob(max, maxE, theTotalCount);
106 G4double rand;
107
108 do
109 {
110 rand = rand0*G4UniformRand();
111 energy = maxE*G4UniformRand();
112 testit = Prob(energy, maxE, theTotalCount);
113 }
114 while(rand > testit);
115 result->SetKineticEnergy(energy);
116
117// now do random direction
118 G4double cosTh = 2.*G4UniformRand()-1.;
119 G4double phi = twopi*G4UniformRand();
120 G4double theta = std::acos(cosTh);
121 G4double sinth = std::sin(theta);
122 G4double mtot = result->GetTotalMomentum();
123 G4ThreeVector tempVector(mtot*sinth*std::cos(phi), mtot*sinth*std::sin(phi), mtot*std::cos(theta) );
124 result->SetMomentum(tempVector);
126 result->Lorentz(*result, -1.*aCMS);
127 return result;
128}
double G4double
Definition: G4Types.hh:64
int G4int
Definition: G4Types.hh:66
#define G4UniformRand()
Definition: Randomize.hh:53
static G4Alpha * Alpha()
Definition: G4Alpha.cc:89
static G4Deuteron * Deuteron()
Definition: G4Deuteron.cc:94
static G4Electron * Electron()
Definition: G4Electron.cc:94
static G4Gamma * Gamma()
Definition: G4Gamma.cc:86
static G4He3 * He3()
Definition: G4He3.cc:94
static G4Positron * Positron()
Definition: G4Positron.cc:94
static G4Proton * Proton()
Definition: G4Proton.cc:93
void SetMomentum(const G4double x, const G4double y, const G4double z)
G4double GetTotalMomentum() const
void Lorentz(const G4ReactionProduct &p1, const G4ReactionProduct &p2)
void SetKineticEnergy(const G4double en)
void SetDefinition(G4ParticleDefinition *aParticleDefinition)
G4double GetMass() const
static G4Triton * Triton()
Definition: G4Triton.cc:95

Referenced by G4NeutronHPInelasticBaseFS::BaseApply().


The documentation for this class was generated from the following files: