146{
148 G4cout <<
" >>> G4ElementaryParticleCollider::collide" <<
G4endl;
149
151 G4cerr <<
" ElementaryParticleCollider -> can collide only particle with particle "
153 return;
154 }
155
156#ifdef G4CASCADE_DEBUG_SAMPLER
157 static G4bool doPrintTables =
true;
158 if (doPrintTables) {
160 doPrintTables = false;
161 }
162#endif
163
165
167
168 G4InuclElementaryParticle* particle1 =
169 dynamic_cast<G4InuclElementaryParticle*>(bullet);
170 G4InuclElementaryParticle* particle2 =
171 dynamic_cast<G4InuclElementaryParticle*>(target);
172
173 if (!particle1 || !particle2) {
174 G4cerr <<
" ElementaryParticleCollider -> can only collide hadrons"
176 return;
177 }
178
180
181
184 G4cerr <<
" ElementaryParticleCollider -> cannot collide "
187 return;
188 }
189
190 G4LorentzConvertor convertToSCM;
194 } else {
197 }
198
201
203
204
207
208
209 if (pionNucleonAbsorption(ekin)) {
210 generateSCMpionNAbsorption(etot_scm, particle1, particle2);
211 } else {
212 generateSCMfinalState(ekin, etot_scm, particle1, particle2);
213 }
214 }
215
216
220 G4cerr <<
" ElementaryParticleCollider -> can only collide pi,mu,gamma with"
221 <<
" dibaryons " <<
G4endl;
222 return;
223 }
224
226 generateSCMmuonAbsorption(etot_scm, particle1, particle2);
227 } else {
228 generateSCMpionAbsorption(etot_scm, particle1, particle2);
229 }
230 }
231
232 if (particles.empty()) {
234 G4cerr <<
" ElementaryParticleCollider -> failed to collide "
238 }
239 return;
240 }
241
242
245 for(ipart = particles.begin(); ipart != particles.end(); ipart++) {
247 ipart->setMomentum(mom);
248 };
249
251
254
259
260 G4int finalBaryonNumber = 0;
261 G4int finalCharge = 0;
262 G4int finalStrangeness = 0;
263
264 for (ipart = particles.begin(); ipart != particles.end(); ipart++) {
265 finalBaryonNumber += ipart->baryon();
266 finalCharge += ipart->getCharge();
267 finalStrangeness += ipart->getStrangeness();
268 }
269
270 G4int bnc = finalBaryonNumber - initBaryonNumber;
271 G4int cnc = finalCharge - initCharge;
272 G4int snc = finalStrangeness - initStrangeness;
273
274 if (bnc != 0 || cnc != 0 || snc != 0) {
275 G4cout <<
" G4ElementaryParticleCollider: quantum number non-conservation " <<
G4endl;
276 G4cout <<
" Baryon number: initial = " << initBaryonNumber <<
", final = "
277 << finalBaryonNumber <<
G4endl;
278 G4cout <<
" Charge: initial = " << initCharge <<
", final = "
280 G4cout <<
" Strangeness: initial = " << initStrangeness <<
", final = "
281 << finalStrangeness <<
G4endl;
282
285 G4cout <<
" secondaries = " ;
286 for (ipart = particles.begin(); ipart != particles.end(); ipart++) {
287 G4cout << ipart->getDefinition()->GetParticleName() <<
" " ;
288 }
290 }
291 }
292
294 G4cout <<
" incoming particles: \n" << *particle1 <<
G4endl
296 <<
" outgoing particles: " <<
G4endl;
297 for(ipart = particles.begin(); ipart != particles.end(); ipart++)
299
300 G4cout <<
" <<< Non-conservation in G4ElementaryParticleCollider"
302 }
303
304 std::sort(particles.begin(), particles.end(), G4ParticleLargerEkin());
306}
std::vector< G4InuclElementaryParticle >::iterator particleIterator
CLHEP::HepLorentzVector G4LorentzVector
G4GLOB_DLL std::ostream G4cerr
G4GLOB_DLL std::ostream G4cout
static void Print(std::ostream &os=G4cout)
static const G4CascadeChannel * GetTable(G4int initialState)
virtual G4bool useEPCollider(G4InuclParticle *bullet, G4InuclParticle *target) const
G4InteractionCase interCase
virtual G4bool validateOutput(G4InuclParticle *bullet, G4InuclParticle *target, G4CollisionOutput &output)
void addOutgoingParticles(const std::vector< G4InuclElementaryParticle > &particles)
G4bool quasi_deutron() const
G4bool isNeutrino() const
const G4ParticleDefinition * getDefinition() const
G4double getMomModule() const
G4double getCharge() const
G4double getTotalSCMEnergy() const
void setVerbose(G4int vb=0)
void setBullet(const G4InuclParticle *bullet)
G4LorentzVector backToTheLab(const G4LorentzVector &mom) const
G4double getKinEnergyInTheTRS() const
void setTarget(const G4InuclParticle *target)
static G4bool useQuasiDeuteron(G4int ptype, G4int qdtype=0)
G4int GetQuarkContent(G4int flavor) const
G4int GetBaryonNumber() const
const G4String & GetParticleName() const
G4int GetAntiQuarkContent(G4int flavor) const