Import Geant4 9.3.0 source tree
This commit is contained in:
@@ -75,7 +75,7 @@ protected:
|
||||
G4double FcrossX(G4double e, G4double e0, G4double sigma,
|
||||
G4double eParam, G4double power) const;
|
||||
|
||||
G4String FindKeyParticle(const G4KineticTrack& trk1,const G4KineticTrack& trk2) const;
|
||||
G4ParticleDefinition * FindKeyParticle(const G4KineticTrack& trk1,const G4KineticTrack& trk2) const;
|
||||
|
||||
// Transverse pion mass
|
||||
G4double GetTransversePionMass() const;
|
||||
|
||||
@@ -77,7 +77,7 @@ private:
|
||||
static const G4double _eMinTable;
|
||||
static const G4double _eStepLog;
|
||||
|
||||
std::map <G4String, G4PhysicsVector*, std::less<G4String> > xMap;
|
||||
std::map <G4ParticleDefinition *, G4PhysicsVector*, std::less<G4ParticleDefinition *> > xMap;
|
||||
|
||||
G4double _eMin;
|
||||
G4double _eMax;
|
||||
|
||||
@@ -65,8 +65,9 @@ private:
|
||||
static const G4double npTot[29];
|
||||
static const G4int tableSize;
|
||||
|
||||
std::map <G4String, G4LowEXsection *, std::less<G4String> > theCrossSections;
|
||||
typedef std::map <G4String, G4LowEXsection*, std::less<G4String> > LowEMap;
|
||||
std::map <G4ParticleDefinition *, G4LowEXsection *,
|
||||
std::less<G4ParticleDefinition *> > theCrossSections;
|
||||
typedef std::map <G4ParticleDefinition *, G4LowEXsection*, std::less<G4ParticleDefinition *> > LowEMap;
|
||||
|
||||
};
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4XPDGElastic.hh,v 1.2 2006/06/29 20:36:48 gunter Exp $ //
|
||||
// $Id: G4XPDGElastic.hh,v 1.2.2.1 2009/11/20 16:25:08 gunter Exp $ //
|
||||
// ---------------------------------------------------------------
|
||||
// GEANT4 Class file
|
||||
//
|
||||
@@ -47,7 +47,7 @@
|
||||
#include <algorithm>
|
||||
#include <map>
|
||||
|
||||
typedef std::pair<G4String,G4String> G4StringPair;
|
||||
typedef std::pair<G4ParticleDefinition *,G4ParticleDefinition *> G4pDefPair;
|
||||
|
||||
class G4KineticTrack;
|
||||
class G4ParticleDefinition;
|
||||
@@ -95,9 +95,9 @@ private:
|
||||
static const G4double ppbarPDGFit[7];
|
||||
static const G4double npbarPDGFit[7];
|
||||
|
||||
std::map <G4StringPair, std::vector<G4double>, std::less<G4StringPair> > xMap;
|
||||
std::map <G4pDefPair, std::vector<G4double>, std::less<G4pDefPair> > xMap;
|
||||
|
||||
typedef std::map <G4StringPair, std::vector<G4double>, std::less<G4StringPair> > PairDoubleMap;
|
||||
typedef std::map <G4pDefPair, std::vector<G4double>, std::less<G4pDefPair> > PairDoubleMap;
|
||||
|
||||
// G4double pMinFit;
|
||||
// G4double pMaxFit;
|
||||
|
||||
@@ -47,7 +47,7 @@
|
||||
#include <map>
|
||||
#include <vector>
|
||||
|
||||
typedef std::pair<G4String,G4String> G4StringPair;
|
||||
typedef std::pair<G4ParticleDefinition *,G4ParticleDefinition *> G4pDefPair;
|
||||
|
||||
class G4KineticTrack;
|
||||
class G4ParticleDefinition;
|
||||
@@ -96,8 +96,8 @@ private:
|
||||
static const G4double gammapPDGFit[5];
|
||||
static const G4double gammagammaPDGFit[5];
|
||||
|
||||
std::map <G4StringPair, std::vector<G4double>, std::less<G4StringPair> > xMap;
|
||||
typedef std::map <G4StringPair, std::vector<G4double>, std::less<G4StringPair> > PairDoubleMap;
|
||||
std::map <G4pDefPair, std::vector<G4double>, std::less<G4pDefPair> > xMap;
|
||||
typedef std::map <G4pDefPair, std::vector<G4double>, std::less<G4pDefPair> > PairDoubleMap;
|
||||
|
||||
// G4double eMinFit;
|
||||
// G4double eMaxFit;
|
||||
|
||||
Reference in New Issue
Block a user