G4AntiProton Class Reference

#include <G4AntiProton.hh>

Inheritance diagram for G4AntiProton:

G4ParticleDefinition

Static Public Member Functions

static G4AntiProtonDefinition ()
static G4AntiProtonAntiProtonDefinition ()
static G4AntiProtonAntiProton ()

Detailed Description

Definition at line 50 of file G4AntiProton.hh.


Member Function Documentation

G4AntiProton * G4AntiProton::AntiProton (  )  [static]

Definition at line 93 of file G4AntiProton.cc.

References Definition().

Referenced by G4hImpactIonisation::AlongStepDoIt(), G4LightMedia::AntiNeutronExchange(), G4LElastic::ApplyYourself(), G4QCaptureAtRest::AtRestDoIt(), G4ProtonAntiProtonAtRestChips::AtRestDoIt(), G4StoppingHadronBuilder::Build(), G4MiscLHEPBuilder::Build(), G4MiscBuilder::Build(), G4LHEPStoppingHadronBuilder::Build(), G4LHEPAntiBarionBuilder::Build(), G4AntiBarionBuilder::Build(), G4hImpactIonisation::BuildPhysicsTable(), G4hImpactIonisation::ComputeDEDX(), G4QAtomicPhysics::ConstructParticle(), G4EmStandardPhysics_option4::ConstructParticle(), G4EmStandardPhysics_option3::ConstructParticle(), G4EmStandardPhysics_option2::ConstructParticle(), G4EmStandardPhysics_option1::ConstructParticle(), G4EmStandardPhysics::ConstructParticle(), G4EmPenelopePhysics::ConstructParticle(), G4EmLowEPPhysics::ConstructParticle(), G4EmLivermorePolarizedPhysics::ConstructParticle(), G4EmLivermorePhysics::ConstructParticle(), HadronPhysicsQGSP_FTFP_BERT_95::ConstructProcess(), HadronPhysicsQGSP_BERT_95::ConstructProcess(), G4StoppingPhysics::ConstructProcess(), G4LHEPStoppingPhysics::ConstructProcess(), G4AntiNuclElastic::G4AntiNuclElastic(), G4BaryonSplitter::G4BaryonSplitter(), G4ChargeExchange::G4ChargeExchange(), G4ChargeExchangeProcess::G4ChargeExchangeProcess(), G4ComponentAntiNuclNuclearXS::G4ComponentAntiNuclNuclearXS(), G4ComponentGGHadronNucleusXsc::G4ComponentGGHadronNucleusXsc(), G4GlauberGribovCrossSection::G4GlauberGribovCrossSection(), G4HadronNucleonXsc::G4HadronNucleonXsc(), G4RPGInelastic::G4RPGInelastic(), G4QHadronInelasticDataSet::GetIsoCrossSection(), G4QHadronElasticDataSet::GetIsoCrossSection(), G4QInelastic::GetMeanFreePath(), G4QElastic::GetMeanFreePath(), G4QPDGToG4Particle::GetParticleDefinition(), G4RKPropagation::Init(), G4FTFModel::Init(), G4hIonisation::InitialiseEnergyLossProcess(), G4QInelastic::IsApplicable(), G4QElastic::IsApplicable(), G4QCaptureAtRest::IsApplicable(), G4QHadronInelasticDataSet::IsIsoApplicable(), G4QHadronElasticDataSet::IsIsoApplicable(), G4ChipsAntiBaryonInelasticXS::IsIsoApplicable(), G4ChipsAntiBaryonElasticXS::IsIsoApplicable(), G4QInelastic::PostStepDoIt(), G4QElastic::PostStepDoIt(), G4QDiffraction::PostStepDoIt(), G4QAtomicElectronScattering::PostStepDoIt(), G4ReactionDynamics::ProduceStrangeParticlePairs(), G4RPGStrangeProduction::ReactionStage(), G4RPGPionSuppression::ReactionStage(), and G4ReactionDynamics::SuppressChargedPions().

00094 {
00095   return Definition();
00096 }

G4AntiProton * G4AntiProton::AntiProtonDefinition (  )  [static]

Definition at line 88 of file G4AntiProton.cc.

References Definition().

Referenced by G4BaryonConstructor::ConstructNucleons(), G4QPDGToG4Particle::DefineAllParticles(), G4XPDGElastic::G4XPDGElastic(), G4AntiProtonField::GetField(), G4ProtonAntiProtonAtRestChips::IsApplicable(), and G4QAOLowEnergyLoss::IsInCharge().

00089 {
00090   return Definition();
00091 }

G4AntiProton * G4AntiProton::Definition (  )  [static]

Definition at line 51 of file G4AntiProton.cc.

References G4ParticleTable::FindParticle(), G4ParticleDefinition::G4ParticleDefinition(), G4ParticleTable::GetParticleTable(), and G4ParticleDefinition::SetPDGMagneticMoment().

Referenced by AntiProton(), AntiProtonDefinition(), G4HadronicAbsorptionFritiof::IsApplicable(), G4InuclElementaryParticle::makeDefinition(), and G4InuclElementaryParticle::type().

00052 {
00053   if (theInstance !=0) return theInstance;
00054   const G4String name = "anti_proton";
00055   // search in particle table]
00056   G4ParticleTable* pTable = G4ParticleTable::GetParticleTable();
00057   G4ParticleDefinition* anInstance = pTable->FindParticle(name);
00058   if (anInstance ==0)
00059   {
00060   // create particle
00061   //
00062   //    Arguments for constructor are as follows
00063   //               name             mass          width         charge
00064   //             2*spin           parity  C-conjugation
00065   //          2*Isospin       2*Isospin3       G-parity
00066   //               type    lepton number  baryon number   PDG encoding
00067   //             stable         lifetime    decay table
00068   //             shortlived      subType    anti_encoding
00069   // use constants in CLHEP
00070   //  static const double   proton_mass_c2 = 938.27231 * MeV;
00071 
00072    anInstance = new G4ParticleDefinition(
00073                  name,  proton_mass_c2,       0.0*MeV,  -1.0*eplus, 
00074                     1,              +1,             0,         
00075                     1,              -1,             0,             
00076              "baryon",               0,            -1,       -2212,
00077                  true,            -1.0,          NULL,
00078                 false,       "nucleon"
00079               );
00080     // Magnetic Moment
00081     G4double mN = eplus*hbar_Planck/2./(proton_mass_c2 /c_squared);
00082     anInstance->SetPDGMagneticMoment( -2.792847351 * mN);
00083   }
00084   theInstance = reinterpret_cast<G4AntiProton*>(anInstance);
00085   return theInstance;
00086 }


The documentation for this class was generated from the following files:
Generated on Mon May 27 17:51:27 2013 for Geant4 by  doxygen 1.4.7