#include <G4AntiTriton.hh>
Inheritance diagram for G4AntiTriton:
Static Public Member Functions | |
static G4AntiTriton * | Definition () |
static G4AntiTriton * | AntiTritonDefinition () |
static G4AntiTriton * | AntiTriton () |
Definition at line 51 of file G4AntiTriton.hh.
G4AntiTriton * G4AntiTriton::AntiTriton | ( | ) | [static] |
Definition at line 94 of file G4AntiTriton.cc.
References Definition().
Referenced by G4AntiBarionBuilder::Build(), HadronPhysicsQGSP_FTFP_BERT_95::ConstructProcess(), G4AntiNuclElastic::G4AntiNuclElastic(), and G4ComponentAntiNuclNuclearXS::G4ComponentAntiNuclNuclearXS().
00095 { 00096 return Definition(); 00097 }
G4AntiTriton * G4AntiTriton::AntiTritonDefinition | ( | ) | [static] |
Definition at line 89 of file G4AntiTriton.cc.
References Definition().
Referenced by G4IonConstructor::ConstructLightIons().
00090 { 00091 return Definition(); 00092 }
G4AntiTriton * G4AntiTriton::Definition | ( | ) | [static] |
Definition at line 50 of file G4AntiTriton.cc.
References G4ParticleTable::FindParticle(), G4Ions::G4Ions(), G4ParticleTable::GetParticleTable(), and G4ParticleDefinition::SetPDGMagneticMoment().
Referenced by AntiTriton(), AntiTritonDefinition(), G4InuclElementaryParticle::makeDefinition(), and G4InuclElementaryParticle::type().
00051 { 00052 if (theInstance !=0) return theInstance; 00053 const G4String name = "anti_triton"; 00054 // search in particle table] 00055 G4ParticleTable* pTable = G4ParticleTable::GetParticleTable(); 00056 G4Ions* anInstance = reinterpret_cast<G4Ions*>(pTable->FindParticle(name)); 00057 if (anInstance ==0) 00058 { 00059 // create particle 00060 // 00061 // Arguments for constructor are as follows 00062 // name mass width charge 00063 // 2*spin parity C-conjugation 00064 // 2*Isospin 2*Isospin3 G-parity 00065 // type lepton number baryon number PDG encoding 00066 // stable lifetime decay table 00067 // shortlived subType anti_encoding 00068 // excitation 00069 anInstance = new G4Ions( 00070 name, 2.808921*GeV, 0.0*MeV, -1.0*eplus, 00071 1, +1, 0, 00072 0, 0, 0, 00073 "anti_nucleus", 0, -3, -1000010030, 00074 true, -1.0, NULL, 00075 false, "static", 1000010030, 00076 0.0 00077 ); 00078 00079 // Magnetic Moment 00080 G4double mN = eplus*hbar_Planck/2./(proton_mass_c2 /c_squared); 00081 anInstance->SetPDGMagneticMoment( -2.97896248 * mN); 00082 00083 } 00084 00085 theInstance = reinterpret_cast<G4AntiTriton*>(anInstance); 00086 return theInstance; 00087 }