Geant4-11
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
G4ParticleTable.icc
Go to the documentation of this file.
1//
2// ********************************************************************
3// * License and Disclaimer *
4// * *
5// * The Geant4 software is copyright of the Copyright Holders of *
6// * the Geant4 Collaboration. It is provided under the terms and *
7// * conditions of the Geant4 Software License, included in the file *
8// * LICENSE and available at http://cern.ch/geant4/license . These *
9// * include a list of copyright holders. *
10// * *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work make any representation or warranty, express or implied, *
14// * regarding this software system or assume any liability for its *
15// * use. Please see the license in the file LICENSE and URL above *
16// * for the full disclaimer and the limitation of liability. *
17// * *
18// * This code implementation is the result of the scientific and *
19// * technical work of the GEANT4 collaboration. *
20// * By using, copying, modifying or distributing the software (or *
21// * any work based on the software) you agree to acknowledge its *
22// * use in resulting scientific publications, and indicate your *
23// * acceptance of all terms of the Geant4 Software license. *
24// ********************************************************************
25//
26// G4ParticleTable inline methods implementation
27//
28// Author: H.Kurashige, 27 June 1996 - First implementation
29// --------------------------------------------------------------------
30
31inline
32void G4ParticleTable::SetVerboseLevel(G4int value )
33{
34 verboseLevel = value;
35}
36
37inline
38G4int G4ParticleTable::GetVerboseLevel() const
39{
40 return verboseLevel;
41}
42
43
44inline
45const G4String&
46G4ParticleTable::GetKey(const G4ParticleDefinition* particle) const
47{
48 return particle->GetParticleName();
49}
50
51inline
52G4ParticleDefinition* G4ParticleTable::FindAntiParticle(G4int aPDGEncoding)
53{
54 return FindParticle( FindParticle(aPDGEncoding)->GetAntiPDGEncoding() );
55}
56
57inline
58G4ParticleDefinition*
59G4ParticleTable::FindAntiParticle(const G4String& particle_name)
60{
61 G4int pcode = FindParticle(particle_name) -> GetAntiPDGEncoding();
62 return FindParticle(pcode);
63}
64
65inline
66G4ParticleDefinition*
67G4ParticleTable::FindAntiParticle(const G4ParticleDefinition* particle)
68{
69 G4int pcode = particle->GetAntiPDGEncoding();
70 return FindParticle(pcode);
71}
72
73inline
74G4bool G4ParticleTable::contains(const G4ParticleDefinition* particle) const
75{
76 return contains(GetKey(particle));
77}
78
79inline
80void G4ParticleTable::SetReadiness(G4bool val)
81{
82 readyToUse = val;
83}
84
85inline
86G4bool G4ParticleTable::GetReadiness() const
87{
88 return readyToUse;
89}
90
91inline
92G4ParticleDefinition* G4ParticleTable::GetGenericIon() const
93{
94 return genericIon;
95}
96
97inline
98void G4ParticleTable::SetGenericIon(G4ParticleDefinition* gi)
99{
100 genericIon = gi;
101}
102
103inline
104G4ParticleDefinition* G4ParticleTable::GetGenericMuonicAtom() const
105{
106 return genericMuonicAtom;
107}
108
109inline
110void G4ParticleTable::SetGenericMuonicAtom(G4ParticleDefinition* gma)
111{
112 genericMuonicAtom = gma;
113}
114
115inline
116const G4ParticleDefinition* G4ParticleTable::GetSelectedParticle() const
117{
118 return selectedParticle;
119}