2 // ********************************************************************
3 // * License and Disclaimer *
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. *
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. *
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 // ********************************************************************
27 // $Id: G4ParticleTable.icc 73711 2013-09-09 09:57:29Z gcosmo $
30 // ------------------------------------------------------------
31 // implement new version for using STL map instaed of RW PtrHashedDictionary
32 // 28 ct., 99 H.Kurashige
36 void G4ParticleTable::SetVerboseLevel(G4int value )
42 G4int G4ParticleTable::GetVerboseLevel() const
49 const G4String& G4ParticleTable::GetKey(const G4ParticleDefinition *particle) const
51 return particle->GetParticleName();
55 G4ParticleDefinition* G4ParticleTable::FindAntiParticle(G4int aPDGEncoding)
57 return FindParticle( FindParticle(aPDGEncoding)->GetAntiPDGEncoding() );
61 G4ParticleDefinition* G4ParticleTable::FindAntiParticle(const G4String& particle_name)
63 G4int pcode = FindParticle(particle_name) -> GetAntiPDGEncoding();
64 return FindParticle(pcode);
68 G4ParticleDefinition* G4ParticleTable::FindAntiParticle(const G4ParticleDefinition *particle)
70 G4int pcode = particle -> GetAntiPDGEncoding();
71 return FindParticle(pcode);
75 G4bool G4ParticleTable::contains(const G4ParticleDefinition *particle) const
77 return contains(GetKey(particle));
81 void G4ParticleTable::SetReadiness(G4bool val)
87 G4bool G4ParticleTable::GetReadiness() const
93 G4ParticleDefinition* G4ParticleTable::GetGenericIon() const
99 void G4ParticleTable::SetGenericIon(G4ParticleDefinition* gi)