Import Geant4 9.0.0 source tree
This commit is contained in:
@@ -25,7 +25,7 @@
|
||||
//
|
||||
//
|
||||
// $Id: G4DalitzDecayChannel.hh,v 1.5 2006/06/29 19:22:43 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-08-02 $
|
||||
// GEANT4 tag $Name: geant4-09-00 $
|
||||
//
|
||||
//
|
||||
// ------------------------------------------------------------
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
//
|
||||
//
|
||||
// $Id: G4DecayProducts.hh,v 1.12 2006/06/29 19:22:45 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-08-02 $
|
||||
// GEANT4 tag $Name: geant4-09-00 $
|
||||
//
|
||||
//
|
||||
// ------------------------------------------------------------
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
//
|
||||
//
|
||||
// $Id: G4DecayTable.hh,v 1.9 2006/06/29 19:22:47 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-08-02 $
|
||||
// GEANT4 tag $Name: geant4-09-00 $
|
||||
//
|
||||
//
|
||||
// ------------------------------------------------------------
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
//
|
||||
//
|
||||
// $Id: G4DecayTableMessenger.hh,v 1.8 2006/06/29 19:22:52 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-08-02 $
|
||||
// GEANT4 tag $Name: geant4-09-00 $
|
||||
//
|
||||
//
|
||||
//---------------------------------------------------------------
|
||||
|
||||
@@ -24,8 +24,8 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4DynamicParticle.hh,v 1.17 2006/06/29 19:23:01 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-08-02 $
|
||||
// $Id: G4DynamicParticle.hh,v 1.18 2007/03/11 07:17:35 kurasige Exp $
|
||||
// GEANT4 tag $Name: geant4-09-00 $
|
||||
//
|
||||
//
|
||||
// ------------------------------------------------------------
|
||||
@@ -43,6 +43,7 @@
|
||||
// Add theDynamicCharge and theElectronOccupancy
|
||||
// 17 AUg. 1999 H.Kurashige
|
||||
// Add thePreAssignedDecayTime 18 Jan. 2001 H.Kurashige
|
||||
// Added MagneticMoment Mar. 2007
|
||||
// ------------------------------------------------------------
|
||||
|
||||
#ifndef G4DynamicParticle_h
|
||||
@@ -160,6 +161,18 @@ class G4DynamicParticle
|
||||
// set/get dynamical charge
|
||||
// the dynamical mass is set to PDG charge in default
|
||||
|
||||
G4double GetSpin() const;
|
||||
void SetSpin(G4double spin);
|
||||
void SetSpin(G4int spinInUnitOfHalfInteger);
|
||||
// set/get dynamical spin
|
||||
// the dynamical spin is set to PDG spin in default
|
||||
|
||||
G4double GetMagneticMoment() const;
|
||||
void SetMagneticMoment(G4double magneticMoment);
|
||||
// set/get dynamical MagneticMoment
|
||||
// the dynamical mass is set to PDG MagneticMoment in default
|
||||
|
||||
|
||||
const G4ElectronOccupancy* GetElectronOccupancy() const;
|
||||
// Get electron occupancy
|
||||
// ElectronOccupancy is valid only if the particle is ion
|
||||
@@ -208,6 +221,10 @@ class G4DynamicParticle
|
||||
|
||||
G4double theDynamicalCharge;
|
||||
|
||||
G4double theDynamicalSpin;
|
||||
|
||||
G4double theDynamicalMagneticMoment;
|
||||
|
||||
G4ElectronOccupancy* theElectronOccupancy;
|
||||
|
||||
G4DecayProducts *thePreAssignedDecayProducts;
|
||||
|
||||
@@ -24,8 +24,8 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4DynamicParticle.icc,v 1.15 2006/06/29 19:23:04 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-08-02 $
|
||||
// $Id: G4DynamicParticle.icc,v 1.16 2007/03/11 07:17:35 kurasige Exp $
|
||||
// GEANT4 tag $Name: geant4-09-00 $
|
||||
//
|
||||
//
|
||||
// ------------------------------------------------------------
|
||||
@@ -124,6 +124,32 @@ inline G4double G4DynamicParticle::GetMass() const
|
||||
return theDynamicalMass;
|
||||
}
|
||||
|
||||
|
||||
inline G4double G4DynamicParticle::GetSpin() const
|
||||
{
|
||||
return theDynamicalSpin;
|
||||
}
|
||||
|
||||
inline void G4DynamicParticle::SetSpin(G4double spin)
|
||||
{
|
||||
theDynamicalSpin = spin;
|
||||
}
|
||||
|
||||
inline void G4DynamicParticle::SetSpin(G4int spinInUnitOfHalfInteger)
|
||||
{
|
||||
theDynamicalSpin = spinInUnitOfHalfInteger * 0.5;
|
||||
}
|
||||
|
||||
inline G4double G4DynamicParticle::GetMagneticMoment() const
|
||||
{
|
||||
return theDynamicalMagneticMoment;
|
||||
}
|
||||
|
||||
inline void G4DynamicParticle::SetMagneticMoment(G4double magneticMoment)
|
||||
{
|
||||
theDynamicalMagneticMoment = magneticMoment;
|
||||
}
|
||||
|
||||
inline void G4DynamicParticle::SetMass(G4double newMass)
|
||||
{
|
||||
theDynamicalMass = newMass;
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
//
|
||||
//
|
||||
// $Id: G4DynamicParticleFastVector.hh,v 1.4 2006/06/29 19:23:06 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-08-02 $
|
||||
// GEANT4 tag $Name: geant4-09-00 $
|
||||
//
|
||||
//
|
||||
// ------------------------------------------------------------
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
//
|
||||
//
|
||||
// $Id: G4ElectronOccupancy.hh,v 1.9 2006/06/29 19:23:08 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-08-02 $
|
||||
// GEANT4 tag $Name: geant4-09-00 $
|
||||
//
|
||||
//
|
||||
// ------------------------------------------------------------
|
||||
|
||||
@@ -24,8 +24,8 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4IonTable.hh,v 1.23 2006/10/12 10:59:45 kurasige Exp $
|
||||
// GEANT4 tag $Name: geant4-08-02 $
|
||||
// $Id: G4IonTable.hh,v 1.24 2007/03/15 06:53:27 kurasige Exp $
|
||||
// GEANT4 tag $Name: geant4-09-00 $
|
||||
//
|
||||
//
|
||||
// ------------------------------------------------------------
|
||||
@@ -86,7 +86,7 @@ class G4IonTable
|
||||
|
||||
// Register Isotope table
|
||||
void RegisterIsotopeTable(G4VIsotopeTable* table);
|
||||
G4VIsotopeTable* GetIsotopeTable() const;
|
||||
G4VIsotopeTable* GetIsotopeTable(size_t idx=0) const;
|
||||
// G4IonTable asks properties of isotopes to this G4VIsotopeTable
|
||||
// by using FindIsotope(G4IsotopeProperty* property) method.
|
||||
|
||||
@@ -191,9 +191,10 @@ class G4IonTable
|
||||
private:
|
||||
G4IonList* fIonList;
|
||||
|
||||
G4VIsotopeTable* fIsotopeTable;
|
||||
std::vector<G4VIsotopeTable*> *fIsotopeTableList;
|
||||
|
||||
|
||||
enum { numberOfElements = 110};
|
||||
enum { numberOfElements = 118};
|
||||
static const G4String elementName[numberOfElements];
|
||||
|
||||
};
|
||||
|
||||
@@ -24,8 +24,8 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4Ions.hh,v 1.13 2006/06/29 19:23:29 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-08-02 $
|
||||
// $Id: G4Ions.hh,v 1.14 2007/03/11 07:17:35 kurasige Exp $
|
||||
// GEANT4 tag $Name: geant4-09-00 $
|
||||
//
|
||||
//
|
||||
// ------------------------------------------------------------
|
||||
|
||||
@@ -24,8 +24,8 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4IsotopeProperty.hh,v 1.4 2006/06/29 19:23:31 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-08-02 $
|
||||
// $Id: G4IsotopeProperty.hh,v 1.5 2007/03/15 06:53:27 kurasige Exp $
|
||||
// GEANT4 tag $Name: geant4-09-00 $
|
||||
//
|
||||
//
|
||||
// ------------------------------------------------------------
|
||||
@@ -33,6 +33,7 @@
|
||||
//
|
||||
// ------------------------------------------------------------
|
||||
// New design using G4VIsotopeTable 5 Oct. 99 H.Kurashige
|
||||
// Add Magnetic Moment 14 Mar 07 H.Kurashige
|
||||
|
||||
#ifndef G4IsotopeProperty_h
|
||||
#define G4IsotopeProperty_h 1
|
||||
@@ -75,6 +76,10 @@ class G4IsotopeProperty
|
||||
G4int GetiSpin() const;
|
||||
void SetiSpin(G4int J);
|
||||
|
||||
// Set/Get Magentic Moment
|
||||
G4double GetMagneticMoment() const;
|
||||
void SetMagneticMoment(G4double M);
|
||||
|
||||
// Set/Get Excited Energy
|
||||
G4double GetEnergy() const;
|
||||
void SetEnergy(G4double E);
|
||||
@@ -91,12 +96,13 @@ class G4IsotopeProperty
|
||||
void DumpInfo() const;
|
||||
|
||||
private:
|
||||
G4int fAtomicNumber; // number of proton
|
||||
G4int fAtomicMass; // number of nucleon
|
||||
G4int fISpin; // total angular momentum (in unit of 1/2)
|
||||
G4double fEnergy; // excited energy
|
||||
G4double fLifeTime; // lifeTime
|
||||
G4DecayTable* fDecayTable; // decay Table
|
||||
G4int fAtomicNumber; // number of proton
|
||||
G4int fAtomicMass; // number of nucleon
|
||||
G4int fISpin; // total angular momentum (in unit of 1/2)
|
||||
G4double fEnergy; // excited energy
|
||||
G4double fLifeTime; // lifeTime
|
||||
G4DecayTable* fDecayTable; // decay Table
|
||||
G4double fMagneticMoment; // magnetic moment
|
||||
};
|
||||
|
||||
inline
|
||||
@@ -135,6 +141,18 @@ inline
|
||||
fISpin = J;
|
||||
}
|
||||
|
||||
inline
|
||||
G4double G4IsotopeProperty::GetMagneticMoment() const
|
||||
{
|
||||
return fMagneticMoment;
|
||||
}
|
||||
|
||||
inline
|
||||
void G4IsotopeProperty::SetMagneticMoment(G4double M)
|
||||
{
|
||||
fMagneticMoment = M;
|
||||
}
|
||||
|
||||
inline
|
||||
G4double G4IsotopeProperty::GetEnergy() const
|
||||
{
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
//
|
||||
//
|
||||
// $Id: G4KL3DecayChannel.hh,v 1.5 2006/06/29 19:23:33 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-08-02 $
|
||||
// GEANT4 tag $Name: geant4-09-00 $
|
||||
//
|
||||
//
|
||||
// ------------------------------------------------------------
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
//
|
||||
//
|
||||
// $Id: G4MuonDecayChannel.hh,v 1.6 2006/06/29 19:23:35 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-08-02 $
|
||||
// GEANT4 tag $Name: geant4-09-00 $
|
||||
//
|
||||
//
|
||||
// ------------------------------------------------------------
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
//
|
||||
//
|
||||
// $Id: G4NeutronBetaDecayChannel.hh,v 1.2 2006/06/29 19:23:51 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-08-02 $
|
||||
// GEANT4 tag $Name: geant4-09-00 $
|
||||
//
|
||||
//
|
||||
// ------------------------------------------------------------
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
//
|
||||
//
|
||||
// $Id: G4NucleiProperties.hh,v 1.14 2006/06/29 19:23:54 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-08-02 $
|
||||
// GEANT4 tag $Name: geant4-09-00 $
|
||||
//
|
||||
//
|
||||
// ------------------------------------------------------------
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
//
|
||||
//
|
||||
// $Id: G4NucleiPropertiesTable.hh,v 1.13 2006/06/29 19:23:56 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-08-02 $
|
||||
// GEANT4 tag $Name: geant4-09-00 $
|
||||
//
|
||||
// -------------------------------------------------------------------
|
||||
// GEANT 4 class file --- Copyright CERN 1997
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
//
|
||||
//
|
||||
// $Id: G4NucleiPropertiesTheoreticalTable.hh,v 1.7 2006/06/29 19:23:58 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-08-02 $
|
||||
// GEANT4 tag $Name: geant4-09-00 $
|
||||
//
|
||||
//
|
||||
// ------------------------------------------------------------
|
||||
|
||||
@@ -24,8 +24,8 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4PDGCodeChecker.hh,v 1.7 2006/06/29 19:24:00 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-08-02 $
|
||||
// $Id: G4PDGCodeChecker.hh,v 1.8 2007/05/30 08:30:13 kurasige Exp $
|
||||
// GEANT4 tag $Name: geant4-09-00 $
|
||||
//
|
||||
//
|
||||
// ------------------------------------------------------------
|
||||
@@ -130,11 +130,11 @@ inline
|
||||
inline
|
||||
G4int G4PDGCodeChecker::GetQuarkFlavor(G4int idx) const
|
||||
{
|
||||
G4int value = -1;
|
||||
G4int value;
|
||||
if (idx ==0) value = quark1;
|
||||
else if (idx ==1) value = quark2;
|
||||
else if (idx ==2) value = quark3;
|
||||
else ;
|
||||
else value = -1;
|
||||
return value;
|
||||
}
|
||||
|
||||
|
||||
@@ -24,8 +24,8 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4ParticleDefinition.hh,v 1.30 2006/06/29 19:24:02 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-08-02 $
|
||||
// $Id: G4ParticleDefinition.hh,v 1.31 2007/03/11 07:17:35 kurasige Exp $
|
||||
// GEANT4 tag $Name: geant4-09-00 $
|
||||
//
|
||||
//
|
||||
// ------------------------------------------------------------
|
||||
@@ -48,6 +48,7 @@
|
||||
// added sub-type H.Kurashige 15 Feb. 2000
|
||||
// added RestoreCuts H.Kurashige 09 Mar. 2001
|
||||
// restructuring for Cuts per Region by Hisaya 11 MAr.2003
|
||||
// added MagneticMoment Mar. 2007
|
||||
// ------------------------------------------------------------
|
||||
|
||||
#ifndef G4ParticleDefinition_h
|
||||
@@ -101,7 +102,8 @@ class G4ParticleDefinition
|
||||
G4DecayTable *decaytable,
|
||||
G4bool shortlived = false,
|
||||
const G4String& subType ="",
|
||||
G4int anti_encoding =0);
|
||||
G4int anti_encoding =0,
|
||||
G4double magneticMoment = 0.0);
|
||||
|
||||
virtual ~G4ParticleDefinition();
|
||||
|
||||
@@ -124,6 +126,9 @@ class G4ParticleDefinition
|
||||
G4int GetPDGiIsospin() const { return thePDGiIsospin; }
|
||||
G4int GetPDGiIsospin3() const { return thePDGiIsospin3; }
|
||||
G4int GetPDGiGParity() const { return thePDGiGParity; }
|
||||
|
||||
G4double GetPDGMagneticMoment() const { return thePDGMagneticMoment; }
|
||||
void SetPDGMagneticMoment(G4double mageticMoment);
|
||||
|
||||
const G4String& GetParticleType() const { return theParticleType; }
|
||||
const G4String& GetParticleSubType() const { return theParticleSubType; }
|
||||
@@ -141,6 +146,7 @@ class G4ParticleDefinition
|
||||
// The value of flavor is assigned as follows
|
||||
// 1:d, 2:u, 3:s, 4:c, 5:b, 6:t
|
||||
|
||||
|
||||
public: // With Description
|
||||
// ShortLived flag
|
||||
G4bool IsShortLived() const { return fShortLivedFlag; }
|
||||
@@ -254,6 +260,9 @@ class G4ParticleDefinition
|
||||
G4double thePDGIsospin;
|
||||
G4double thePDGIsospin3;
|
||||
// The isospin quantum number in units of 1.
|
||||
|
||||
G4double thePDGMagneticMoment;
|
||||
// The magnetic moment.
|
||||
|
||||
G4int theLeptonNumber;
|
||||
// The lepton quantum number.
|
||||
|
||||
@@ -24,8 +24,8 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4ParticleDefinition.icc,v 1.11 2006/06/29 19:24:04 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-08-02 $
|
||||
// $Id: G4ParticleDefinition.icc,v 1.12 2007/03/11 07:17:35 kurasige Exp $
|
||||
// GEANT4 tag $Name: geant4-09-00 $
|
||||
//
|
||||
|
||||
inline
|
||||
@@ -105,6 +105,7 @@ inline
|
||||
return content;
|
||||
}
|
||||
|
||||
|
||||
inline
|
||||
void G4ParticleDefinition::SetParticleSubType(const G4String& subtype)
|
||||
{
|
||||
@@ -147,3 +148,10 @@ inline
|
||||
return theAtomicMass;
|
||||
}
|
||||
|
||||
inline
|
||||
void G4ParticleDefinition::SetPDGMagneticMoment(G4double magneticMoment)
|
||||
{
|
||||
thePDGMagneticMoment = magneticMoment;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
//
|
||||
//
|
||||
// $Id: G4ParticleMessenger.hh,v 1.7 2006/06/29 19:24:06 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-08-02 $
|
||||
// GEANT4 tag $Name: geant4-09-00 $
|
||||
//
|
||||
//
|
||||
//---------------------------------------------------------------
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
//
|
||||
//
|
||||
// $Id: G4ParticleMomentum.hh,v 1.6 2006/06/29 19:24:08 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-08-02 $
|
||||
// GEANT4 tag $Name: geant4-09-00 $
|
||||
//
|
||||
//
|
||||
// ------------------------------------------------------------
|
||||
|
||||
@@ -24,8 +24,8 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4ParticlePropertyData.hh,v 1.2 2006/06/29 19:24:10 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-08-02 $
|
||||
// $Id: G4ParticlePropertyData.hh,v 1.3 2007/03/11 07:17:35 kurasige Exp $
|
||||
// GEANT4 tag $Name: geant4-09-00 $
|
||||
//
|
||||
//
|
||||
// ------------------------------------------------------------
|
||||
@@ -34,6 +34,7 @@
|
||||
// History:
|
||||
// ---------------- G4ParticlePropertyData ----------------
|
||||
// first implementation by H Kurashige 9 June 2003
|
||||
// Add magnetic moment by H Kurashige Mar 2007
|
||||
// ------------------------------------------------------------
|
||||
|
||||
#ifndef G4ParticlePropertyData_h
|
||||
@@ -83,7 +84,9 @@ class G4ParticlePropertyData
|
||||
G4int GetPDGiIsospin() const { return thePDGiIsospin; }
|
||||
G4int GetPDGiIsospin3() const { return thePDGiIsospin3; }
|
||||
G4int GetPDGiGParity() const { return thePDGiGParity; }
|
||||
|
||||
|
||||
G4double GetPDGMagneticMoment() const { return thePDGMagneticMoment; }
|
||||
|
||||
G4int GetLeptonNumber() const { return theLeptonNumber; }
|
||||
G4int GetBaryonNumber() const { return theBaryonNumber; }
|
||||
|
||||
@@ -109,6 +112,8 @@ class G4ParticlePropertyData
|
||||
void SetPDGiIsospin(G4int newIsospin);
|
||||
void SetPDGiIsospin3(G4int newIsospin3);
|
||||
void SetPDGiGParity(G4int newGParity);
|
||||
|
||||
void SetPDGMagneticMoment(G4double mageticMoment);
|
||||
|
||||
void SetLeptonNumber(G4int newLeptonNumber);
|
||||
void SetBaryonNumber(G4int newBaryonNumber);
|
||||
@@ -170,6 +175,9 @@ class G4ParticlePropertyData
|
||||
G4int thePDGiIsospin3;
|
||||
// The isospin and its 3rd-component in units of 1/2.
|
||||
|
||||
G4double thePDGMagneticMoment;
|
||||
// The magnetic moment.
|
||||
|
||||
G4int theLeptonNumber;
|
||||
// The lepton quantum number.
|
||||
|
||||
@@ -202,6 +210,7 @@ class G4ParticlePropertyData
|
||||
G4bool fPDGiIsospin3Modified;
|
||||
G4bool fPDGIsospinModified;
|
||||
G4bool fPDGIsospin3Modified;
|
||||
G4bool fPDGMagneticMomentModified;
|
||||
G4bool fLeptonNumberModified;
|
||||
G4bool fBaryonNumberModified;
|
||||
G4bool fPDGEncodingModified;
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4ParticlePropertyData.icc,v 1.2 2006/06/29 19:24:12 gunter Exp $
|
||||
// $Id: G4ParticlePropertyData.icc,v 1.3 2007/03/11 07:17:35 kurasige Exp $
|
||||
//
|
||||
|
||||
inline
|
||||
@@ -131,7 +131,14 @@ inline
|
||||
thePDGiIsospin3 = newIsospin3;
|
||||
fPDGiIsospin3Modified = true;
|
||||
}
|
||||
|
||||
|
||||
inline
|
||||
void G4ParticlePropertyData::SetPDGMagneticMoment(G4double mageticMoment)
|
||||
{
|
||||
thePDGMagneticMoment = mageticMoment;
|
||||
fPDGMagneticMomentModified = true;
|
||||
}
|
||||
|
||||
inline
|
||||
void G4ParticlePropertyData::SetPDGiGParity(G4int newGParity)
|
||||
{
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
//
|
||||
//
|
||||
// $Id: G4ParticlePropertyMessenger.hh,v 1.7 2006/06/29 19:24:14 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-08-02 $
|
||||
// GEANT4 tag $Name: geant4-09-00 $
|
||||
//
|
||||
//
|
||||
//---------------------------------------------------------------
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
// $Id: G4ParticlePropertyTable.hh,v 1.4 2006/06/29 19:24:18 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-08-02 $
|
||||
// GEANT4 tag $Name: geant4-09-00 $
|
||||
//
|
||||
//
|
||||
// ------------------------------------------------------------
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
//
|
||||
//
|
||||
// $Id: G4ParticleTable.hh,v 1.18 2006/06/29 19:24:32 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-08-02 $
|
||||
// GEANT4 tag $Name: geant4-09-00 $
|
||||
//
|
||||
//
|
||||
// ------------------------------------------------------------
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
//
|
||||
//
|
||||
// $Id: G4ParticleTable.icc,v 1.10 2006/06/29 19:24:34 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-08-02 $
|
||||
// GEANT4 tag $Name: geant4-09-00 $
|
||||
//
|
||||
//
|
||||
// ------------------------------------------------------------
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
//
|
||||
//
|
||||
// $Id: G4ParticleTableIterator.hh,v 1.7 2006/06/29 19:24:36 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-08-02 $
|
||||
// GEANT4 tag $Name: geant4-09-00 $
|
||||
//
|
||||
//
|
||||
// ------------------------------------------------------------
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
//
|
||||
//
|
||||
// $Id: G4ParticleWithCuts.hh,v 1.19 2006/06/29 19:24:38 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-08-02 $
|
||||
// GEANT4 tag $Name: geant4-09-00 $
|
||||
//
|
||||
//
|
||||
// --------------------------------------------------------
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
//
|
||||
//
|
||||
// $Id: G4PhaseSpaceDecayChannel.hh,v 1.6 2006/06/29 19:24:40 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-08-02 $
|
||||
// GEANT4 tag $Name: geant4-09-00 $
|
||||
//
|
||||
//
|
||||
// ------------------------------------------------------------
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
//
|
||||
//
|
||||
// $Id: G4PrimaryParticle.hh,v 1.4 2006/09/28 14:29:43 kurasige Exp $
|
||||
// GEANT4 tag $Name: geant4-08-02 $
|
||||
// GEANT4 tag $Name: geant4-09-00 $
|
||||
//
|
||||
//
|
||||
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
//
|
||||
//
|
||||
// $Id: G4PrimaryVertex.hh,v 1.4 2006/07/20 15:14:43 gcosmo Exp $
|
||||
// GEANT4 tag $Name: geant4-08-02 $
|
||||
// GEANT4 tag $Name: geant4-09-00 $
|
||||
//
|
||||
//
|
||||
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
//
|
||||
//
|
||||
// $Id: G4ShortLivedTable.hh,v 1.12 2006/06/29 19:24:46 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-08-02 $
|
||||
// GEANT4 tag $Name: geant4-09-00 $
|
||||
//
|
||||
//
|
||||
// ------------------------------------------------------------
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
//
|
||||
//
|
||||
// $Id: G4TauLeptonicDecayChannel.hh,v 1.2 2006/06/29 19:24:48 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-08-02 $
|
||||
// GEANT4 tag $Name: geant4-09-00 $
|
||||
//
|
||||
//
|
||||
// ------------------------------------------------------------
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
//
|
||||
//
|
||||
// $Id: G4VDecayChannel.hh,v 1.12 2006/06/29 19:24:50 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-08-02 $
|
||||
// GEANT4 tag $Name: geant4-09-00 $
|
||||
//
|
||||
//
|
||||
// ------------------------------------------------------------
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
//
|
||||
//
|
||||
// $Id: G4VIsotopeTable.hh,v 1.6 2006/06/29 19:24:52 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-08-02 $
|
||||
// GEANT4 tag $Name: geant4-09-00 $
|
||||
//
|
||||
//
|
||||
// ------------------------------------------------------------
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
//
|
||||
//
|
||||
// $Id: G4VUserPrimaryParticleInformation.hh,v 1.2 2006/06/29 19:24:54 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-08-02 $
|
||||
// GEANT4 tag $Name: geant4-09-00 $
|
||||
//
|
||||
//
|
||||
//---------------------------------------------------------------
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
//
|
||||
//
|
||||
// $Id: G4VUserPrimaryVertexInformation.hh,v 1.2 2006/06/29 19:24:56 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-08-02 $
|
||||
// GEANT4 tag $Name: geant4-09-00 $
|
||||
//
|
||||
//
|
||||
//---------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user