98{
99 G4Fragment * Fragment1 = nullptr;
100
101
103
105
107 G4double pcorr = pairingCorrection->GetFissionPairingCorrection(
A,Z);
108 if (U <= pcorr) { return Fragment1; }
109
110
112
113
115
116
117 theParam.DefineParameters(
A, Z, U-pcorr, fissionBarrier);
118
119
123
124
128
129 G4double FragmentsExcitationEnergy = 0.0;
130 G4double FragmentsKineticEnergy = 0.0;
131
133 do {
134
135
136 A1 = FissionAtomicNumber(
A);
137 Z1 = FissionCharge(
A, Z, A1);
139
140
142 Z2 = Z - Z1;
143 if (A2 < 1 || Z2 < 0 || Z2 > A2) {
144 FragmentsExcitationEnergy = -1.0;
145 continue;
146 }
148
150
151
152 if (Tmax < 0.0) {
153 FragmentsExcitationEnergy = -1.0;
154 continue;
155 }
156
157 FragmentsKineticEnergy = FissionKineticEnergy(
A , Z,
158 A1, Z1,
159 A2, Z2,
160 U , Tmax);
161
162
163
164
165
166
167
168 FragmentsExcitationEnergy =
169 Tmax - FragmentsKineticEnergy + pcorr;
170
171
172 } while (FragmentsExcitationEnergy < 0.0 && ++Trials < 100);
173
174 if (FragmentsExcitationEnergy <= 0.0) {
175 throw G4HadronicException(__FILE__, __LINE__,
176 "G4CompetitiveFission::BreakItUp: Excitation energy for fragments < 0.0!");
177 }
178
179
180 M1 += FragmentsExcitationEnergy * A1/
static_cast<G4double>(
A);
181
182 M2 += FragmentsExcitationEnergy * A2/
static_cast<G4double>(
A);
183
185
186 G4double etot1 = ((
M - M2)*(
M + M2) + M1*M1)/(2*
M);
190 FourMomentum1.boost(theNucleusMomentum.
boostVector());
191
192
193 Fragment1 = new G4Fragment( A1, Z1, FourMomentum1);
195 theNucleusMomentum -= FourMomentum1;
199 return Fragment1;
200}
CLHEP::HepLorentzVector G4LorentzVector
G4ThreeVector G4ParticleMomentum
G4ThreeVector G4RandomDirection()
Hep3Vector boostVector() const
G4double GetGroundStateMass() const
void SetZandA_asInt(G4int Znew, G4int Anew, G4int Lnew=0)
G4double GetExcitationEnergy() const
const G4LorentzVector & GetMomentum() const
void SetCreatorModelID(G4int value)
void SetMomentum(const G4LorentzVector &value)
static G4double GetNuclearMass(const G4double A, const G4double Z)