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

#include <G4INCLRecombinationChannel.hh>

Inheritance diagram for G4INCL::RecombinationChannel:
G4INCL::IChannel

Public Member Functions

void fillFinalState (FinalState *fs)
 
FinalStategetFinalState ()
 
 RecombinationChannel (Particle *p1, Particle *p2)
 
virtual ~RecombinationChannel ()
 

Private Attributes

ParticletheDelta
 
ParticletheNucleon
 

Detailed Description

Definition at line 55 of file G4INCLRecombinationChannel.hh.

Constructor & Destructor Documentation

◆ RecombinationChannel()

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

Definition at line 56 of file G4INCLRecombinationChannel.cc.

57 {
58 if(p1->isDelta()) {
59// assert(p2->isNucleon());
60 theDelta = p1;
61 theNucleon = p2;
62 } else {
63// assert(p1->isNucleon());
64 theDelta = p2;
65 theNucleon = p1;
66 }
67 }

References G4INCL::Particle::isDelta(), theDelta, and theNucleon.

◆ ~RecombinationChannel()

G4INCL::RecombinationChannel::~RecombinationChannel ( )
virtual

Definition at line 69 of file G4INCLRecombinationChannel.cc.

70 {
71 }

Member Function Documentation

◆ fillFinalState()

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

Implements G4INCL::IChannel.

Definition at line 73 of file G4INCLRecombinationChannel.cc.

74 {
75 // Compute the total available energy in the CM
77
78 // Assign the types of the final-state particles
79 switch(theDelta->getType()) {
80 case DeltaPlusPlus:
81// assert(theNucleon->getType()!=Proton);
84 break;
85 case DeltaPlus:
87 break;
88 case DeltaZero:
90 break;
91 case DeltaMinus:
92// assert(theNucleon->getType()!=Neutron);
95 break;
96 default:
97 INCL_ERROR("Unknown particle type in RecombinationChannel" << '\n');
98 break;
99 }
100
101 // Calculate the momenta of the nucleons in the final state
103
104 // The angular distribution of final-state nucleons is isotropic
105 ThreeVector momentum = Random::normVector(pCM);
106
107 // Assign the momenta
108 theDelta->setMomentum(momentum);
109 theNucleon->setMomentum(-momentum);
110
111 // Update the kinetic energies
114
115 // Create the final state
116 fs->addModifiedParticle(theDelta);
117 fs->addModifiedParticle(theNucleon);
118
119 }
#define INCL_ERROR(x)
double G4double
Definition: G4Types.hh:83
G4double adjustEnergyFromMomentum()
Recompute the energy to match the momentum.
virtual void setMomentum(const G4INCL::ThreeVector &momentum)
G4INCL::ParticleType getType() const
void setType(ParticleType t)
G4double getMass() const
Get the cached particle mass.
G4double totalEnergyInCM(Particle const *const p1, Particle const *const p2)
G4double momentumInCM(Particle const *const p1, Particle const *const p2)
gives the momentum in the CM frame of two particles.
ThreeVector normVector(G4double norm=1.)

References G4INCL::FinalState::addModifiedParticle(), G4INCL::Particle::adjustEnergyFromMomentum(), G4INCL::DeltaMinus, G4INCL::DeltaPlus, G4INCL::DeltaPlusPlus, G4INCL::DeltaZero, G4INCL::Particle::getMass(), G4INCL::Particle::getType(), INCL_ERROR, G4INCL::KinematicsUtils::momentumInCM(), G4INCL::Neutron, G4INCL::Random::normVector(), G4INCL::Proton, G4INCL::Particle::setMomentum(), G4INCL::Particle::setType(), theDelta, theNucleon, and G4INCL::KinematicsUtils::totalEnergyInCM().

◆ 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().

Field Documentation

◆ theDelta

Particle * G4INCL::RecombinationChannel::theDelta
private

Definition at line 64 of file G4INCLRecombinationChannel.hh.

Referenced by fillFinalState(), and RecombinationChannel().

◆ theNucleon

Particle* G4INCL::RecombinationChannel::theNucleon
private

Definition at line 64 of file G4INCLRecombinationChannel.hh.

Referenced by fillFinalState(), and RecombinationChannel().


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