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

Generate momenta using the Kopylov method. More...

#include <G4INCLPhaseSpaceKopylov.hh>

Inheritance diagram for G4INCL::PhaseSpaceKopylov:
G4INCL::IPhaseSpaceGenerator

Public Member Functions

void generate (const G4double sqrtS, ParticleList &particles)
 Generate momenta according to a uniform, non-Lorentz-invariant phase-space model. More...
 

Private Member Functions

G4double betaKopylov (G4int K) const
 Internal function used by the Kopylov algorithm. More...
 

Private Attributes

ThreeVector boostV
 
std::vector< G4doublemasses
 
ThreeVector PFragCM
 
ThreeVector PRestCM
 
std::vector< G4doublesumMasses
 

Detailed Description

Generate momenta using the Kopylov method.

Definition at line 48 of file G4INCLPhaseSpaceKopylov.hh.

Member Function Documentation

◆ betaKopylov()

G4double G4INCL::PhaseSpaceKopylov::betaKopylov ( G4int  K) const
private

Internal function used by the Kopylov algorithm.

Definition at line 47 of file G4INCLPhaseSpaceKopylov.cc.

47 {
48 G4int N = 3*K - 5;
49 G4double xN = G4double(N);
50 G4double Fmax = std::sqrt(std::pow(xN/(xN+1.),N)/(xN+1.));
51
52 G4double F, chi;
53 unsigned long loopCounter = 0;
54 const unsigned long maxLoopCounter = 10000000;
55 do {
56 chi = Random::shoot();
57 F = std::sqrt(std::pow(chi,N)*(1.-chi));
58 ++loopCounter;
59 } while (loopCounter<maxLoopCounter && Fmax*Random::shoot() > F); /* Loop checking, 10.07.2015, D.Mancusi */
60 return chi;
61 }
double G4double
Definition: G4Types.hh:83
int G4int
Definition: G4Types.hh:85
G4double shoot()
Definition: G4INCLRandom.cc:93

References G4INCL::Random::shoot().

Referenced by generate().

◆ generate()

void G4INCL::PhaseSpaceKopylov::generate ( const G4double  sqrtS,
ParticleList particles 
)
virtual

Generate momenta according to a uniform, non-Lorentz-invariant phase-space model.

This function will assign momenta to the particles in the list that is passed as an argument. The event is generated in the CM frame.

Parameters
sqrtStotal centre-of-mass energy of the system
particleslist of particles

Implements G4INCL::IPhaseSpaceGenerator.

Definition at line 63 of file G4INCLPhaseSpaceKopylov.cc.

63 {
64
65 boostV.setX(0.0);
66 boostV.setY(0.0);
67 boostV.setZ(0.0);
68
69 const size_t N = particles.size();
70 masses.resize(N);
71 sumMasses.resize(N);
72 std::transform(particles.begin(), particles.end(), masses.begin(), std::mem_fn(&Particle::getMass));
73 std::partial_sum(masses.begin(), masses.end(), sumMasses.begin());
74
75 G4double PFragMagCM = 0.0;
76 G4double T = sqrtS-sumMasses.back();
77// assert(T>-1.e-5);
78 if(T<0.)
79 T=0.;
80
81 // The first particle in the list will pick up all the recoil
82 Particle *restParticle = particles.front();
83 restParticle->setMass(sqrtS);
84 restParticle->adjustEnergyFromMomentum();
85
86 G4int k=N-1;
87 for (ParticleList::reverse_iterator p=particles.rbegin(); k>0; ++p, --k) {
88 const G4double mu = sumMasses[k-1];
89 T *= (k>1) ? betaKopylov(k) : 0.;
90
91 const G4double restMass = mu + T;
92
93 PFragMagCM = KinematicsUtils::momentumInCM(restParticle->getMass(), masses[k], restMass);
94 PFragCM = Random::normVector(PFragMagCM);
95 (*p)->setMomentum(PFragCM);
96 (*p)->adjustEnergyFromMomentum();
97 restParticle->setMass(restMass);
98 restParticle->setMomentum(-PFragCM);
99 restParticle->adjustEnergyFromMomentum();
100
101 (*p)->boost(boostV);
102 restParticle->boost(boostV);
103
104 boostV = -restParticle->boostVector();
105 }
106 restParticle->setMass(masses[0]);
107 restParticle->adjustEnergyFromMomentum();
108 }
G4double getMass() const
Get the cached particle mass.
std::vector< G4double > masses
std::vector< G4double > sumMasses
G4double betaKopylov(G4int K) const
Internal function used by the Kopylov algorithm.
void setY(G4double ay)
Set the y coordinate.
void setZ(G4double az)
Set the z coordinate.
void setX(G4double ax)
Set the x coordinate.
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.)
G4bool transform(G4String &input, const G4String &type)

References G4INCL::Particle::adjustEnergyFromMomentum(), betaKopylov(), G4INCL::Particle::boost(), boostV, G4INCL::Particle::boostVector(), G4INCL::Particle::getMass(), masses, G4INCL::KinematicsUtils::momentumInCM(), G4INCL::Random::normVector(), PFragCM, G4INCL::Particle::setMass(), G4INCL::Particle::setMomentum(), G4INCL::ThreeVector::setX(), G4INCL::ThreeVector::setY(), G4INCL::ThreeVector::setZ(), sumMasses, and G4coutFormatters::anonymous_namespace{G4coutFormatters.cc}::transform().

Field Documentation

◆ boostV

ThreeVector G4INCL::PhaseSpaceKopylov::boostV
private

Definition at line 68 of file G4INCLPhaseSpaceKopylov.hh.

Referenced by generate().

◆ masses

std::vector<G4double> G4INCL::PhaseSpaceKopylov::masses
private

Definition at line 65 of file G4INCLPhaseSpaceKopylov.hh.

Referenced by generate().

◆ PFragCM

ThreeVector G4INCL::PhaseSpaceKopylov::PFragCM
private

Definition at line 67 of file G4INCLPhaseSpaceKopylov.hh.

Referenced by generate().

◆ PRestCM

ThreeVector G4INCL::PhaseSpaceKopylov::PRestCM
private

Definition at line 67 of file G4INCLPhaseSpaceKopylov.hh.

◆ sumMasses

std::vector<G4double> G4INCL::PhaseSpaceKopylov::sumMasses
private

Definition at line 66 of file G4INCLPhaseSpaceKopylov.hh.

Referenced by generate().


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