Geant4-11
Public Member Functions | Private Member Functions | Private Attributes | Static Private Attributes
G4INCL::NNToNLKpiChannel Class Reference

#include <G4INCLNNToNLKpiChannel.hh>

Inheritance diagram for G4INCL::NNToNLKpiChannel:
G4INCL::IChannel

Public Member Functions

void fillFinalState (FinalState *fs)
 
FinalStategetFinalState ()
 
 NNToNLKpiChannel (Particle *, Particle *)
 
virtual ~NNToNLKpiChannel ()
 

Private Member Functions

 INCL_DECLARE_ALLOCATION_POOL (NNToNLKpiChannel)
 

Private Attributes

Particleparticle1
 
Particleparticle2
 

Static Private Attributes

static const G4double angularSlope = 2.
 

Detailed Description

Definition at line 47 of file G4INCLNNToNLKpiChannel.hh.

Constructor & Destructor Documentation

◆ NNToNLKpiChannel()

G4INCL::NNToNLKpiChannel::NNToNLKpiChannel ( Particle p1,
Particle p2 
)

Definition at line 51 of file G4INCLNNToNLKpiChannel.cc.

◆ ~NNToNLKpiChannel()

G4INCL::NNToNLKpiChannel::~NNToNLKpiChannel ( )
virtual

Definition at line 55 of file G4INCLNNToNLKpiChannel.cc.

55{}

Member Function Documentation

◆ fillFinalState()

void G4INCL::NNToNLKpiChannel::fillFinalState ( FinalState fs)
virtual

Implements G4INCL::IChannel.

Definition at line 57 of file G4INCLNNToNLKpiChannel.cc.

57 {
58
59 // pp -> p pi+ L K0 (9)
60 // pp -> p pi0 L K+ (2)
61 // pp -> n pi+ L K+ (1)
62 // pn -> p pi- L K+ (2)
63 // pn -> n pi0 L K+ (4)
64
66
68
69 ParticleType KaonType;
70 ParticleType PionType;
71
72 G4double rdm = Random::shoot();
74
75 if(iso == 2){
76 if(rdm*4. < 3.){
77 KaonType = KZero;
78 PionType = PiPlus;
79 }
80 else if(rdm*12. < 11.){
81 KaonType = KPlus;
82 PionType = PiZero;
83 }
84 else{
85 KaonType = KPlus;
86 PionType = PiPlus;
88 }
89 }
90 else if(iso == -2){
91 if(rdm*4. < 3.){
92 KaonType = KPlus;
93 PionType = PiMinus;
94 }
95 else if(rdm*12. < 11.){
96 KaonType = KZero;
97 PionType = PiZero;
98 }
99 else{
100 KaonType = KZero;
101 PionType = PiMinus;
103 }
104 }
105 else if(rdm*6. < 2.){
106 KaonType = KPlus;
107 PionType = PiZero;
109 }
110 else if(rdm*6. < 4.){
111 KaonType = KZero;
112 PionType = PiZero;
114 }
115 else if(rdm*6. < 5.){
116 KaonType = KPlus;
117 PionType = PiMinus;
119 }
120 else{
121 KaonType = KZero;
122 PionType = PiPlus;
124 }
125
126 ParticleList list;
127 list.push_back(particle1);
128 list.push_back(particle2);
129 const ThreeVector &rcol1 = particle1->getPosition();
130 const ThreeVector &rcol2 = particle2->getPosition();
131 const ThreeVector zero;
132 Particle *pion = new Particle(PionType,zero,rcol1);
133 Particle *kaon = new Particle(KaonType,zero,rcol2);
134 list.push_back(kaon);
135 list.push_back(pion);
136
139
140 fs->addModifiedParticle(particle1);
141 fs->addModifiedParticle(particle2);
142 fs->addCreatedParticle(kaon);
143 fs->addCreatedParticle(pion);
144
145 }
double G4double
Definition: G4Types.hh:83
int G4int
Definition: G4Types.hh:85
static const G4double angularSlope
const G4INCL::ThreeVector & getPosition() const
G4INCL::ParticleType getType() const
void setType(ParticleType t)
G4double totalEnergyInCM(Particle const *const p1, Particle const *const p2)
G4int getIsospin(const ParticleType t)
Get the isospin of a particle.
void generateBiased(const G4double sqrtS, ParticleList &particles, const size_t index, const G4double slope)
Generate a biased event in the CM system.
G4double shoot()
Definition: G4INCLRandom.cc:93
G4bool pion(G4int ityp)
static const G4LorentzVector zero(0., 0., 0., 0.)

References G4INCL::FinalState::addCreatedParticle(), G4INCL::FinalState::addModifiedParticle(), angularSlope, G4INCL::PhaseSpaceGenerator::generateBiased(), G4INCL::ParticleTable::getIsospin(), G4INCL::Particle::getPosition(), G4INCL::Particle::getType(), G4INCL::KPlus, G4INCL::KZero, G4INCL::Lambda, G4INCL::Neutron, particle1, particle2, G4INCL::PiMinus, G4InuclParticleNames::pion(), G4INCL::PiPlus, G4INCL::PiZero, G4INCL::Proton, G4INCL::Particle::setType(), G4INCL::Random::shoot(), G4INCL::KinematicsUtils::totalEnergyInCM(), and anonymous_namespace{G4CascadeDeexciteBase.cc}::zero.

◆ getFinalState()

FinalState * G4INCL::IChannel::getFinalState ( )
inherited

Definition at line 50 of file G4INCLIChannel.cc.

50 {
51 FinalState *fs = new FinalState;
53 return fs;
54 }
virtual void fillFinalState(FinalState *fs)=0

References G4INCL::IChannel::fillFinalState().

◆ INCL_DECLARE_ALLOCATION_POOL()

G4INCL::NNToNLKpiChannel::INCL_DECLARE_ALLOCATION_POOL ( NNToNLKpiChannel  )
private

Field Documentation

◆ angularSlope

const G4double G4INCL::NNToNLKpiChannel::angularSlope = 2.
staticprivate

Definition at line 57 of file G4INCLNNToNLKpiChannel.hh.

Referenced by fillFinalState().

◆ particle1

Particle* G4INCL::NNToNLKpiChannel::particle1
private

Definition at line 55 of file G4INCLNNToNLKpiChannel.hh.

Referenced by fillFinalState().

◆ particle2

Particle * G4INCL::NNToNLKpiChannel::particle2
private

Definition at line 55 of file G4INCLNNToNLKpiChannel.hh.

Referenced by fillFinalState().


The documentation for this class was generated from the following files: