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.10 2001/07/11 09:58:59 gunter Exp $ >> 25 // GEANT4 tag $Name: geant4-04-00 $ 27 // 26 // 28 27 29 #include "G4Types.hh" << 28 #include "g4std/strstream" 30 #include <sstream> << 29 #include "g4std/iomanip" 31 #include <iomanip> << 32 #include "G3PartTable.hh" 30 #include "G3PartTable.hh" 33 31 34 typedef std::map<G4String, G4ParticleDefinitio << 32 typedef G4std::map<G4String, G4ParticleDefinition*, G4std::less<G4String> > 35 ::iterator PTDiterator; 33 ::iterator PTDiterator; 36 34 37 G3PartTable::G3PartTable(){ 35 G3PartTable::G3PartTable(){ 38 } 36 } 39 37 40 G3PartTable::~G3PartTable(){ 38 G3PartTable::~G3PartTable(){ 41 if (PTD.size()>0){ 39 if (PTD.size()>0){ 42 // G4cout << "Deleting PTD" << G4endl; 40 // G4cout << "Deleting PTD" << G4endl; 43 for (PTDiterator i=PTD.begin(); i != PTD.e 41 for (PTDiterator i=PTD.begin(); i != PTD.end(); i++) { 44 delete (*i).second; 42 delete (*i).second; 45 } 43 } 46 PTD.clear(); 44 PTD.clear(); 47 } 45 } 48 } 46 } 49 47 50 G4ParticleDefinition* 48 G4ParticleDefinition* 51 G3PartTable::Get(G4int partid){ 49 G3PartTable::Get(G4int partid){ 52 G4String ShashID; // static 50 G4String ShashID; // static 53 HashID(partid, ShashID); 51 HashID(partid, ShashID); 54 PTDiterator i = PTD.find(ShashID); 52 PTDiterator i = PTD.find(ShashID); 55 return (*i).second; 53 return (*i).second; 56 } 54 } 57 55 58 void 56 void 59 G3PartTable::Put(G4int partid, G4ParticleDefin 57 G3PartTable::Put(G4int partid, G4ParticleDefinition *partpt){ 60 G4String ShashID; // static 58 G4String ShashID; // static 61 HashID(partid, ShashID); 59 HashID(partid, ShashID); 62 PTD[ShashID]=partpt; 60 PTD[ShashID]=partpt; 63 } 61 } 64 62 65 void 63 void 66 G3PartTable::HashID(G4int partid, G4String& th 64 G3PartTable::HashID(G4int partid, G4String& theHashID){ 67 std::ostringstream ostr; << 65 char s[20]; 68 ostr << "Part" << partid << std::ends; << 66 G4std::ostrstream ostr(s, sizeof s); 69 theHashID = ostr.str(); << 67 ostr << "Part" << partid << G4std::ends; >> 68 theHashID = s; 70 } 69 } 71 70 72 void 71 void 73 G3PartTable::HashID(G4int partid, G4String* th 72 G3PartTable::HashID(G4int partid, G4String* theHashID){ 74 HashID(partid, *theHashID); 73 HashID(partid, *theHashID); 75 } 74 } 76 75 77 void 76 void 78 G3PartTable::PrintAll(){ 77 G3PartTable::PrintAll(){ 79 if (PTD.size()>0){ 78 if (PTD.size()>0){ 80 G4int count=0; 79 G4int count=0; 81 G4cout << "Dump of PTD - " << PTD.size() < 80 G4cout << "Dump of PTD - " << PTD.size() << " entries: " << G4endl; 82 for (PTDiterator i=PTD.begin(); i != PTD.e 81 for (PTDiterator i=PTD.begin(); i != PTD.end(); i++) { 83 count++; 82 count++; 84 G4ParticleDefinition* aPTD = (*i).second 83 G4ParticleDefinition* aPTD = (*i).second; 85 G4cout << "PTD entry " << std::setw(3) < << 84 G4cout << "PTD entry " << G4std::setw(3) << count << " particle name: " 86 << aPTD->GetParticleName() << G4endl; 85 << aPTD->GetParticleName() << G4endl; 87 } 86 } 88 } 87 } 89 } 88 } 90 89 91 90 92 91 93 92 94 93 95 94