Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
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

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

Definition at line 29 of file G4MesonSplitter.cc.

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

30 {
31  G4bool result = true;
32  G4int absPDGcode = std::abs(PDGcode);
33  if (absPDGcode >= 1000) return false;
34  if(absPDGcode == 22)
35  {
36  G4int it=1;
37  if(G4UniformRand()<.5) 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 }
void G4SwapObj(T *a, T *b)
Definition: templates.hh:129
int G4int
Definition: G4Types.hh:78
#define G4UniformRand()
Definition: Randomize.hh:87
bool G4bool
Definition: G4Types.hh:79
T max(const T t1, const T t2)
brief Return the largest of the two arguments

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