Import Geant4 1.0.0 source tree
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
// This code implementation is the intellectual property of
|
||||
// the RD44 GEANT4 collaboration.
|
||||
// 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: G4IonTable.hh,v 1.5 1999/05/06 16:37:36 kurasige Exp $
|
||||
// GEANT4 tag $Name: geant4-00-01 $
|
||||
// $Id: G4IonTable.hh,v 1.13.2.1 1999/12/07 20:49:50 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-01-00 $
|
||||
//
|
||||
//
|
||||
// ------------------------------------------------------------
|
||||
@@ -20,50 +20,95 @@
|
||||
// modified GetIon 02 Aug., 98 H.Kurashige
|
||||
// added Remove() 06 Nov.,98 H.Kurashige
|
||||
// add GetNucleusMass 15 Mar. 99 H.Kurashige
|
||||
// -----
|
||||
// Modified GetIon methods 17 Aug. 99 H.Kurashige
|
||||
// New design using G4VIsotopeTable 5 Oct. 99 H.Kurashige
|
||||
|
||||
#ifndef G4IonTable_h
|
||||
#define G4IonTable_h 1
|
||||
|
||||
#include "G4ios.hh"
|
||||
#include <rw/tpordvec.h>
|
||||
#include "globals.hh"
|
||||
#include "G4ParticleDefinition.hh"
|
||||
#include <rw/cstring.h>
|
||||
|
||||
#ifdef G4USE_STL
|
||||
#include "g4std/vector"
|
||||
#else
|
||||
#include "g4rw/tpordvec.h"
|
||||
#endif
|
||||
|
||||
class G4ParticleTable;
|
||||
class G4VIsotopeTable;
|
||||
class G4IsotopeProperty;
|
||||
|
||||
class G4IonTable
|
||||
{
|
||||
// Class Description
|
||||
// G4IonTable is the table of pointer to G4ParticleDefinition
|
||||
// In G4IonTable, each G4ParticleDefinition pointer is stored
|
||||
//
|
||||
|
||||
public:
|
||||
typedef RWTPtrOrderedVector<G4ParticleDefinition> G4IonList;
|
||||
#ifdef G4USE_STL
|
||||
// Use STL Vector as list of ions
|
||||
typedef G4std::vector<G4ParticleDefinition*> G4IonList;
|
||||
#else
|
||||
// Use G4RWTPtrOrderedVector as list of ions
|
||||
typedef G4RWTPtrOrderedVector<G4ParticleDefinition> G4IonList;
|
||||
#endif
|
||||
|
||||
public:
|
||||
// constructor
|
||||
G4IonTable();
|
||||
|
||||
protected:
|
||||
// hide copy construictor as protected
|
||||
G4IonTable(const G4IonTable &right);
|
||||
|
||||
public:
|
||||
// destructor
|
||||
virtual ~G4IonTable();
|
||||
|
||||
G4ParticleDefinition* GetIon(G4int Z, G4int A, G4int J, G4int Q);
|
||||
// get a pointer to the ion with A,Z,J,Q
|
||||
// The ion will be created if not exist yet
|
||||
public: // With Description
|
||||
// Register Isotope table
|
||||
void RegisterIsotopeTable(G4VIsotopeTable* table);
|
||||
G4VIsotopeTable* GetIsotopeTable() const;
|
||||
// G4IonTable asks properties of isotopes to this G4VIsotopeTable
|
||||
// by using FindIsotope(G4IsotopeProperty* property) method.
|
||||
|
||||
// ---------------------------
|
||||
// FindIon/GetIon
|
||||
// FindIon methods return pointer of ion if it exists
|
||||
// GetIon methods also return pointer of ion. In GetIon
|
||||
// methods the designated ion will be created if it does not exist.
|
||||
//
|
||||
// !! PDGCharge inG4ParticleDefinition of ions is !!
|
||||
// !! electric charge of nucleus (i.e. fully ionized ions) !!
|
||||
// -----------------------------
|
||||
|
||||
// Find/Get "ground state"
|
||||
G4ParticleDefinition* GetIon(G4int Z, G4int A, G4int J=0);
|
||||
// The ion is assumed to be ground state (i.e Excited energy = 0)
|
||||
// Z: Atomic Number
|
||||
// A: Atomic Mass
|
||||
// J: Total Angular momentum
|
||||
// Q: Total charge
|
||||
|
||||
G4bool IsIon(G4ParticleDefinition*) const;
|
||||
// return true if the particle is ion
|
||||
|
||||
void DumpTable(const G4String &particle_name = "ALL") const;
|
||||
// dump information of particles specified by name
|
||||
// J: Total Angular momentum (in unit of 1/2)
|
||||
|
||||
G4String GetIonName(G4int Z, G4int A, G4int J, G4int Q) const;
|
||||
// Find/Get "excited state"
|
||||
G4ParticleDefinition* FindIon(G4int Z, G4int A, G4double E, G4int J=0);
|
||||
G4ParticleDefinition* GetIon(G4int Z, G4int A, G4double E, G4int J=0);
|
||||
// Z: Atomic Number
|
||||
// A: Atomic Mass
|
||||
// J: Total Angular momentum (in unit of 1/2)
|
||||
// E: Excitaion energy
|
||||
|
||||
G4ParticleDefinition* GetIon(G4int Z, G4int A, G4int J, G4int Q);
|
||||
// This method is provided for compatibilties
|
||||
// The third and last arguments gives no effect
|
||||
|
||||
static G4bool IsIon(G4ParticleDefinition*);
|
||||
// return true if the particle is ion
|
||||
|
||||
G4String GetIonName(G4int Z, G4int A, G4double E) const;
|
||||
// get ion name
|
||||
|
||||
G4double GetIonMass(G4int Z, G4int A) const;
|
||||
@@ -72,19 +117,51 @@ class G4IonTable
|
||||
// ,where Z is Atomic Number (number of protons) and
|
||||
// A is Atomic Number (number of nucleons)
|
||||
|
||||
|
||||
G4int Entries() const;
|
||||
// Return number of ions in the table
|
||||
|
||||
G4ParticleDefinition* GetParticle(G4int index) const;
|
||||
// Return the pointer of index-th ion in the table
|
||||
|
||||
G4bool Contains(const G4ParticleDefinition *particle) const;
|
||||
// Return 'true' if the ion exists
|
||||
|
||||
void Insert(G4ParticleDefinition* particle);
|
||||
void Remove(G4ParticleDefinition* particle);
|
||||
G4ParticleDefinition* GetParticle(G4int index) const;
|
||||
// Insert/Remove an ion in the table
|
||||
|
||||
void DumpTable(const G4String &particle_name = "ALL") const;
|
||||
// dump information of particles specified by name
|
||||
|
||||
|
||||
protected:
|
||||
G4ParticleDefinition* CreateIon(G4int Z, G4int A, G4double E, G4int J);
|
||||
// Create Ion
|
||||
|
||||
G4IsotopeProperty* FindIsotope(G4int Z, G4int A, G4double E, G4int J);
|
||||
// Ask properties of isotopes to this G4VIsotopeTable
|
||||
|
||||
G4ParticleDefinition* GetLightIon(G4int Z, G4int A) const;
|
||||
|
||||
|
||||
G4bool IsLightIon(G4ParticleDefinition*) const;
|
||||
// return true if the particle is pre-defined ion
|
||||
|
||||
void AddProcessManager(const G4String& ionName);
|
||||
// Add process manager to ions with name of 'ionName'
|
||||
|
||||
void SetCuts(G4ParticleDefinition* ion);
|
||||
// Set cut value same as "GenericIon" and build physics tables
|
||||
|
||||
G4int GetVerboseLevel() const;
|
||||
// get Verbose Level defined in G4ParticleTable
|
||||
|
||||
private:
|
||||
G4IonList* fIonList;
|
||||
G4IonList* fIonList;
|
||||
|
||||
G4VIsotopeTable* fIsotopeTable;
|
||||
|
||||
enum { numberOfElements = 110};
|
||||
static const G4String elementName[numberOfElements];
|
||||
|
||||
@@ -92,20 +169,36 @@ class G4IonTable
|
||||
|
||||
inline G4bool G4IonTable::Contains(const G4ParticleDefinition* particle) const
|
||||
{
|
||||
#ifdef G4USE_STL
|
||||
G4IonList::iterator i;
|
||||
for (i = fIonList->begin(); i!= fIonList->end(); ++i) {
|
||||
if (**i==*particle) return true;
|
||||
}
|
||||
return false;
|
||||
#else
|
||||
return fIonList->contains(particle);
|
||||
#endif
|
||||
}
|
||||
|
||||
inline G4int G4IonTable::Entries() const
|
||||
{
|
||||
#ifdef G4USE_STL
|
||||
return fIonList->size();
|
||||
#else
|
||||
return fIonList->entries();
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
inline G4ParticleDefinition* G4IonTable::GetParticle(G4int index) const
|
||||
{
|
||||
return (*fIonList)[index];
|
||||
if ( (index >=0 ) && (index < Entries()) ){
|
||||
return (*fIonList)[index];
|
||||
} else {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user