Geant4  10.03
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 //
27 // $Id: G4ParticleTable.icc 73711 2013-09-09 09:57:29Z gcosmo $
28 //
29 //
30 // ------------------------------------------------------------
31 // implement new version for using STL map instaed of RW PtrHashedDictionary
32 // 28 ct., 99 H.Kurashige
33 
34 
35 inline
36  void G4ParticleTable::SetVerboseLevel(G4int value )
37 {
38  verboseLevel = value;
39 }
40 
41 inline
42  G4int G4ParticleTable::GetVerboseLevel() const
43 {
44  return verboseLevel;
45 }
46 
47 
48 inline
49  const G4String& G4ParticleTable::GetKey(const G4ParticleDefinition *particle) const
50 {
51  return particle->GetParticleName();
52 }
53 
54 inline
55  G4ParticleDefinition* G4ParticleTable::FindAntiParticle(G4int aPDGEncoding)
56 {
57  return FindParticle( FindParticle(aPDGEncoding)->GetAntiPDGEncoding() );
58 }
59 
60 inline
61  G4ParticleDefinition* G4ParticleTable::FindAntiParticle(const G4String& particle_name)
62 {
63  G4int pcode = FindParticle(particle_name) -> GetAntiPDGEncoding();
64  return FindParticle(pcode);
65 }
66 
67 inline
68  G4ParticleDefinition* G4ParticleTable::FindAntiParticle(const G4ParticleDefinition *particle)
69 {
70  G4int pcode = particle -> GetAntiPDGEncoding();
71  return FindParticle(pcode);
72 }
73 
74 inline
75  G4bool G4ParticleTable::contains(const G4ParticleDefinition *particle) const
76 {
77  return contains(GetKey(particle));
78 }
79 
80 inline
81  void G4ParticleTable::SetReadiness(G4bool val)
82 {
83  readyToUse = val;
84 }
85 
86 inline
87  G4bool G4ParticleTable::GetReadiness() const
88 {
89  return readyToUse;
90 }
91 
92 inline
93  G4ParticleDefinition* G4ParticleTable::GetGenericIon() const
94 {
95  return genericIon;
96 }
97 
98 inline
99  void G4ParticleTable::SetGenericIon(G4ParticleDefinition* gi)
100 {
101  genericIon = gi;
102 }