Geant4  10.02.p03
G4ParticlePropertyData Class Reference

#include <G4ParticlePropertyData.hh>

Collaboration diagram for G4ParticlePropertyData:

Public Member Functions

 G4ParticlePropertyData (const G4String &particleName="")
 
 G4ParticlePropertyData (const G4ParticlePropertyData &right)
 
virtual ~G4ParticlePropertyData ()
 
G4ParticlePropertyDataoperator= (const G4ParticlePropertyData &right)
 
G4int operator== (const G4ParticlePropertyData &right) const
 
G4int operator!= (const G4ParticlePropertyData &right) const
 
const G4StringGetParticleName () const
 
G4double GetPDGMass () const
 
G4double GetPDGWidth () const
 
G4double GetPDGCharge () const
 
G4int GetPDGiSpin () const
 
G4int GetPDGiParity () const
 
G4int GetPDGiConjugation () const
 
G4int GetPDGiIsospin () const
 
G4int GetPDGiIsospin3 () const
 
G4int GetPDGiGParity () const
 
G4double GetPDGMagneticMoment () const
 
G4int GetLeptonNumber () const
 
G4int GetBaryonNumber () const
 
G4int GetPDGEncoding () const
 
G4int GetAntiPDGEncoding () const
 
G4int GetQuarkContent (G4int flavor) const
 
G4int GetAntiQuarkContent (G4int flavor) const
 
G4double GetPDGLifeTime () const
 
void SetPDGMass (G4double newMass)
 
void SetPDGWidth (G4double newWidth)
 
void SetPDGCharge (G4double newCharge)
 
void SetPDGiSpin (G4int newSpin)
 
void SetPDGiParity (G4int newParity)
 
void SetPDGiConjugation (G4int newConjugation)
 
void SetPDGiIsospin (G4int newIsospin)
 
void SetPDGiIsospin3 (G4int newIsospin3)
 
void SetPDGiGParity (G4int newGParity)
 
void SetPDGMagneticMoment (G4double mageticMoment)
 
void SetLeptonNumber (G4int newLeptonNumber)
 
void SetBaryonNumber (G4int newBaryonNumber)
 
void SetPDGEncoding (G4int newEncoding)
 
void SetAntiPDGEncoding (G4int newAntiEncoding)
 
void SetQuarkContent (G4int flavor, G4int newContent)
 
void SetAntiQuarkContent (G4int flavor, G4int newContent)
 
void SetPDGLifeTime (G4double newLifeTime)
 
void Print () const
 
void SetVerboseLevel (G4int value)
 
G4int GetVerboseLevel () const
 

Private Types

enum  { NumberOfQuarkFlavor = 6 }
 

Private Attributes

G4String theParticleName
 
G4double thePDGMass
 
G4double thePDGWidth
 
G4double thePDGCharge
 
G4int thePDGiSpin
 
G4int thePDGiParity
 
G4int thePDGiConjugation
 
G4int thePDGiGParity
 
G4int thePDGiIsospin
 
G4int thePDGiIsospin3
 
G4double thePDGMagneticMoment
 
G4int theLeptonNumber
 
G4int theBaryonNumber
 
G4int thePDGEncoding
 
G4int theAntiPDGEncoding
 
G4double thePDGLifeTime
 
G4int theQuarkContent [NumberOfQuarkFlavor]
 
G4int theAntiQuarkContent [NumberOfQuarkFlavor]
 
G4bool fPDGMassModified
 
G4bool fPDGWidthModified
 
G4bool fPDGChargeModified
 
G4bool fPDGiSpinModified
 
G4bool fPDGiParityModified
 
G4bool fPDGiConjugationModified
 
G4bool fPDGiGParityModified
 
G4bool fPDGiIsospinModified
 
G4bool fPDGiIsospin3Modified
 
G4bool fPDGIsospinModified
 
G4bool fPDGIsospin3Modified
 
G4bool fPDGMagneticMomentModified
 
G4bool fLeptonNumberModified
 
G4bool fBaryonNumberModified
 
G4bool fPDGEncodingModified
 
G4bool fAntiPDGEncodingModified
 
G4bool fQuarkContentModified
 
G4bool fAntiQuarkContentModified
 
G4bool fPDGLifeTimeModified
 
G4int verboseLevel
 

Friends

class G4ParticlePropertyTable
 

Detailed Description

Definition at line 46 of file G4ParticlePropertyData.hh.

Member Enumeration Documentation

◆ anonymous enum

anonymous enum
private
Enumerator
NumberOfQuarkFlavor 

Definition at line 195 of file G4ParticlePropertyData.hh.

Constructor & Destructor Documentation

◆ G4ParticlePropertyData() [1/2]

G4ParticlePropertyData::G4ParticlePropertyData ( const G4String particleName = "")

Definition at line 49 of file G4ParticlePropertyData.cc.

49  :
50  theParticleName(particleName),
51  thePDGMass(0.0),
52  thePDGWidth(0.0),
53  thePDGCharge(0.0),
54  thePDGiSpin(0),
55  thePDGiParity(0),
57  thePDGiGParity(0),
58  thePDGiIsospin(0),
59  thePDGiIsospin3(0),
61  theLeptonNumber(0),
62  theBaryonNumber(0),
63  thePDGEncoding(0),
65  thePDGLifeTime(-1.0),
66  fPDGMassModified(false),
67  fPDGWidthModified(false),
68  fPDGChargeModified(false),
69  fPDGiSpinModified(false),
70  fPDGiParityModified(false),
72  fPDGiGParityModified(false),
73  fPDGiIsospinModified(false),
74  fPDGiIsospin3Modified(false),
75  fPDGIsospinModified(false),
76  fPDGIsospin3Modified(false),
78  fLeptonNumberModified(false),
79  fBaryonNumberModified(false),
80  fPDGEncodingModified(false),
82  fQuarkContentModified(false),
84  fPDGLifeTimeModified(false),
85  verboseLevel(1)
86 {
87  for (size_t flv=0; flv<NumberOfQuarkFlavor; ++flv) {
88  theQuarkContent[flv] =0;
89  theAntiQuarkContent[flv]=0;
90  }
91 }
G4int theAntiQuarkContent[NumberOfQuarkFlavor]
G4int theQuarkContent[NumberOfQuarkFlavor]

◆ G4ParticlePropertyData() [2/2]

G4ParticlePropertyData::G4ParticlePropertyData ( const G4ParticlePropertyData right)

Definition at line 95 of file G4ParticlePropertyData.cc.

95  :
96  fPDGMassModified(false),
97  fPDGWidthModified(false),
98  fPDGChargeModified(false),
99  fPDGiSpinModified(false),
100  fPDGiParityModified(false),
102  fPDGiGParityModified(false),
103  fPDGiIsospinModified(false),
104  fPDGiIsospin3Modified(false),
105  fPDGIsospinModified(false),
106  fPDGIsospin3Modified(false),
108  fLeptonNumberModified(false),
109  fBaryonNumberModified(false),
110  fPDGEncodingModified(false),
112  fQuarkContentModified(false),
114  fPDGLifeTimeModified(false)
115 {
116  verboseLevel = right.verboseLevel;
118  thePDGMass = right.thePDGMass;
119  thePDGWidth = right. thePDGWidth;
120  thePDGCharge = right.thePDGCharge;
121  thePDGiSpin = right.thePDGiSpin;
132  for (size_t flv=0; flv<NumberOfQuarkFlavor; ++flv) {
133  theQuarkContent[flv] = right.theQuarkContent[flv];
134  theAntiQuarkContent[flv]= right.theAntiQuarkContent[flv];
135  }
137 }
G4int theAntiQuarkContent[NumberOfQuarkFlavor]
G4int theQuarkContent[NumberOfQuarkFlavor]

◆ ~G4ParticlePropertyData()

G4ParticlePropertyData::~G4ParticlePropertyData ( )
virtual

Definition at line 44 of file G4ParticlePropertyData.cc.

45 {
46 }

Member Function Documentation

◆ GetAntiPDGEncoding()

G4int G4ParticlePropertyData::GetAntiPDGEncoding ( ) const
inline

Definition at line 93 of file G4ParticlePropertyData.hh.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ GetAntiQuarkContent()

G4int G4ParticlePropertyData::GetAntiQuarkContent ( G4int  flavor) const
Here is the caller graph for this function:

◆ GetBaryonNumber()

G4int G4ParticlePropertyData::GetBaryonNumber ( ) const
inline

Definition at line 90 of file G4ParticlePropertyData.hh.

◆ GetLeptonNumber()

G4int G4ParticlePropertyData::GetLeptonNumber ( ) const
inline

Definition at line 89 of file G4ParticlePropertyData.hh.

◆ GetParticleName()

const G4String& G4ParticlePropertyData::GetParticleName ( ) const
inline

Definition at line 74 of file G4ParticlePropertyData.hh.

◆ GetPDGCharge()

G4double G4ParticlePropertyData::GetPDGCharge ( ) const
inline

Definition at line 78 of file G4ParticlePropertyData.hh.

Here is the caller graph for this function:

◆ GetPDGEncoding()

G4int G4ParticlePropertyData::GetPDGEncoding ( ) const
inline

Definition at line 92 of file G4ParticlePropertyData.hh.

Here is the caller graph for this function:

◆ GetPDGiConjugation()

G4int G4ParticlePropertyData::GetPDGiConjugation ( ) const
inline

Definition at line 82 of file G4ParticlePropertyData.hh.

Here is the caller graph for this function:

◆ GetPDGiGParity()

G4int G4ParticlePropertyData::GetPDGiGParity ( ) const
inline

Definition at line 85 of file G4ParticlePropertyData.hh.

◆ GetPDGiIsospin()

G4int G4ParticlePropertyData::GetPDGiIsospin ( ) const
inline

Definition at line 83 of file G4ParticlePropertyData.hh.

Here is the caller graph for this function:

◆ GetPDGiIsospin3()

G4int G4ParticlePropertyData::GetPDGiIsospin3 ( ) const
inline

Definition at line 84 of file G4ParticlePropertyData.hh.

◆ GetPDGiParity()

G4int G4ParticlePropertyData::GetPDGiParity ( ) const
inline

Definition at line 81 of file G4ParticlePropertyData.hh.

Here is the caller graph for this function:

◆ GetPDGiSpin()

G4int G4ParticlePropertyData::GetPDGiSpin ( ) const
inline

Definition at line 80 of file G4ParticlePropertyData.hh.

Here is the caller graph for this function:

◆ GetPDGLifeTime()

G4double G4ParticlePropertyData::GetPDGLifeTime ( ) const
inline

Definition at line 101 of file G4ParticlePropertyData.hh.

101 { return thePDGLifeTime; }
Here is the call graph for this function:
Here is the caller graph for this function:

◆ GetPDGMagneticMoment()

G4double G4ParticlePropertyData::GetPDGMagneticMoment ( ) const
inline

Definition at line 87 of file G4ParticlePropertyData.hh.

◆ GetPDGMass()

G4double G4ParticlePropertyData::GetPDGMass ( ) const
inline

Definition at line 76 of file G4ParticlePropertyData.hh.

76 { return thePDGMass; }
Here is the caller graph for this function:

◆ GetPDGWidth()

G4double G4ParticlePropertyData::GetPDGWidth ( ) const
inline

Definition at line 77 of file G4ParticlePropertyData.hh.

77 { return thePDGWidth; }
Here is the caller graph for this function:

◆ GetQuarkContent()

G4int G4ParticlePropertyData::GetQuarkContent ( G4int  flavor) const
Here is the caller graph for this function:

◆ GetVerboseLevel()

G4int G4ParticlePropertyData::GetVerboseLevel ( ) const
Here is the caller graph for this function:

◆ operator!=()

G4int G4ParticlePropertyData::operator!= ( const G4ParticlePropertyData right) const

Definition at line 194 of file G4ParticlePropertyData.cc.

195 {
196  return (this != &right);
197 }

◆ operator=()

G4ParticlePropertyData & G4ParticlePropertyData::operator= ( const G4ParticlePropertyData right)

Definition at line 140 of file G4ParticlePropertyData.cc.

141 {
142  if (this != &right) {
143  verboseLevel = right.verboseLevel;
145  thePDGMass = right.thePDGMass;
146  thePDGWidth = right. thePDGWidth;
147  thePDGCharge = right.thePDGCharge;
148  thePDGiSpin = right.thePDGiSpin;
159  for (size_t flv=0; flv<NumberOfQuarkFlavor; ++flv) {
160  theQuarkContent[flv] = right.theQuarkContent[flv];
161  theAntiQuarkContent[flv]= right.theAntiQuarkContent[flv];
162  }
164  fPDGMassModified = true;
165  fPDGWidthModified = true;
166  fPDGChargeModified = true;
167  fPDGiSpinModified = true;
168  fPDGiParityModified = true;
169  fPDGiConjugationModified = true;
170  fPDGiGParityModified = true;
171  fPDGiIsospinModified = true;
172  fPDGiIsospin3Modified = true;
173  fPDGIsospinModified = true;
174  fPDGIsospin3Modified = true;
176  fLeptonNumberModified = true;
177  fBaryonNumberModified = true;
178  fPDGEncodingModified = true;
180  fQuarkContentModified = true;
182  fPDGLifeTimeModified = true;
183  }
184  return *this;
185 }
G4int theAntiQuarkContent[NumberOfQuarkFlavor]
G4int theQuarkContent[NumberOfQuarkFlavor]

◆ operator==()

G4int G4ParticlePropertyData::operator== ( const G4ParticlePropertyData right) const

Definition at line 188 of file G4ParticlePropertyData.cc.

189 {
190  return (this == &right);
191 }

◆ Print()

void G4ParticlePropertyData::Print ( void  ) const

Definition at line 200 of file G4ParticlePropertyData.cc.

201 {
202 #ifdef G4VERBOSE
203  G4cout << " Particle Name : " << theParticleName << G4endl;
204  G4cout << " PDG particle code : " << thePDGEncoding;
205  G4cout << " [PDG anti-particle code: " << this->GetAntiPDGEncoding() << "]"<< G4endl;
206  G4cout << " Mass [GeV/c2] : " << thePDGMass/GeV ;
207  G4cout << " Width : " << thePDGWidth/GeV << G4endl;
208  G4cout << " Lifetime [nsec] : " << thePDGLifeTime/ns << G4endl;
209  G4cout << " Charge [e]: " << thePDGCharge/eplus << G4endl;
210  G4cout << " Spin : " << thePDGiSpin << "/2" << G4endl;
211  G4cout << " Parity : " << thePDGiParity << G4endl;
212  G4cout << " Charge conjugation : " << thePDGiConjugation << G4endl;
213  G4cout << " Isospin : (I,Iz): (" << thePDGiIsospin <<"/2";
214  G4cout << " , " << thePDGiIsospin3 << "/2 ) " << G4endl;
215  G4cout << " GParity : " << thePDGiGParity << G4endl;
216  G4cout << " MagneticMoment [MeV/T]: ";
217  if (thePDGMagneticMoment != 0.0) {
219  }else {
220  G4cout << "not defined " << G4endl;
221  }
222  G4cout << " Lepton number : " << theLeptonNumber;
223  G4cout << " Baryon number : " << theBaryonNumber << G4endl;
224  G4cout << " Quark contents (d,u,s,c,b,t) : " << theQuarkContent[0];
225  G4cout << ", " << theQuarkContent[1];
226  G4cout << ", " << theQuarkContent[2];
227  G4cout << ", " << theQuarkContent[3];
228  G4cout << ", " << theQuarkContent[4];
229  G4cout << ", " << theQuarkContent[5] << G4endl;
230  G4cout << " AntiQuark contents : " << theAntiQuarkContent[0];
231  G4cout << ", " << theAntiQuarkContent[1];
232  G4cout << ", " << theAntiQuarkContent[2];
233  G4cout << ", " << theAntiQuarkContent[3];
234  G4cout << ", " << theAntiQuarkContent[4];
235  G4cout << ", " << theAntiQuarkContent[5] << G4endl;
236 #endif
237 }
static const double MeV
Definition: G4SIunits.hh:211
G4int theAntiQuarkContent[NumberOfQuarkFlavor]
G4GLOB_DLL std::ostream G4cout
static const double GeV
Definition: G4SIunits.hh:214
#define G4endl
Definition: G4ios.hh:61
G4int theQuarkContent[NumberOfQuarkFlavor]
static const double tesla
Definition: G4SIunits.hh:265
static const double eplus
Definition: G4SIunits.hh:196
#define ns
Definition: xmlparse.cc:614
Here is the call graph for this function:
Here is the caller graph for this function:

◆ SetAntiPDGEncoding()

void G4ParticlePropertyData::SetAntiPDGEncoding ( G4int  newAntiEncoding)
Here is the caller graph for this function:

◆ SetAntiQuarkContent()

void G4ParticlePropertyData::SetAntiQuarkContent ( G4int  flavor,
G4int  newContent 
)
Here is the caller graph for this function:

◆ SetBaryonNumber()

void G4ParticlePropertyData::SetBaryonNumber ( G4int  newBaryonNumber)
Here is the caller graph for this function:

◆ SetLeptonNumber()

void G4ParticlePropertyData::SetLeptonNumber ( G4int  newLeptonNumber)
Here is the caller graph for this function:

◆ SetPDGCharge()

void G4ParticlePropertyData::SetPDGCharge ( G4double  newCharge)
Here is the caller graph for this function:

◆ SetPDGEncoding()

void G4ParticlePropertyData::SetPDGEncoding ( G4int  newEncoding)
Here is the caller graph for this function:

◆ SetPDGiConjugation()

void G4ParticlePropertyData::SetPDGiConjugation ( G4int  newConjugation)
Here is the caller graph for this function:

◆ SetPDGiGParity()

void G4ParticlePropertyData::SetPDGiGParity ( G4int  newGParity)
Here is the caller graph for this function:

◆ SetPDGiIsospin()

void G4ParticlePropertyData::SetPDGiIsospin ( G4int  newIsospin)
Here is the caller graph for this function:

◆ SetPDGiIsospin3()

void G4ParticlePropertyData::SetPDGiIsospin3 ( G4int  newIsospin3)
Here is the caller graph for this function:

◆ SetPDGiParity()

void G4ParticlePropertyData::SetPDGiParity ( G4int  newParity)
Here is the caller graph for this function:

◆ SetPDGiSpin()

void G4ParticlePropertyData::SetPDGiSpin ( G4int  newSpin)
Here is the caller graph for this function:

◆ SetPDGLifeTime()

void G4ParticlePropertyData::SetPDGLifeTime ( G4double  newLifeTime)
Here is the caller graph for this function:

◆ SetPDGMagneticMoment()

void G4ParticlePropertyData::SetPDGMagneticMoment ( G4double  mageticMoment)
Here is the caller graph for this function:

◆ SetPDGMass()

void G4ParticlePropertyData::SetPDGMass ( G4double  newMass)
Here is the caller graph for this function:

◆ SetPDGWidth()

void G4ParticlePropertyData::SetPDGWidth ( G4double  newWidth)
Here is the caller graph for this function:

◆ SetQuarkContent()

void G4ParticlePropertyData::SetQuarkContent ( G4int  flavor,
G4int  newContent 
)
Here is the caller graph for this function:

◆ SetVerboseLevel()

void G4ParticlePropertyData::SetVerboseLevel ( G4int  value)
Here is the caller graph for this function:

Friends And Related Function Documentation

◆ G4ParticlePropertyTable

friend class G4ParticlePropertyTable
friend

Definition at line 54 of file G4ParticlePropertyData.hh.

Member Data Documentation

◆ fAntiPDGEncodingModified

G4bool G4ParticlePropertyData::fAntiPDGEncodingModified
private

Definition at line 216 of file G4ParticlePropertyData.hh.

◆ fAntiQuarkContentModified

G4bool G4ParticlePropertyData::fAntiQuarkContentModified
private

Definition at line 218 of file G4ParticlePropertyData.hh.

◆ fBaryonNumberModified

G4bool G4ParticlePropertyData::fBaryonNumberModified
private

Definition at line 214 of file G4ParticlePropertyData.hh.

◆ fLeptonNumberModified

G4bool G4ParticlePropertyData::fLeptonNumberModified
private

Definition at line 213 of file G4ParticlePropertyData.hh.

◆ fPDGChargeModified

G4bool G4ParticlePropertyData::fPDGChargeModified
private

Definition at line 203 of file G4ParticlePropertyData.hh.

◆ fPDGEncodingModified

G4bool G4ParticlePropertyData::fPDGEncodingModified
private

Definition at line 215 of file G4ParticlePropertyData.hh.

◆ fPDGiConjugationModified

G4bool G4ParticlePropertyData::fPDGiConjugationModified
private

Definition at line 206 of file G4ParticlePropertyData.hh.

◆ fPDGiGParityModified

G4bool G4ParticlePropertyData::fPDGiGParityModified
private

Definition at line 207 of file G4ParticlePropertyData.hh.

◆ fPDGiIsospin3Modified

G4bool G4ParticlePropertyData::fPDGiIsospin3Modified
private

Definition at line 209 of file G4ParticlePropertyData.hh.

◆ fPDGiIsospinModified

G4bool G4ParticlePropertyData::fPDGiIsospinModified
private

Definition at line 208 of file G4ParticlePropertyData.hh.

◆ fPDGiParityModified

G4bool G4ParticlePropertyData::fPDGiParityModified
private

Definition at line 205 of file G4ParticlePropertyData.hh.

◆ fPDGIsospin3Modified

G4bool G4ParticlePropertyData::fPDGIsospin3Modified
private

Definition at line 211 of file G4ParticlePropertyData.hh.

◆ fPDGIsospinModified

G4bool G4ParticlePropertyData::fPDGIsospinModified
private

Definition at line 210 of file G4ParticlePropertyData.hh.

◆ fPDGiSpinModified

G4bool G4ParticlePropertyData::fPDGiSpinModified
private

Definition at line 204 of file G4ParticlePropertyData.hh.

◆ fPDGLifeTimeModified

G4bool G4ParticlePropertyData::fPDGLifeTimeModified
private

Definition at line 219 of file G4ParticlePropertyData.hh.

◆ fPDGMagneticMomentModified

G4bool G4ParticlePropertyData::fPDGMagneticMomentModified
private

Definition at line 212 of file G4ParticlePropertyData.hh.

◆ fPDGMassModified

G4bool G4ParticlePropertyData::fPDGMassModified
private

Definition at line 201 of file G4ParticlePropertyData.hh.

◆ fPDGWidthModified

G4bool G4ParticlePropertyData::fPDGWidthModified
private

Definition at line 202 of file G4ParticlePropertyData.hh.

◆ fQuarkContentModified

G4bool G4ParticlePropertyData::fQuarkContentModified
private

Definition at line 217 of file G4ParticlePropertyData.hh.

◆ theAntiPDGEncoding

G4int G4ParticlePropertyData::theAntiPDGEncoding
private

Definition at line 189 of file G4ParticlePropertyData.hh.

◆ theAntiQuarkContent

G4int G4ParticlePropertyData::theAntiQuarkContent[NumberOfQuarkFlavor]
private

Definition at line 197 of file G4ParticlePropertyData.hh.

◆ theBaryonNumber

G4int G4ParticlePropertyData::theBaryonNumber
private

Definition at line 183 of file G4ParticlePropertyData.hh.

◆ theLeptonNumber

G4int G4ParticlePropertyData::theLeptonNumber
private

Definition at line 180 of file G4ParticlePropertyData.hh.

◆ theParticleName

G4String G4ParticlePropertyData::theParticleName
private

Definition at line 141 of file G4ParticlePropertyData.hh.

◆ thePDGCharge

G4double G4ParticlePropertyData::thePDGCharge
private

Definition at line 152 of file G4ParticlePropertyData.hh.

◆ thePDGEncoding

G4int G4ParticlePropertyData::thePDGEncoding
private

Definition at line 186 of file G4ParticlePropertyData.hh.

◆ thePDGiConjugation

G4int G4ParticlePropertyData::thePDGiConjugation
private

Definition at line 167 of file G4ParticlePropertyData.hh.

◆ thePDGiGParity

G4int G4ParticlePropertyData::thePDGiGParity
private

Definition at line 170 of file G4ParticlePropertyData.hh.

◆ thePDGiIsospin

G4int G4ParticlePropertyData::thePDGiIsospin
private

Definition at line 173 of file G4ParticlePropertyData.hh.

◆ thePDGiIsospin3

G4int G4ParticlePropertyData::thePDGiIsospin3
private

Definition at line 174 of file G4ParticlePropertyData.hh.

◆ thePDGiParity

G4int G4ParticlePropertyData::thePDGiParity
private

Definition at line 163 of file G4ParticlePropertyData.hh.

◆ thePDGiSpin

G4int G4ParticlePropertyData::thePDGiSpin
private

Definition at line 159 of file G4ParticlePropertyData.hh.

◆ thePDGLifeTime

G4double G4ParticlePropertyData::thePDGLifeTime
private

Definition at line 192 of file G4ParticlePropertyData.hh.

◆ thePDGMagneticMoment

G4double G4ParticlePropertyData::thePDGMagneticMoment
private

Definition at line 177 of file G4ParticlePropertyData.hh.

◆ thePDGMass

G4double G4ParticlePropertyData::thePDGMass
private

Definition at line 144 of file G4ParticlePropertyData.hh.

◆ thePDGWidth

G4double G4ParticlePropertyData::thePDGWidth
private

Definition at line 147 of file G4ParticlePropertyData.hh.

◆ theQuarkContent

G4int G4ParticlePropertyData::theQuarkContent[NumberOfQuarkFlavor]
private

Definition at line 196 of file G4ParticlePropertyData.hh.

◆ verboseLevel

G4int G4ParticlePropertyData::verboseLevel
private

Definition at line 222 of file G4ParticlePropertyData.hh.


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