95 lines
2.9 KiB
C++
95 lines
2.9 KiB
C++
//
|
|
// ********************************************************************
|
|
// * DISCLAIMER *
|
|
// * *
|
|
// * The following disclaimer summarizes all the specific disclaimers *
|
|
// * of contributors to this software. The specific disclaimers,which *
|
|
// * govern, are listed with their locations in: *
|
|
// * http://cern.ch/geant4/license *
|
|
// * *
|
|
// * Neither the authors of this software system, nor their employing *
|
|
// * institutes,nor the agencies providing financial support for this *
|
|
// * work make any representation or warranty, express or implied, *
|
|
// * regarding this software system or assume any liability for its *
|
|
// * use. *
|
|
// * *
|
|
// * This code implementation is the intellectual property of the *
|
|
// * GEANT4 collaboration. *
|
|
// * By copying, distributing or modifying the Program (or any work *
|
|
// * based on the Program) you indicate your acceptance of this *
|
|
// * statement, and all its terms. *
|
|
// ********************************************************************
|
|
//
|
|
//
|
|
// $Id: G3PartTable.cc,v 1.12 2003/06/16 16:50:51 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-07-01 $
|
|
//
|
|
|
|
#include "G4Types.hh"
|
|
#include <strstream>
|
|
#include <iomanip>
|
|
#include "G3PartTable.hh"
|
|
|
|
typedef std::map<G4String, G4ParticleDefinition*, std::less<G4String> >
|
|
::iterator PTDiterator;
|
|
|
|
G3PartTable::G3PartTable(){
|
|
}
|
|
|
|
G3PartTable::~G3PartTable(){
|
|
if (PTD.size()>0){
|
|
// G4cout << "Deleting PTD" << G4endl;
|
|
for (PTDiterator i=PTD.begin(); i != PTD.end(); i++) {
|
|
delete (*i).second;
|
|
}
|
|
PTD.clear();
|
|
}
|
|
}
|
|
|
|
G4ParticleDefinition*
|
|
G3PartTable::Get(G4int partid){
|
|
G4String ShashID; // static
|
|
HashID(partid, ShashID);
|
|
PTDiterator i = PTD.find(ShashID);
|
|
return (*i).second;
|
|
}
|
|
|
|
void
|
|
G3PartTable::Put(G4int partid, G4ParticleDefinition *partpt){
|
|
G4String ShashID; // static
|
|
HashID(partid, ShashID);
|
|
PTD[ShashID]=partpt;
|
|
}
|
|
|
|
void
|
|
G3PartTable::HashID(G4int partid, G4String& theHashID){
|
|
char s[20];
|
|
std::ostrstream ostr(s, sizeof s);
|
|
ostr << "Part" << partid << std::ends;
|
|
theHashID = s;
|
|
}
|
|
|
|
void
|
|
G3PartTable::HashID(G4int partid, G4String* theHashID){
|
|
HashID(partid, *theHashID);
|
|
}
|
|
|
|
void
|
|
G3PartTable::PrintAll(){
|
|
if (PTD.size()>0){
|
|
G4int count=0;
|
|
G4cout << "Dump of PTD - " << PTD.size() << " entries: " << G4endl;
|
|
for (PTDiterator i=PTD.begin(); i != PTD.end(); i++) {
|
|
count++;
|
|
G4ParticleDefinition* aPTD = (*i).second;
|
|
G4cout << "PTD entry " << std::setw(3) << count << " particle name: "
|
|
<< aPTD->GetParticleName() << G4endl;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|