#include <G4InteractionCase.hh>
Definition at line 39 of file G4InteractionCase.hh.
◆ G4InteractionCase() [1/2]
G4InteractionCase::G4InteractionCase |
( |
| ) |
|
|
inline |
◆ G4InteractionCase() [2/2]
Definition at line 43 of file G4InteractionCase.hh.
43 {
45 }
void set(G4InuclParticle *part1, G4InuclParticle *part2)
◆ clear()
void G4InteractionCase::clear |
( |
| ) |
|
|
inline |
◆ code()
G4int G4InteractionCase::code |
( |
| ) |
const |
|
inline |
◆ getBullet()
◆ getTarget()
◆ hadNucleus()
G4bool G4InteractionCase::hadNucleus |
( |
| ) |
const |
|
inline |
◆ hadrons()
G4int G4InteractionCase::hadrons |
( |
| ) |
const |
|
inline |
◆ set()
Definition at line 38 of file G4InteractionCase.cc.
39 {
41
42
43 G4InuclNuclei* nucl1 = dynamic_cast<G4InuclNuclei*>(part1);
44 G4InuclNuclei* nucl2 = dynamic_cast<G4InuclNuclei*>(part2);
45
46 G4InuclElementaryParticle* had1 = dynamic_cast<G4InuclElementaryParticle*>(part1);
47 G4InuclElementaryParticle* had2 = dynamic_cast<G4InuclElementaryParticle*>(part2);
48
49 if (nucl1 && nucl2) {
50 inter_case = -2;
51 if (nucl2->
getA() >= nucl1->
getA()) {
52 bullet = part1;
53 target = part2;
54 } else {
55 bullet = part2;
56 target = part1;
57 }
58 } else if (nucl1 || nucl2) {
59 inter_case = -1;
60 if (nucl1 && had2) {
61 bullet = part2;
62 target = part1;
63 } else {
64 bullet = part1;
65 target = part2;
66 }
67 } else if (had1 && had2) {
68 inter_case = had1->
type() * had2->
type();
69 bullet = part1;
70 target = part2;
71 }
72}
Referenced by G4InteractionCase().
◆ twoNuclei()
G4bool G4InteractionCase::twoNuclei |
( |
| ) |
const |
|
inline |
◆ valid()
G4bool G4InteractionCase::valid |
( |
| ) |
const |
|
inline |
The documentation for this class was generated from the following files: