111 {
114 G4int A = theNucleus.GetA_asInt();
115 G4int Z = theNucleus.GetZ_asInt();
117
123
127
128
129
130
131
132 G4int initialLevel = -1;
133 std::vector< char > pType;
134 std::vector< G4double > pEnergy, pTime;
135 G4int npar = GenerateNeutronCaptureCascade( Z,
A, neutronEnergy, initialLevel, pType, pEnergy, pTime );
136 if ( npar > 0 ) {
137
140
141
142 for (
G4int i = 0; i < npar; i++ ) {
143 G4ParticleDefinition* particleDef = nullptr;
144 if ( pType.at(i) == 'g' ) {
146 } else if (pType.at(i) == 'e' ) {
148 } else if ( pType.at(i) == 'p' ) {
150 } else {
152 }
155 G4double sintheta = std::sqrt( 1.0 - costheta*costheta );
156 G4ThreeVector direction( sintheta*std::cos(phi), sintheta*std::sin(phi), costheta );
158 G4double particle3momMod = std::sqrt( pEnergy.at(i) * ( pEnergy.at(i) + 2.0*mass ) );
159 G4LorentzVector particle4mom( particle3momMod*direction, mass + pEnergy.at(i) );
160 particle4mom.boost( boostFromCMtoLAB );
161 G4HadSecondary* secondary = new G4HadSecondary( new G4DynamicParticle( particleDef, particle4mom ) );
162 remainingLab4mom -= particle4mom;
163
164 secondary->
SetTime( time + pTime.at(i) );
165 if ( latestEmission < time + pTime.at(i) ) latestEmission = time + pTime.at(i);
168 delete secondary;
169 }
170
171 const G4ParticleDefinition* resNuclDef = nullptr;
177 if ( resNuclDef ) {
178
179
180
181
182 G4double resNuclLabEkin = std::max( remainingLab4mom.
e() - compoundMass, 0.0 );
185 if ( resNuclLabEkin > 0.0 ) {
186 resNuclLab3momMod = std::sqrt( resNuclLabEkin * ( resNuclLabEkin + 2.0*compoundMass ) );
187 resNuclLabDir = remainingLab4mom.
vect().
unit();
188 }
189 G4LorentzVector resNuclLab4mom( resNuclLab3momMod*resNuclLabDir, resNuclLabEkin + compoundMass );
190 G4HadSecondary* secondary = new G4HadSecondary( new G4DynamicParticle( resNuclDef, resNuclLab4mom ) );
191 secondary->
SetTime( latestEmission );
194 delete secondary;
195 }
196
197 } else {
198
199
200
201 G4Fragment* aFragment =
new G4Fragment(
A, Z, lab4mom );
204 fv->push_back( aFragment );
205 size_t n = fv->size();
206 for (
size_t i = 0; i <
n; ++i ) {
207 G4Fragment* f = (*fv)[i];
211 const G4ParticleDefinition* theDef = nullptr;
217 else {
219 if ( eexc <= minExcitation ) eexc = 0.0;
221 }
223 G4HadSecondary* news =
new G4HadSecondary(
new G4DynamicParticle( theDef, f->
GetMomentum().
vect().
unit(), ekin ) );
225 if ( timeF < 0.0 ) timeF = 0.0;
229 delete news;
230 delete f;
231 }
232 delete fv;
233 }
234
236}
std::vector< G4Fragment * > G4FragmentVector
CLHEP::HepLorentzVector G4LorentzVector
CLHEP::Hep3Vector G4ThreeVector
static G4Alpha * Definition()
static G4Deuteron * Definition()
static G4Electron * Definition()
G4double GetExcitationEnergy() const
const G4LorentzVector & GetMomentum() const
G4double GetCreationTime() const
const G4ParticleDefinition * GetParticleDefinition() const
static G4Gamma * Definition()
G4double GetKineticEnergy() const
const G4LorentzVector & Get4Momentum() const
G4double GetGlobalTime() const
void SetTime(G4double aT)
void SetCreatorModelID(G4int id)
G4HadFinalState theParticleChange
static G4He3 * Definition()
G4ParticleDefinition * GetIon(G4int Z, G4int A, G4int lvl=0)
static G4double GetNuclearMass(const G4double A, const G4double Z)
G4double GetPDGMass() const
G4IonTable * GetIonTable() const
static G4ParticleTable * GetParticleTable()
static G4Positron * Definition()
static G4Triton * Definition()