#include <G4AntiOmegaMinus.hh>
Inheritance diagram for G4AntiOmegaMinus:
Static Public Member Functions | |
static G4AntiOmegaMinus * | Definition () |
static G4AntiOmegaMinus * | AntiOmegaMinusDefinition () |
static G4AntiOmegaMinus * | AntiOmegaMinus () |
Definition at line 50 of file G4AntiOmegaMinus.hh.
G4AntiOmegaMinus * G4AntiOmegaMinus::AntiOmegaMinus | ( | ) | [static] |
Definition at line 110 of file G4AntiOmegaMinus.cc.
References Definition().
Referenced by G4LElastic::ApplyYourself(), G4MiscLHEPBuilder::Build(), G4MiscBuilder::Build(), G4HyperonLHEPBuilder::Build(), G4HyperonFTFPBuilder::Build(), G4QAtomicPhysics::ConstructParticle(), HadronPhysicsQGSP_FTFP_BERT_95::ConstructProcess(), HadronPhysicsQGSP_BERT_95::ConstructProcess(), G4BaryonSplitter::G4BaryonSplitter(), G4ChargeExchange::G4ChargeExchange(), G4ChargeExchangeProcess::G4ChargeExchangeProcess(), G4ComponentGGHadronNucleusXsc::G4ComponentGGHadronNucleusXsc(), G4GlauberGribovCrossSection::G4GlauberGribovCrossSection(), G4HadronNucleonXsc::G4HadronNucleonXsc(), G4QHadronInelasticDataSet::GetIsoCrossSection(), G4QHadronElasticDataSet::GetIsoCrossSection(), G4QInelastic::GetMeanFreePath(), G4QElastic::GetMeanFreePath(), G4QPDGToG4Particle::GetParticleDefinition(), G4QInelastic::IsApplicable(), G4QHadronInelasticDataSet::IsIsoApplicable(), G4QHadronElasticDataSet::IsIsoApplicable(), G4ChipsAntiBaryonInelasticXS::IsIsoApplicable(), G4ChipsAntiBaryonElasticXS::IsIsoApplicable(), G4QInelastic::PostStepDoIt(), G4QElastic::PostStepDoIt(), G4QDiffraction::PostStepDoIt(), G4RPGPionSuppression::ReactionStage(), and G4ReactionDynamics::SuppressChargedPions().
00111 { 00112 return Definition(); 00113 }
G4AntiOmegaMinus * G4AntiOmegaMinus::AntiOmegaMinusDefinition | ( | ) | [static] |
Definition at line 105 of file G4AntiOmegaMinus.cc.
References Definition().
Referenced by G4BaryonConstructor::ConstructStrangeBaryons(), and G4QPDGToG4Particle::DefineAllParticles().
00106 { 00107 return Definition(); 00108 }
G4AntiOmegaMinus * G4AntiOmegaMinus::Definition | ( | ) | [static] |
Definition at line 53 of file G4AntiOmegaMinus.cc.
References G4ParticleTable::FindParticle(), G4ParticleDefinition::G4ParticleDefinition(), G4ParticleTable::GetParticleTable(), G4DecayTable::Insert(), ns, G4ParticleDefinition::SetDecayTable(), and G4ParticleDefinition::SetPDGMagneticMoment().
Referenced by AntiOmegaMinus(), and AntiOmegaMinusDefinition().
00054 { 00055 if (theInstance !=0) return theInstance; 00056 const G4String name = "anti_omega-"; 00057 // search in particle table 00058 G4ParticleTable* pTable = G4ParticleTable::GetParticleTable(); 00059 G4ParticleDefinition* anInstance = pTable->FindParticle(name); 00060 if (anInstance ==0) 00061 { 00062 // create particle 00063 // 00064 // Arguments for constructor are as follows 00065 // name mass width charge 00066 // 2*spin parity C-conjugation 00067 // 2*Isospin 2*Isospin3 G-parity 00068 // type lepton number baryon number PDG encoding 00069 // stable lifetime decay table 00070 // shortlived subType anti_encoding 00071 00072 anInstance = new G4ParticleDefinition( 00073 name, 1.67245*GeV, 8.07e-12*MeV, eplus, 00074 3, +1, 0, 00075 0, 0, 0, 00076 "baryon", 0, -1, -3334, 00077 false, 0.0821*ns, NULL, 00078 false, "omega"); 00079 00080 // Magnetic Moment 00081 G4double mN = eplus*hbar_Planck/2./(proton_mass_c2 /c_squared); 00082 anInstance->SetPDGMagneticMoment( -2.02 * mN); 00083 00084 //create Decay Table 00085 G4DecayTable* table = new G4DecayTable(); 00086 00087 // create decay channels 00088 G4VDecayChannel** mode = new G4VDecayChannel*[3]; 00089 // anti_omega- -> anti_lambda + kaon+ 00090 mode[0] = new G4PhaseSpaceDecayChannel("anti_omega-",0.678,2,"anti_lambda","kaon+"); 00091 // anti_omega- -> anti_xi0 + pi+ 00092 mode[1] = new G4PhaseSpaceDecayChannel("anti_omega-",0.236,2,"anti_xi0","pi+"); 00093 // anti_omega- -> anti_xi- + pi0 00094 mode[2] = new G4PhaseSpaceDecayChannel("anti_omega-",0.086,2,"anti_xi-","pi0"); 00095 00096 for (G4int index=0; index <3; index++ ) table->Insert(mode[index]); 00097 delete [] mode; 00098 00099 anInstance->SetDecayTable(table); 00100 } 00101 theInstance = reinterpret_cast<G4AntiOmegaMinus*>(anInstance); 00102 return theInstance; 00103 }