00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 #include "G4Types.hh"
00031 #include <sstream>
00032 #include <iomanip>
00033 #include "G3PartTable.hh"
00034
00035 typedef std::map<G4String, G4ParticleDefinition*, std::less<G4String> >
00036 ::iterator PTDiterator;
00037
00038 G3PartTable::G3PartTable(){
00039 }
00040
00041 G3PartTable::~G3PartTable(){
00042 if (PTD.size()>0){
00043
00044 for (PTDiterator i=PTD.begin(); i != PTD.end(); i++) {
00045 delete (*i).second;
00046 }
00047 PTD.clear();
00048 }
00049 }
00050
00051 G4ParticleDefinition*
00052 G3PartTable::Get(G4int partid){
00053 G4String ShashID;
00054 HashID(partid, ShashID);
00055 PTDiterator i = PTD.find(ShashID);
00056 return (*i).second;
00057 }
00058
00059 void
00060 G3PartTable::Put(G4int partid, G4ParticleDefinition *partpt){
00061 G4String ShashID;
00062 HashID(partid, ShashID);
00063 PTD[ShashID]=partpt;
00064 }
00065
00066 void
00067 G3PartTable::HashID(G4int partid, G4String& theHashID){
00068 std::ostringstream ostr;
00069 ostr << "Part" << partid << std::ends;
00070 theHashID = ostr.str();
00071 }
00072
00073 void
00074 G3PartTable::HashID(G4int partid, G4String* theHashID){
00075 HashID(partid, *theHashID);
00076 }
00077
00078 void
00079 G3PartTable::PrintAll(){
00080 if (PTD.size()>0){
00081 G4int count=0;
00082 G4cout << "Dump of PTD - " << PTD.size() << " entries: " << G4endl;
00083 for (PTDiterator i=PTD.begin(); i != PTD.end(); i++) {
00084 count++;
00085 G4ParticleDefinition* aPTD = (*i).second;
00086 G4cout << "PTD entry " << std::setw(3) << count << " particle name: "
00087 << aPTD->GetParticleName() << G4endl;
00088 }
00089 }
00090 }
00091
00092
00093
00094
00095