Geant4 9.6.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4SigmabZero Class Reference

#include <G4SigmabZero.hh>

+ Inheritance diagram for G4SigmabZero:

Static Public Member Functions

static G4SigmabZeroDefinition ()
 
static G4SigmabZeroSigmabZeroDefinition ()
 
static G4SigmabZeroSigmabZero ()
 

Additional Inherited Members

- Public Member Functions inherited from G4ParticleDefinition
 G4ParticleDefinition (const G4String &aName, G4double mass, G4double width, G4double charge, G4int iSpin, G4int iParity, G4int iConjugation, G4int iIsospin, G4int iIsospinZ, G4int gParity, const G4String &pType, G4int lepton, G4int baryon, G4int encoding, G4bool stable, G4double lifetime, G4DecayTable *decaytable, G4bool shortlived=false, const G4String &subType="", G4int anti_encoding=0, G4double magneticMoment=0.0)
 
virtual ~G4ParticleDefinition ()
 
const G4StringGetParticleName () const
 
G4double GetPDGMass () const
 
G4double GetPDGWidth () const
 
G4double GetPDGCharge () const
 
G4double GetPDGSpin () const
 
G4int GetPDGiSpin () const
 
G4int GetPDGiParity () const
 
G4int GetPDGiConjugation () const
 
G4double GetPDGIsospin () const
 
G4double GetPDGIsospin3 () const
 
G4int GetPDGiIsospin () const
 
G4int GetPDGiIsospin3 () const
 
G4int GetPDGiGParity () const
 
G4double GetPDGMagneticMoment () const
 
void SetPDGMagneticMoment (G4double mageticMoment)
 
G4double CalculateAnomaly () const
 
const G4StringGetParticleType () const
 
const G4StringGetParticleSubType () const
 
G4int GetLeptonNumber () const
 
G4int GetBaryonNumber () const
 
G4int GetPDGEncoding () const
 
G4int GetAntiPDGEncoding () const
 
void SetAntiPDGEncoding (G4int aEncoding)
 
G4int GetQuarkContent (G4int flavor) const
 
G4int GetAntiQuarkContent (G4int flavor) const
 
G4bool IsShortLived () const
 
G4bool GetPDGStable () const
 
void SetPDGStable (const G4bool aFlag)
 
G4double GetPDGLifeTime () const
 
void SetPDGLifeTime (G4double aLifeTime)
 
G4DecayTableGetDecayTable () const
 
void SetDecayTable (G4DecayTable *aDecayTable)
 
G4ProcessManagerGetProcessManager () const
 
void SetProcessManager (G4ProcessManager *aProcessManager)
 
G4ParticleTableGetParticleTable () const
 
void DumpTable () const
 
G4int GetAtomicNumber () const
 
G4int GetAtomicMass () const
 
void SetVerboseLevel (G4int value)
 
G4int GetVerboseLevel () const
 
G4int operator== (const G4ParticleDefinition &right) const
 
G4int operator!= (const G4ParticleDefinition &right) const
 
void SetApplyCutsFlag (G4bool)
 
G4bool GetApplyCutsFlag () const
 
- Protected Types inherited from G4ParticleDefinition
enum  { NumberOfQuarkFlavor = 6 }
 
- Protected Member Functions inherited from G4ParticleDefinition
G4int FillQuarkContents ()
 
void SetParticleSubType (const G4String &subtype)
 
void SetAtomicNumber (G4int)
 
void SetAtomicMass (G4int)
 
 G4ParticleDefinition (const G4ParticleDefinition &right)
 
 G4ParticleDefinition ()
 
- Protected Attributes inherited from G4ParticleDefinition
G4int theQuarkContent [NumberOfQuarkFlavor]
 
G4int theAntiQuarkContent [NumberOfQuarkFlavor]
 

Detailed Description

Definition at line 51 of file G4SigmabZero.hh.

Member Function Documentation

◆ Definition()

G4SigmabZero * G4SigmabZero::Definition ( )
static

Definition at line 53 of file G4SigmabZero.cc.

54{
55 if (theInstance !=0) return theInstance;
56 const G4String name = "sigma_b0";
57 // search in particle table]
59 G4ParticleDefinition* anInstance = pTable->FindParticle(name);
60 if (theInstance ==0)
61 {
62 // create particle
63 //
64 // Arguments for constructor are as follows
65 // name mass width charge
66 // 2*spin parity C-conjugation
67 // 2*Isospin 2*Isospin3 G-parity
68 // type lepton number baryon number PDG encoding
69 // stable lifetime decay table
70 // shortlived subType anti_encoding
71
72 anInstance = new G4ParticleDefinition(
73 name, 5.8078*GeV, 5.0*MeV, 0,
74 1, +1, 0,
75 2, 0, 0,
76 "baryon", 0, +1, 5212,
77 false, 0.0*ns, NULL,
78 false, "sigma_b");
79
80 //create Decay Table
81 G4DecayTable* table = new G4DecayTable();
82
83 // create decay channels
84 G4VDecayChannel** mode = new G4VDecayChannel*[1];
85 // sigma_b+ -> lambda_b + pi0
86 mode[0] = new G4PhaseSpaceDecayChannel("sigma_b0",1.000,2,"lambda_b","pi0");
87
88 for (G4int index=0; index <1; index++ ) table->Insert(mode[index]);
89 delete [] mode;
90
91 anInstance->SetDecayTable(table);
92 }
93 theInstance = reinterpret_cast<G4SigmabZero*>(anInstance);
94 return theInstance;
95}
int G4int
Definition: G4Types.hh:66
void Insert(G4VDecayChannel *aChannel)
Definition: G4DecayTable.cc:60
void SetDecayTable(G4DecayTable *aDecayTable)
G4ParticleDefinition * FindParticle(G4int PDGEncoding)
static G4ParticleTable * GetParticleTable()
#define ns
Definition: xmlparse.cc:597

Referenced by SigmabZero(), and SigmabZeroDefinition().

◆ SigmabZero()

G4SigmabZero * G4SigmabZero::SigmabZero ( )
static

Definition at line 102 of file G4SigmabZero.cc.

103{
104 return Definition();
105}
static G4SigmabZero * Definition()
Definition: G4SigmabZero.cc:53

◆ SigmabZeroDefinition()

G4SigmabZero * G4SigmabZero::SigmabZeroDefinition ( )
static

Definition at line 97 of file G4SigmabZero.cc.

98{
99 return Definition();
100}

Referenced by G4BaryonConstructor::ConstructBottomBaryons().


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