Geant4  10.03.p01
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
G4PionZero Class Reference

#include <G4PionZero.hh>

Inheritance diagram for G4PionZero:
Collaboration diagram for G4PionZero:

Static Public Member Functions

static G4PionZeroDefinition ()
 
static G4PionZeroPionZeroDefinition ()
 
static G4PionZeroPionZero ()
 
- Static Public Member Functions inherited from G4ParticleDefinition
static const G4PDefManagerGetSubInstanceManager ()
 

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)
 
G4double GetIonLifeTime () const
 
G4DecayTableGetDecayTable () const
 
void SetDecayTable (G4DecayTable *aDecayTable)
 
G4ProcessManagerGetProcessManager () const
 
void SetProcessManager (G4ProcessManager *aProcessManager)
 
G4ParticleTableGetParticleTable () const
 
G4int GetAtomicNumber () const
 
G4int GetAtomicMass () const
 
void DumpTable () const
 
void SetVerboseLevel (G4int value)
 
G4int GetVerboseLevel () const
 
void SetApplyCutsFlag (G4bool)
 
G4bool GetApplyCutsFlag () const
 
G4bool IsGeneralIon () const
 
G4int operator== (const G4ParticleDefinition &right) const
 
G4int operator!= (const G4ParticleDefinition &right) const
 
G4ProcessManagerGetMasterProcessManager () const
 
void SetMasterProcessManager (G4ProcessManager *aNewPM)
 
G4int GetInstanceID () const
 
void SetParticleDefinitionID (G4int id=-1)
 
G4int GetParticleDefinitionID () 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]
 
G4bool isGeneralIon
 

Detailed Description

Definition at line 50 of file G4PionZero.hh.

Member Function Documentation

G4PionZero * G4PionZero::Definition ( )
static

Definition at line 55 of file G4PionZero.cc.

56 {
57  if (theInstance !=0) return theInstance;
58  const G4String name = "pi0";
59  // search in particle table]
61  G4ParticleDefinition* anInstance = pTable->FindParticle(name);
62  if (anInstance ==0)
63  {
64  // create particle
65  //
66  // Arguments for constructor are as follows
67  // name mass width charge
68  // 2*spin parity C-conjugation
69  // 2*Isospin 2*Isospin3 G-parity
70  // type lepton number baryon number PDG encoding
71  // stable lifetime decay table
72  // shortlived subType anti_encoding
73 
74  anInstance = new G4ParticleDefinition(
75  name, 0.1349766*GeV, 7.73e-06*MeV, 0.0,
76  0, -1, +1,
77  2, 0, -1,
78  "meson", 0, 0, 111,
79  false, 8.52e-8*ns, NULL,
80  false, "pi", 111);
81 
82  // Life time is given from width
83  anInstance->SetPDGLifeTime( hbar_Planck/(anInstance->GetPDGWidth()) );
84 
85  //create Decay Table
86  G4DecayTable* table = new G4DecayTable();
87 
88  // create a decay channel
89  G4VDecayChannel* mode;
90  // pi0 -> gamma + gamma
91  mode = new G4PhaseSpaceDecayChannel("pi0",0.988,2,"gamma","gamma");
92  table->Insert(mode);
93  // pi0 -> gamma + e+ + e-
94  mode = new G4DalitzDecayChannel("pi0",0.012,"e-","e+");
95  table->Insert(mode);
96 
97  anInstance->SetDecayTable(table);
98  }
99  theInstance = reinterpret_cast<G4PionZero*>(anInstance);
100  return theInstance;
101 }
void SetDecayTable(G4DecayTable *aDecayTable)
const XML_Char * name
Definition: expat.h:151
G4ParticleDefinition * FindParticle(G4int PDGEncoding)
void SetPDGLifeTime(G4double aLifeTime)
G4double GetPDGWidth() const
void Insert(G4VDecayChannel *aChannel)
Definition: G4DecayTable.cc:60
static G4ParticleTable * GetParticleTable()
static constexpr double GeV
Definition: G4SIunits.hh:217
static constexpr double MeV
Definition: G4SIunits.hh:214
static constexpr double hbar_Planck
#define ns
Definition: xmlparse.cc:614

Here is the call graph for this function:

Here is the caller graph for this function:

G4PionZero * G4PionZero::PionZero ( )
static

Definition at line 108 of file G4PionZero.cc.

109 {
110  return Definition();
111 }
static G4PionZero * Definition()
Definition: G4PionZero.cc:55

Here is the call graph for this function:

Here is the caller graph for this function:

G4PionZero * G4PionZero::PionZeroDefinition ( )
static

Definition at line 103 of file G4PionZero.cc.

104 {
105  return Definition();
106 }
static G4PionZero * Definition()
Definition: G4PionZero.cc:55

Here is the call graph for this function:

Here is the caller graph for this function:


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