source: trunk/source/g3tog4/src/G3PartTable.cc@ 1315

Last change on this file since 1315 was 1228, checked in by garnier, 16 years ago

update geant4.9.3 tag

File size: 3.1 KB
Line 
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: G3PartTable.cc,v 1.14 2006/06/29 18:13:10 gunter Exp $
28// GEANT4 tag $Name: geant4-09-03 $
29//
30
31#include "G4Types.hh"
32#include <sstream>
33#include <iomanip>
34#include "G3PartTable.hh"
35
36typedef std::map<G4String, G4ParticleDefinition*, std::less<G4String> >
37::iterator PTDiterator;
38
39G3PartTable::G3PartTable(){
40}
41
42G3PartTable::~G3PartTable(){
43 if (PTD.size()>0){
44 // G4cout << "Deleting PTD" << G4endl;
45 for (PTDiterator i=PTD.begin(); i != PTD.end(); i++) {
46 delete (*i).second;
47 }
48 PTD.clear();
49 }
50}
51
52G4ParticleDefinition*
53G3PartTable::Get(G4int partid){
54 G4String ShashID; // static
55 HashID(partid, ShashID);
56 PTDiterator i = PTD.find(ShashID);
57 return (*i).second;
58}
59
60void
61G3PartTable::Put(G4int partid, G4ParticleDefinition *partpt){
62 G4String ShashID; // static
63 HashID(partid, ShashID);
64 PTD[ShashID]=partpt;
65}
66
67void
68G3PartTable::HashID(G4int partid, G4String& theHashID){
69 std::ostringstream ostr;
70 ostr << "Part" << partid << std::ends;
71 theHashID = ostr.str();
72}
73
74void
75G3PartTable::HashID(G4int partid, G4String* theHashID){
76 HashID(partid, *theHashID);
77}
78
79void
80G3PartTable::PrintAll(){
81 if (PTD.size()>0){
82 G4int count=0;
83 G4cout << "Dump of PTD - " << PTD.size() << " entries: " << G4endl;
84 for (PTDiterator i=PTD.begin(); i != PTD.end(); i++) {
85 count++;
86 G4ParticleDefinition* aPTD = (*i).second;
87 G4cout << "PTD entry " << std::setw(3) << count << " particle name: "
88 << aPTD->GetParticleName() << G4endl;
89 }
90 }
91}
92
93
94
95
96
Note: See TracBrowser for help on using the repository browser.