75{
76
77
78
80 G4DynamicParticle parentParticle(theParent, atRest);
81 G4DecayProducts* products = new G4DecayProducts(parentParticle);
82
83
84 G4Fragment parentNucleus(parentA, parentZ, atRest);
85
86
87 G4Fragment* eOrGamma = photonEvaporation->EmittedFragment(&parentNucleus);
88
89
91 G4ParticleDefinition* daughterIon =
92 theIonTable->
GetIon(parentZ, parentA, parentNucleus.GetExcitationEnergy(),
94 G4DynamicParticle* dynDaughter = new G4DynamicParticle(daughterIon,
95 parentNucleus.GetMomentum());
96
97 if (nullptr != eOrGamma) {
98 G4DynamicParticle* eOrGammaDyn =
103 delete eOrGamma;
104
105
106 if (applyARM) {
107 G4int shellIndex = photonEvaporation->GetVacantShellNumber();
108 if (shellIndex > -1) {
109 G4VAtomDeexcitation* atomDeex =
111 if (atomDeex->
IsFluoActive() && parentZ > 5 && parentZ < 105) {
113 if (shellIndex >= nShells) shellIndex = nShells;
115 const G4AtomicShell* shell = atomDeex->
GetAtomicShell(parentZ, as);
116 std::vector<G4DynamicParticle*> armProducts;
117
118
119
122
123
125 deexLimit);
127 for (
G4int i = 0; i <
G4int(armProducts.size()); i++)
128 productEnergy += armProducts[i]->GetKineticEnergy();
129
131 if (deficit > 0.0) {
132
134 G4double sinTh = std::sqrt(1.- cosTh*cosTh);
136
138 sinTh*std::cos(phi), cosTh);
139 G4DynamicParticle* extra =
141 deficit);
142 armProducts.push_back(extra);
143 }
144
145 std::size_t nArm = armProducts.size();
146 if (nArm > 0) {
148 for (std::size_t i = 0; i < nArm; ++i) {
149 G4DynamicParticle* dp = armProducts[i];
153 }
154 }
155 }
156 }
157 }
158 }
159
161
162
163
164
165
166
167
168
169
170
171
172
173
174 return products;
175}
CLHEP::HepLorentzVector G4LorentzVector
CLHEP::Hep3Vector G4ThreeVector
Hep3Vector boostVector() const
HepLorentzVector & boost(double, double, double)
G4double BindingEnergy() const
static G4int GetNumberOfShells(G4int Z)
G4int PushProducts(G4DynamicParticle *aParticle)
void SetProperTime(G4double)
G4LorentzVector Get4Momentum() const
void Set4Momentum(const G4LorentzVector &momentum)
static G4Electron * Electron()
static G4EmParameters * Instance()
const G4LorentzVector & GetMomentum() const
G4double GetCreationTime() const
const G4ParticleDefinition * GetParticleDefinition() const
G4ParticleDefinition * GetIon(G4int Z, G4int A, G4int lvl=0)
static G4Ions::G4FloatLevelBase FloatLevelBase(char flbChar)
static G4LossTableManager * Instance()
G4VAtomDeexcitation * AtomDeexcitation()
G4IonTable * GetIonTable() const
static G4ParticleTable * GetParticleTable()
virtual const G4AtomicShell * GetAtomicShell(G4int Z, G4AtomicShellEnumerator shell)=0
void GenerateParticles(std::vector< G4DynamicParticle * > *secVect, const G4AtomicShell *, G4int Z, G4int coupleIndex)
G4bool IsFluoActive() const