Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer << 3 // * DISCLAIMER * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th << 5 // * The following disclaimer summarizes all the specific disclaimers * 6 // * the Geant4 Collaboration. It is provided << 6 // * of contributors to this software. The specific disclaimers,which * 7 // * conditions of the Geant4 Software License << 7 // * govern, are listed with their locations in: * 8 // * LICENSE and available at http://cern.ch/ << 8 // * http://cern.ch/geant4/license * 9 // * include a list of copyright holders. << 10 // * 9 // * * 11 // * Neither the authors of this software syst 10 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 11 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 12 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 13 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file << 14 // * use. * 16 // * for the full disclaimer and the limitatio << 17 // * 15 // * * 18 // * This code implementation is the result << 16 // * This code implementation is the intellectual property of the * 19 // * technical work of the GEANT4 collaboratio << 17 // * GEANT4 collaboration. * 20 // * By using, copying, modifying or distri << 18 // * By copying, distributing or modifying the Program (or any work * 21 // * any work based on the software) you ag << 19 // * based on the Program) you indicate your acceptance of this * 22 // * use in resulting scientific publicati << 20 // * statement, and all its terms. * 23 // * acceptance of all terms of the Geant4 Sof << 24 // ******************************************* 21 // ******************************************************************** 25 // 22 // 26 // 23 // >> 24 // $Id: G3PartTable.cc,v 1.12 2003/06/16 16:50:51 gunter Exp $ >> 25 // GEANT4 tag $Name: geant4-05-02-patch-01 $ 27 // 26 // 28 27 29 #include "G4Types.hh" 28 #include "G4Types.hh" 30 #include <sstream> << 29 #include <strstream> 31 #include <iomanip> 30 #include <iomanip> 32 #include "G3PartTable.hh" 31 #include "G3PartTable.hh" 33 32 34 typedef std::map<G4String, G4ParticleDefinitio 33 typedef std::map<G4String, G4ParticleDefinition*, std::less<G4String> > 35 ::iterator PTDiterator; 34 ::iterator PTDiterator; 36 35 37 G3PartTable::G3PartTable(){ 36 G3PartTable::G3PartTable(){ 38 } 37 } 39 38 40 G3PartTable::~G3PartTable(){ 39 G3PartTable::~G3PartTable(){ 41 if (PTD.size()>0){ 40 if (PTD.size()>0){ 42 // G4cout << "Deleting PTD" << G4endl; 41 // G4cout << "Deleting PTD" << G4endl; 43 for (PTDiterator i=PTD.begin(); i != PTD.e 42 for (PTDiterator i=PTD.begin(); i != PTD.end(); i++) { 44 delete (*i).second; 43 delete (*i).second; 45 } 44 } 46 PTD.clear(); 45 PTD.clear(); 47 } 46 } 48 } 47 } 49 48 50 G4ParticleDefinition* 49 G4ParticleDefinition* 51 G3PartTable::Get(G4int partid){ 50 G3PartTable::Get(G4int partid){ 52 G4String ShashID; // static 51 G4String ShashID; // static 53 HashID(partid, ShashID); 52 HashID(partid, ShashID); 54 PTDiterator i = PTD.find(ShashID); 53 PTDiterator i = PTD.find(ShashID); 55 return (*i).second; 54 return (*i).second; 56 } 55 } 57 56 58 void 57 void 59 G3PartTable::Put(G4int partid, G4ParticleDefin 58 G3PartTable::Put(G4int partid, G4ParticleDefinition *partpt){ 60 G4String ShashID; // static 59 G4String ShashID; // static 61 HashID(partid, ShashID); 60 HashID(partid, ShashID); 62 PTD[ShashID]=partpt; 61 PTD[ShashID]=partpt; 63 } 62 } 64 63 65 void 64 void 66 G3PartTable::HashID(G4int partid, G4String& th 65 G3PartTable::HashID(G4int partid, G4String& theHashID){ 67 std::ostringstream ostr; << 66 char s[20]; >> 67 std::ostrstream ostr(s, sizeof s); 68 ostr << "Part" << partid << std::ends; 68 ostr << "Part" << partid << std::ends; 69 theHashID = ostr.str(); << 69 theHashID = s; 70 } 70 } 71 71 72 void 72 void 73 G3PartTable::HashID(G4int partid, G4String* th 73 G3PartTable::HashID(G4int partid, G4String* theHashID){ 74 HashID(partid, *theHashID); 74 HashID(partid, *theHashID); 75 } 75 } 76 76 77 void 77 void 78 G3PartTable::PrintAll(){ 78 G3PartTable::PrintAll(){ 79 if (PTD.size()>0){ 79 if (PTD.size()>0){ 80 G4int count=0; 80 G4int count=0; 81 G4cout << "Dump of PTD - " << PTD.size() < 81 G4cout << "Dump of PTD - " << PTD.size() << " entries: " << G4endl; 82 for (PTDiterator i=PTD.begin(); i != PTD.e 82 for (PTDiterator i=PTD.begin(); i != PTD.end(); i++) { 83 count++; 83 count++; 84 G4ParticleDefinition* aPTD = (*i).second 84 G4ParticleDefinition* aPTD = (*i).second; 85 G4cout << "PTD entry " << std::setw(3) < 85 G4cout << "PTD entry " << std::setw(3) << count << " particle name: " 86 << aPTD->GetParticleName() << G4endl; 86 << aPTD->GetParticleName() << G4endl; 87 } 87 } 88 } 88 } 89 } 89 } 90 90 91 91 92 92 93 93 94 94 95 95