86{
90
93
94 if (ekin <= lowEnergyLimit) {
96 }
98
99 G4int projPDG = part->GetPDGEncoding();
100
101
102
103 if (1 == Z && (211 == projPDG || 321 == projPDG)) {
A = 2; }
104
106 G4cout <<
"G4ChargeExchange for " << part->GetParticleName()
107 << " PDGcode= " << projPDG << " on nucleus Z= " << Z
108 <<
" A= " <<
A <<
" N= " <<
A - Z
110
114
115
116 const G4ParticleDefinition* theSecondary =
117 fXSection->SampleSecondaryType(part, Z,
A);
119
120
121 G4bool isShortLived = (pdg == 223 || pdg == 225);
122
123
124 if (projPDG == -211) { --Z; }
125 else if (projPDG == 211) { ++Z; }
126 else if (projPDG == -321) { --Z; }
127 else if (projPDG == 321) { ++Z; }
128 else if (projPDG == 130) {
130 else { ++Z; }
131 } else {
132
134 }
135
136
137 const G4ParticleDefinition* theRecoil = nullptr;
142 else if (Z == 2 &&
A == 3) { theRecoil =
G4He3::He3(); }
144 else if (nist->GetIsotopeAbundance(Z,
A) > 0.0) {
147 }
148
149
150
152 G4double mass3 = (
nullptr == theRecoil) ?
155 if (isShortLived &&
156 !SampleMass(mass2, theSecondary->
GetPDGWidth(), etot - mass3)) {
158 }
159
160
161 if (etot <= mass2 + mass3) {
163 }
164
165
170
171
172 G4double e2 = ss + mass2*mass2 - mass3*mass3;
173 G4double tmax = e2*e2/ss - 4*mass2*mass2;
174
176
179
180 if (cost > 1.0) { cost = 1.0; }
181 else if(cost < -1.0) { cost = -1.0; }
182
183 G4double sint = std::sqrt((1.0-cost)*(1.0+cost));
184
186 G4cout <<
" t= " << t <<
" tmax(GeV^2)= " << tmax/(GeV*GeV)
187 <<
" cos(t)=" << cost <<
" sin(t)=" << sint <<
G4endl;
188 }
189 G4double momentumCMS = 0.5*std::sqrt(tmax);
191 momentumCMS*sint*std::sin(phi),
192 momentumCMS*cost,
193 std::sqrt(momentumCMS*momentumCMS + mass2*mass2));
194
195
196 lv2.boost(bst);
197 if (lv2.e() < mass2) {
198 lv2.setE(mass2);
199 }
200 lv -= lv2;
201 if (lv.
e() < mass3) {
203 }
204
205
208
209 if (!isShortLived) {
210 auto aSec = new G4DynamicParticle(theSecondary, lv2);
212 } else {
214 auto products = channel->
DecayIt(mass2);
216 G4int N = products->entries();
217 for (
G4int i=0; i<
N; ++i) {
218 auto p = (*products)[i];
219 auto lvp = p->Get4Momentum();
220 lvp.boost(bst1);
221 p->Set4Momentum(lvp);
223 }
224 delete products;
225 }
226
227
228 if (nullptr != theRecoil) {
229 auto aRec = new G4DynamicParticle(theRecoil, lv);
231 } else {
232
233 G4Fragment frag(
A, Z, lv);
234 auto products = fHandler->BreakItUp(frag);
235 for (auto & prod : *products) {
236 auto dp = new G4DynamicParticle(prod->GetDefinition(), prod->GetMomentum());
238 delete prod;
239 }
240 delete products;
241 }
243}
CLHEP::HepLorentzVector G4LorentzVector
CLHEP::Hep3Vector G4ThreeVector
G4GLOB_DLL std::ostream G4cout
Hep3Vector boostVector() const
G4double SampleT(const G4ParticleDefinition *theSec, const G4int A, const G4double tmax) const
G4VDecayChannel * SelectADecayChannel(G4double parentMass=-1.)
static G4Deuteron * Deuteron()
const G4ParticleDefinition * GetDefinition() const
G4double GetKineticEnergy() const
const G4LorentzVector & Get4Momentum() const
G4HadFinalState theParticleChange
G4ParticleDefinition * GetIon(G4int Z, G4int A, G4int lvl=0)
static G4Neutron * Neutron()
static G4double GetNuclearMass(const G4double A, const G4double Z)
G4double GetPDGMass() const
G4int GetPDGEncoding() const
G4double GetPDGWidth() const
G4double GetPDGCharge() const
G4DecayTable * GetDecayTable() const
G4IonTable * GetIonTable() const
static G4ParticleTable * GetParticleTable()
static G4Proton * Proton()
static G4Triton * Triton()
virtual G4DecayProducts * DecayIt(G4double parentMass=-1.0)=0