Geant4-11
Public Member Functions
G4MesonSplitter Class Reference

#include <G4MesonSplitter.hh>

Public Member Functions

G4bool SplitMeson (G4int PDGcode, G4int *aEnd, G4int *bEnd)
 

Detailed Description

Definition at line 36 of file G4MesonSplitter.hh.

Member Function Documentation

◆ SplitMeson()

G4bool G4MesonSplitter::SplitMeson ( G4int  PDGcode,
G4int aEnd,
G4int bEnd 
)

Definition at line 29 of file G4MesonSplitter.cc.

30{
31 G4bool result = true;
32 G4int absPDGcode = std::abs(PDGcode);
33 if (absPDGcode >= 1000) return false;
34 if(absPDGcode == 22) // For gamma -> 4 (u ubar) + 1 (d dbar)
35 {
36 G4int it=1;
37 if(G4UniformRand()<0.8) it++;
38 *aEnd = it;
39 *bEnd = -it;
40 }
41 else
42 {
43 G4int heavy = absPDGcode/100;
44 G4int light = (absPDGcode%100)/10;
45 G4int anti = 1 - 2*(std::max(heavy, light)%2);
46 if (PDGcode < 0 ) anti = -anti;
47 heavy *= anti;
48 light *= -anti;
49 if ( anti < 0) G4SwapObj(&heavy, &light);
50 *aEnd = heavy;
51 *bEnd = light;
52 }
53 return result;
54}
bool G4bool
Definition: G4Types.hh:86
int G4int
Definition: G4Types.hh:85
#define G4UniformRand()
Definition: Randomize.hh:52
T max(const T t1, const T t2)
brief Return the largest of the two arguments
void G4SwapObj(T *a, T *b)
Definition: templates.hh:112

References G4SwapObj(), G4UniformRand, and G4INCL::Math::max().

Referenced by G4QGSMSplitableHadron::GetValenceQuarkFlavors().


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